ETH Price: $3,355.30 (-2.74%)
Gas: 3 Gwei

Token

Bad Face Bots (BFBS)
 

Overview

Max Total Supply

5,555 BFBS

Holders

2,501

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Evmos: Deployer
Balance
1 BFBS
0x9947A1c54Cd439037F169C9EE165AF3b9C184752
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

5555 Bad Face Bots on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BadFaceBots

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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



pragma solidity ^0.8.0;


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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: BadFaceBots.sol



pragma solidity ^0.8.0;




contract InterfaceTokens {
    function transferTokens(address _from, address _to) external{}
    function burn(address from, uint256 amount) external{}
} 

contract BadFaceBots is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    
    bool private _saleActive = false;
    bool private _presaleActive = true;
    bool public _customNameActive = false;

    uint256 constant PUBLIC_PRICE = 0.08 ether;
    uint256 constant PRESALES_PRICE = 0.06 ether;
    uint256 constant public MAX_CLAIM = 10;
    uint256 constant public MAX_MINT_WHITELIST = 3;
    uint256 constant MAX_NFT_SUPPLY = 5555;
    uint256 constant public UPDATE_NAME_PRICE = 100 ether;
    
    string private _contractURI = "";
    string private _baseTokenURI;
    
	mapping(address => uint256) public botsBalance;
    
    mapping(address => MintData) public whitelist;
    address[] whitelistAddr;

    mapping(address => MintData) public freeMintList;
    address[] freeMintListAddr;

    mapping(uint256 => string) public botInfo;

    InterfaceTokens public coinToken;
    
    struct MintData {
        address addr;
        uint claimAmount;
        uint hasMinted;
    }

    event StateUpdated();
    event UpdateName(uint256 tokenId, string name);
    event TokenMinted(uint256 supply);
  
    constructor () ERC721 ("Bad Face Bots", "BFBS") {
        //init
        coinToken = new InterfaceTokens();
    }
    
    function startSale() public onlyOwner {
        _saleActive = true;
        emit StateUpdated();
    }

    function pauseSale() public onlyOwner {
        _saleActive = false;
        emit StateUpdated();
    }

    function startPrivateSale() public onlyOwner {
        _presaleActive = true;
        emit StateUpdated();
    }

    function pausePrivateSale() public onlyOwner {
        _presaleActive = false;
        emit StateUpdated();
    }
    
    function filpCustomNameActive() public onlyOwner{
        _customNameActive = !_customNameActive;
    }
      
    function isSaleActive() public view returns (bool) {
        return _saleActive;
    }  
    
    function isPrivateSaleActive() public view returns (bool) {
        return _presaleActive;
    }

    function setCoinToken(address _token) external onlyOwner {
		coinToken = InterfaceTokens(_token);
	}
    
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    modifier botOwner(uint256 tokenId) {
        require(ownerOf(tokenId) == msg.sender, "Sender is not the token owner");
        _;
    }
    
    function addListAddressToWhitelist(address[] memory addrs) public onlyOwner {
        for(uint i = 0; i < addrs.length; i++) {
            addAddressToWhitelist(addrs[i]);
        }
    }
    
    function addAddressToWhitelist(address addr) onlyOwner public returns(bool success) {
        require(!isWhitelisted(addr), "Already whitelisted");
        whitelist[addr].addr = addr;
        whitelist[addr].claimAmount = MAX_MINT_WHITELIST;
        whitelist[addr].hasMinted = 0;
        success = true;
    }

    function addListAddressToFreeMint(address[] memory addrs, uint[] memory claimAmounts) public onlyOwner {
        for(uint i = 0; i < addrs.length; i++) {
            addAddressToFreeMint(addrs[i], claimAmounts[i]);
        }
    }

    function addAddressToFreeMint(address addr, uint claimAmount) onlyOwner public returns(bool success) {
        require(freeMintList[addr].addr != addr, "Already in");
        freeMintList[addr].addr = addr;
        freeMintList[addr].claimAmount = claimAmount;
        freeMintList[addr].hasMinted = 0;
        success = true;
    }

    function mintPrice() public view returns (uint256 num){
        if(_presaleActive){
            return PRESALES_PRICE;
        }
        return PUBLIC_PRICE;
    }
    
    function isWhitelisted(address addr) public view returns (bool isWhiteListed) {
        return whitelist[addr].addr == addr;
    }
    
    function getPublicLeft() public view returns (uint256) {
        return MAX_NFT_SUPPLY - totalSupply();
    }
    
    function numWhitelistCanMint() public view returns (uint256 num){
        if(whitelist[msg.sender].addr != msg.sender){
            return 0;
        }
        return MAX_MINT_WHITELIST - whitelist[msg.sender].hasMinted;
    }

    function numFreeMint() public view returns (uint256 num){
        if(freeMintList[msg.sender].addr != msg.sender){
            return 0;
        }
        return freeMintList[msg.sender].claimAmount - freeMintList[msg.sender].hasMinted;
    }

    function freemint(uint256 num) public payable{
        require( _saleActive, "Sale not ready" );
        require( totalSupply() + num <= MAX_NFT_SUPPLY, "Exceeds maximum supply" );
        require( freeMintList[msg.sender].addr == msg.sender, "Not in Free Mint" );
        require( freeMintList[msg.sender].hasMinted.add(num) <= freeMintList[msg.sender].claimAmount, "You already minted" );
        
        freeMintList[msg.sender].hasMinted = freeMintList[msg.sender].hasMinted.add(num);
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, totalSupply() + 1 );
            botsBalance[msg.sender]++;
        }
        emit TokenMinted(totalSupply());
    }

    function mint(uint256 num) public payable {
        require( _saleActive, "Sale not ready" );
        require( num <= MAX_CLAIM, "You can mint a maximum of 10" );
        require( totalSupply() + num <= MAX_NFT_SUPPLY, "Exceeds maximum supply" );
        if(_presaleActive){
            require( PRESALES_PRICE.mul(num) <= msg.value, "Ether sent is not correct" );
            require( isWhitelisted(msg.sender), "Is not whitelisted" );
            require( whitelist[msg.sender].hasMinted.add(num) <= MAX_MINT_WHITELIST, "Can only mint 3 while whitelisted" );
            require( whitelist[msg.sender].hasMinted <= MAX_MINT_WHITELIST, "Can only mint 3 while whitelisted" );
            whitelist[msg.sender].hasMinted = whitelist[msg.sender].hasMinted.add(num);
        }else{
            require( PUBLIC_PRICE.mul(num) <= msg.value, "Ether sent is not correct" );
        }
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, totalSupply() + 1 );
            botsBalance[msg.sender]++;
        }
        emit TokenMinted(totalSupply());
    }

    function updateName(uint256 tokenId, string memory name) public botOwner(tokenId) {
        require(_customNameActive,"Not Yet");
        require(validateName(name) == true, "Invalid name length");
        require(sha256(bytes(name)) != sha256(bytes(botInfo[tokenId])), "New name is same as current name");

        coinToken.burn(msg.sender, UPDATE_NAME_PRICE);
        botInfo[tokenId] = name;
        emit UpdateName(tokenId, name);
    }

    function validateName(string memory str) public pure returns (bool){
        bytes memory b = bytes(str);
        if(b.length < 1) return false;
        if(b.length > 25) return false;
        if(b[0] == 0x20) return false;
        if (b[b.length - 1] == 0x20) return false;

        bytes1 lastChar = b[0];

        for(uint i; i<b.length; i++){
            bytes1 char = b[i];

            if (char == 0x20 && lastChar == 0x20) return false; 

            if(
                !(char >= 0x30 && char <= 0x39) && //9-0
                !(char >= 0x41 && char <= 0x5A) && //A-Z
                !(char >= 0x61 && char <= 0x7A) && //a-z
                !(char == 0x20) //space
            )
                return false;
            lastChar = char;
        }
        return true;
    }

    //reserve for team and some for community
    function reserve(address addr, uint256 amount) public onlyOwner {
        for (uint i = 0; i < amount; i++) {
            _safeMint(addr, totalSupply() + 1);
            botsBalance[addr]++;
        }
        emit TokenMinted(totalSupply());
    }

	function transferFrom(address from, address to, uint256 tokenId) public override {
		coinToken.transferTokens(from, to);
        botsBalance[from]--;
        botsBalance[to]++;
		ERC721.transferFrom(from, to, tokenId);
	}

	function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public override {
		coinToken.transferTokens(from, to);
        botsBalance[from]--;
        botsBalance[to]++;
		ERC721.safeTransferFrom(from, to, tokenId, _data);
	}
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

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

    function setContractURI(string memory newContractURI) external onlyOwner {
        _contractURI = newContractURI;
    }
    
    function contractURI() external view returns (string memory){
        return _contractURI;
    }
  
    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

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":[],"name":"StateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"UpdateName","type":"event"},{"inputs":[],"name":"MAX_CLAIM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPDATE_NAME_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_customNameActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"}],"name":"addAddressToFreeMint","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"claimAmounts","type":"uint256[]"}],"name":"addListAddressToFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addListAddressToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"botInfo","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"botsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coinToken","outputs":[{"internalType":"contract InterfaceTokens","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"filpCustomNameActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintList","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicLeft","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":"isPrivateSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"isWhiteListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numFreeMint","outputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numWhitelistCanMint","outputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"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":"pausePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setCoinToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"updateName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"validateName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805462ffffff60a01b1916600160a81b17905560a06040819052600060808190526200003091600b916200016b565b503480156200003e57600080fd5b50604080518082018252600d81526c426164204661636520426f747360981b6020808301918252835180850190945260048452634246425360e01b90840152815191929162000090916000916200016b565b508051620000a69060019060208401906200016b565b505050620000c3620000bd6200011560201b60201c565b62000119565b604051620000d190620001fa565b604051809103906000f080158015620000ee573d6000803e3d6000fd5b50601380546001600160a01b0319166001600160a01b03929092169190911790556200025c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000179906200021f565b90600052602060002090601f0160209004810192826200019d5760008555620001e8565b82601f10620001b857805160ff1916838001178555620001e8565b82800160010185558215620001e8579182015b82811115620001e8578251825591602001919060010190620001cb565b50620001f692915062000208565b5090565b6101168062003cc283390190565b5b80821115620001f6576000815560010162000209565b600181811c908216806200023457607f821691505b602082108114156200025657634e487b7160e01b600052602260045260246000fd5b50919050565b613a56806200026c6000396000f3fe6080604052600436106103505760003560e01c806355367ba9116101c65780639b19251a116100f7578063b88d4fde11610095578063d8a9e1e91161006f578063d8a9e1e9146109d8578063e8a3d485146109f8578063e985e9c514610a0d578063f2fde38b14610a5657610350565b8063b88d4fde14610978578063c87b56dd14610998578063cc47a40b146109b857610350565b8063a22cb465116100d1578063a22cb465146108d0578063a5324093146108f0578063b29978bc14610936578063b66a0e5d1461096357610350565b80639b19251a146108325780639ffdb65a1461089d578063a0712d68146108bd57610350565b806370a08231116101645780638da5cb5b1161013e5780638da5cb5b146107bf578063918be042146107dd578063938e3d7b146107fd57806395d89b411461081d57610350565b806370a082311461076a578063715018a61461078a5780637b9417c81461079f57610350565b806358797cb6116101a057806358797cb61461070057806358941a4d146107205780636352211e146107355780636817c76c1461075557610350565b806355367ba9146106ab57806355f804b3146106c0578063564566a8146106e057610350565b80632f745c59116102a05780633f87c5531161023e5780634659690c116102185780634659690c1461063657806349d196481461064b5780634f6ccce71461066b57806353e76f2c1461068b57610350565b80633f87c553146105c957806342842e0e146105e9578063438b63001461060957610350565b806335d62f9e1161027a57806335d62f9e1461054e5780633af32abf146105635780633b0bad971461059f5780633ccfd60b146105b457610350565b80632f745c59146104f95780633139e13a14610519578063338dbf591461053957610350565b806313b1f5231161030d57806327a6c838116102e757806327a6c838146104865780632b14fbf8146104a65780632ec9aed8146104c75780632ee75a40146104dc57610350565b806313b1f5231461043c57806318160ddd1461045157806323b872dd1461046657610350565b806301b65b711461035557806301ffc9a71461037d57806306fdde03146103ad578063081812fc146103cf578063095ea7b3146104075780630fbe4fe214610429575b600080fd5b34801561036157600080fd5b5061036a600a81565b6040519081526020015b60405180910390f35b34801561038957600080fd5b5061039d6103983660046134a4565b610a76565b6040519015158152602001610374565b3480156103b957600080fd5b506103c2610aa3565b60405161037491906136ff565b3480156103db57600080fd5b506103ef6103ea36600461350f565b610b36565b6040516001600160a01b039091168152602001610374565b34801561041357600080fd5b50610427610422366004613374565b610bd0565b005b61042761043736600461350f565b610ce6565b34801561044857600080fd5b5061036a610f19565b34801561045d57600080fd5b5060085461036a565b34801561047257600080fd5b50610427610481366004613286565b610f6c565b34801561049257600080fd5b506103c26104a136600461350f565b611030565b3480156104b257600080fd5b50600a5461039d90600160b01b900460ff1681565b3480156104d357600080fd5b506104276110ca565b3480156104e857600080fd5b5061036a68056bc75e2d6310000081565b34801561050557600080fd5b5061036a610514366004613374565b611115565b34801561052557600080fd5b5061042761053436600461339d565b6111ab565b34801561054557600080fd5b50610427611228565b34801561055a57600080fd5b5061042761127e565b34801561056f57600080fd5b5061039d61057e36600461323a565b6001600160a01b039081166000818152600e60205260409020549091161490565b3480156105ab57600080fd5b5061036a6112ce565b3480156105c057600080fd5b506104276112e5565b3480156105d557600080fd5b5061039d6105e4366004613374565b611335565b3480156105f557600080fd5b50610427610604366004613286565b6113f7565b34801561061557600080fd5b5061062961062436600461323a565b611412565b60405161037491906136bb565b34801561064257600080fd5b5061036a6114d0565b34801561065757600080fd5b5061042761066636600461323a565b611518565b34801561067757600080fd5b5061036a61068636600461350f565b611564565b34801561069757600080fd5b506104276106a6366004613527565b611605565b3480156106b757600080fd5b506104276118c1565b3480156106cc57600080fd5b506104276106db3660046134dc565b611911565b3480156106ec57600080fd5b5061039d600a54600160a01b900460ff1690565b34801561070c57600080fd5b506013546103ef906001600160a01b031681565b34801561072c57600080fd5b5061036a600381565b34801561074157600080fd5b506103ef61075036600461350f565b61194e565b34801561076157600080fd5b5061036a6119c5565b34801561077657600080fd5b5061036a61078536600461323a565b6119f5565b34801561079657600080fd5b50610427611a7c565b3480156107ab57600080fd5b5061039d6107ba36600461323a565b611ab0565b3480156107cb57600080fd5b50600a546001600160a01b03166103ef565b3480156107e957600080fd5b506104276107f83660046133d0565b611b7b565b34801561080957600080fd5b506104276108183660046134dc565b611c1c565b34801561082957600080fd5b506103c2611c59565b34801561083e57600080fd5b5061087861084d36600461323a565b600e602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b039094168452602084019290925290820152606001610374565b3480156108a957600080fd5b5061039d6108b83660046134dc565b611c68565b6104276108cb36600461350f565b611eb5565b3480156108dc57600080fd5b506104276108eb36600461333a565b6121c5565b3480156108fc57600080fd5b5061087861090b36600461323a565b6010602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b34801561094257600080fd5b5061036a61095136600461323a565b600d6020526000908152604090205481565b34801561096f57600080fd5b50610427612297565b34801561098457600080fd5b506104276109933660046132c1565b6122ed565b3480156109a457600080fd5b506103c26109b336600461350f565b6123b8565b3480156109c457600080fd5b506104276109d3366004613374565b612493565b3480156109e457600080fd5b5061039d600a54600160a81b900460ff1690565b348015610a0457600080fd5b506103c2612551565b348015610a1957600080fd5b5061039d610a28366004613254565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6257600080fd5b50610427610a7136600461323a565b612560565b60006001600160e01b0319821663780e9d6360e01b1480610a9b5750610a9b826125fb565b90505b919050565b606060008054610ab29061393e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ade9061393e565b8015610b2b5780601f10610b0057610100808354040283529160200191610b2b565b820191906000526020600020905b815481529060010190602001808311610b0e57829003601f168201915b505050505090505b90565b6000818152600260205260408120546001600160a01b0316610bb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bdb8261194e565b9050806001600160a01b0316836001600160a01b03161415610c495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bab565b336001600160a01b0382161480610c655750610c658133610a28565b610cd75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bab565b610ce1838361264b565b505050565b600a54600160a01b900460ff16610d305760405162461bcd60e51b815260206004820152600e60248201526d53616c65206e6f7420726561647960901b6044820152606401610bab565b6115b381610d3d60085490565b610d479190613899565b1115610d8e5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610bab565b336000818152601060205260409020546001600160a01b031614610de75760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b88119c995948135a5b9d60821b6044820152606401610bab565b3360009081526010602052604090206001810154600290910154610e0b90836126b9565b1115610e4e5760405162461bcd60e51b8152602060048201526012602482015271165bdd48185b1c9958591e481b5a5b9d195960721b6044820152606401610bab565b33600090815260106020526040902060020154610e6b90826126b9565b336000908152601060205260408120600201919091555b81811015610eda57610ea733610e9760085490565b610ea2906001613899565b6126c5565b336000908152600d60205260408120805491610ec283613979565b91905055508080610ed290613979565b915050610e82565b507ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e610f0560085490565b60405190815260200160405180910390a150565b3360008181526010602052604081205490916001600160a01b0390911614610f4357506000610b33565b3360009081526010602052604090206002810154600190910154610f6791906138e4565b905090565b601354604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b158015610fbb57600080fd5b505af1158015610fcf573d6000803e3d6000fd5b505050506001600160a01b0383166000908152600d60205260408120805491610ff783613927565b90915550506001600160a01b0382166000908152600d6020526040812080549161102083613979565b9190505550610ce18383836126df565b601260205260009081526040902080546110499061393e565b80601f01602080910402602001604051908101604052809291908181526020018280546110759061393e565b80156110c25780601f10611097576101008083540402835291602001916110c2565b820191906000526020600020905b8154815290600101906020018083116110a557829003601f168201915b505050505081565b600a546001600160a01b031633146110f45760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6000611120836119f5565b82106111825760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bab565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146111d55760405162461bcd60e51b8152600401610bab906137a5565b60005b81518110156112245761121182828151811061120457634e487b7160e01b600052603260045260246000fd5b6020026020010151611ab0565b508061121c81613979565b9150506111d8565b5050565b600a546001600160a01b031633146112525760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60a81b1916600160a81b179055604051600080516020613a0183398151915290600090a1565b600a546001600160a01b031633146112a85760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60a81b19169055604051600080516020613a0183398151915290600090a1565b60006112d960085490565b610f67906115b36138e4565b600a546001600160a01b0316331461130f5760405162461bcd60e51b8152600401610bab906137a5565b60405133904780156108fc02916000818181858888f1935050505061133357600080fd5b565b600a546000906001600160a01b031633146113625760405162461bcd60e51b8152600401610bab906137a5565b6001600160a01b0380841660008181526010602052604090205490911614156113ba5760405162461bcd60e51b815260206004820152600a60248201526920b63932b0b23c9034b760b11b6044820152606401610bab565b506001600160a01b03909116600081815260106020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b610ce1838383604051806020016040528060008152506122ed565b6060600061141f836119f5565b905060008167ffffffffffffffff81111561144a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611473578160200160208202803683370190505b50905060005b828110156114c85761148b8582611115565b8282815181106114ab57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806114c081613979565b915050611479565b509392505050565b336000818152600e602052604081205490916001600160a01b03909116146114fa57506000610b33565b336000908152600e6020526040902060020154610f679060036138e4565b600a546001600160a01b031633146115425760405162461bcd60e51b8152600401610bab906137a5565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600061156f60085490565b82106115d25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bab565b600882815481106115f357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b81336116108261194e565b6001600160a01b0316146116665760405162461bcd60e51b815260206004820152601d60248201527f53656e646572206973206e6f742074686520746f6b656e206f776e65720000006044820152606401610bab565b600a54600160b01b900460ff166116a95760405162461bcd60e51b8152602060048201526007602482015266139bdd0816595d60ca1b6044820152606401610bab565b6116b282611c68565b15156001146116f95760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840dcc2daca40d8cadccee8d606b1b6044820152606401610bab565b600083815260126020526040908190209051600291611717916135b4565b602060405180830381855afa158015611734573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611757919061348c565b6002836040516117679190613598565b602060405180830381855afa158015611784573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906117a7919061348c565b14156117f55760405162461bcd60e51b815260206004820181905260248201527f4e6577206e616d652069732073616d652061732063757272656e74206e616d656044820152606401610bab565b601354604051632770a7eb60e21b815233600482015268056bc75e2d6310000060248201526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561184957600080fd5b505af115801561185d573d6000803e3d6000fd5b505050600084815260126020908152604090912084516118829350909185019061309d565b507fac2072268d18e10aecad35c0c04acd66330b2571a8ff403e3c702d77d3bab13483836040516118b492919061382b565b60405180910390a1505050565b600a546001600160a01b031633146118eb5760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60a01b19169055604051600080516020613a0183398151915290600090a1565b600a546001600160a01b0316331461193b5760405162461bcd60e51b8152600401610bab906137a5565b805161122490600c90602084019061309d565b6000818152600260205260408120546001600160a01b031680610a9b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bab565b600a54600090600160a81b900460ff16156119e8575066d529ae9e860000610b33565b5067011c37937e08000090565b60006001600160a01b038216611a605760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bab565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611aa65760405162461bcd60e51b8152600401610bab906137a5565b6113336000612710565b600a546000906001600160a01b03163314611add5760405162461bcd60e51b8152600401610bab906137a5565b6001600160a01b038083166000818152600e60205260409020549091161415611b3e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b6044820152606401610bab565b506001600160a01b03166000818152600e6020526040812080546001600160a01b0319169092178255600360018084019190915560029092015590565b600a546001600160a01b03163314611ba55760405162461bcd60e51b8152600401610bab906137a5565b60005b8251811015610ce157611c09838281518110611bd457634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110611bfc57634e487b7160e01b600052603260045260246000fd5b6020026020010151611335565b5080611c1481613979565b915050611ba8565b600a546001600160a01b03163314611c465760405162461bcd60e51b8152600401610bab906137a5565b805161122490600b90602084019061309d565b606060018054610ab29061393e565b600080829050600181511015611c82576000915050610a9e565b601981511115611c96576000915050610a9e565b80600081518110611cb757634e487b7160e01b600052603260045260246000fd5b6020910101516001600160f81b031916600160fd1b1415611cdc576000915050610a9e565b8060018251611ceb91906138e4565b81518110611d0957634e487b7160e01b600052603260045260246000fd5b6020910101516001600160f81b031916600160fd1b1415611d2e576000915050610a9e565b600081600081518110611d5157634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916905060005b8251811015611eaa576000838281518110611d9057634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319169050600160fd1b81148015611dc15750600160fd1b6001600160f81b03198416145b15611dd3576000945050505050610a9e565b600360fc1b6001600160f81b0319821610801590611dff5750603960f81b6001600160f81b0319821611155b158015611e355750604160f81b6001600160f81b0319821610801590611e335750602d60f91b6001600160f81b0319821611155b155b8015611e6a5750606160f81b6001600160f81b0319821610801590611e685750603d60f91b6001600160f81b0319821611155b155b8015611e845750600160fd1b6001600160f81b0319821614155b15611e96576000945050505050610a9e565b915080611ea281613979565b915050611d65565b506001949350505050565b600a54600160a01b900460ff16611eff5760405162461bcd60e51b815260206004820152600e60248201526d53616c65206e6f7420726561647960901b6044820152606401610bab565b600a811115611f505760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e742061206d6178696d756d206f66203130000000006044820152606401610bab565b6115b381611f5d60085490565b611f679190613899565b1115611fae5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610bab565b600a54600160a81b900460ff161561211d5734611fd266d529ae9e86000083612762565b111561201c5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610bab565b336000818152600e60205260409020546001600160a01b0316146120775760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b6044820152606401610bab565b336000908152600e602052604090206002015460039061209790836126b9565b11156120b55760405162461bcd60e51b8152600401610bab90613764565b336000908152600e6020526040902060020154600310156120e85760405162461bcd60e51b8152600401610bab90613764565b336000908152600e602052604090206002015461210590826126b9565b336000908152600e602052604090206002015561217a565b3461213067011c37937e08000083612762565b111561217a5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610bab565b60005b81811015610eda5761219233610e9760085490565b336000908152600d602052604081208054916121ad83613979565b919050555080806121bd90613979565b91505061217d565b6001600160a01b03821633141561221e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bab565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228b911515815260200190565b60405180910390a35050565b600a546001600160a01b031633146122c15760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60a01b1916600160a01b179055604051600080516020613a0183398151915290600090a1565b601354604051636a092e7960e01b81526001600160a01b038681166004830152858116602483015290911690636a092e7990604401600060405180830381600087803b15801561233c57600080fd5b505af1158015612350573d6000803e3d6000fd5b505050506001600160a01b0384166000908152600d6020526040812080549161237883613927565b90915550506001600160a01b0383166000908152600d602052604081208054916123a183613979565b91905055506123b28484848461276e565b50505050565b6000818152600260205260409020546060906001600160a01b03166124375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bab565b60006124416127a0565b90506000815111612461576040518060200160405280600081525061248c565b8061246b846127af565b60405160200161247c92919061364f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146124bd5760405162461bcd60e51b8152600401610bab906137a5565b60005b81811015612511576124d583610e9760085490565b6001600160a01b0383166000908152600d602052604081208054916124f983613979565b9190505550808061250990613979565b9150506124c0565b507ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e61253c60085490565b60405190815260200160405180910390a15050565b6060600b8054610ab29061393e565b600a546001600160a01b0316331461258a5760405162461bcd60e51b8152600401610bab906137a5565b6001600160a01b0381166125ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bab565b6125f881612710565b50565b60006001600160e01b031982166380ac58cd60e01b148061262c57506001600160e01b03198216635b5e139f60e01b145b80610a9b57506301ffc9a760e01b6001600160e01b0319831614610a9b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906126808261194e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061248c8284613899565b6112248282604051806020016040528060008152506128d2565b6126e93382612905565b6127055760405162461bcd60e51b8152600401610bab906137da565b610ce18383836129f8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061248c82846138c5565b6127783383612905565b6127945760405162461bcd60e51b8152600401610bab906137da565b6123b284848484612ba3565b6060600c8054610ab29061393e565b6060816127d457506040805180820190915260018152600360fc1b6020820152610a9e565b8160005b81156127fe57806127e881613979565b91506127f79050600a836138b1565b91506127d8565b60008167ffffffffffffffff81111561282757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612851576020820181803683370190505b5090505b84156128ca576128666001836138e4565b9150612873600a86613994565b61287e906030613899565b60f81b8183815181106128a157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506128c3600a866138b1565b9450612855565b949350505050565b6128dc8383612bd6565b6128e96000848484612d24565b610ce15760405162461bcd60e51b8152600401610bab90613712565b6000818152600260205260408120546001600160a01b031661297e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bab565b60006129898361194e565b9050806001600160a01b0316846001600160a01b031614806129c45750836001600160a01b03166129b984610b36565b6001600160a01b0316145b806128ca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166128ca565b826001600160a01b0316612a0b8261194e565b6001600160a01b031614612a735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bab565b6001600160a01b038216612ad55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bab565b612ae0838383612e26565b612aeb60008261264b565b6001600160a01b0383166000908152600360205260408120805460019290612b149084906138e4565b90915550506001600160a01b0382166000908152600360205260408120805460019290612b42908490613899565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612bae8484846129f8565b612bba84848484612d24565b6123b25760405162461bcd60e51b8152600401610bab90613712565b6001600160a01b038216612c2c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bab565b6000818152600260205260409020546001600160a01b031615612c915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bab565b612c9d60008383612e26565b6001600160a01b0382166000908152600360205260408120805460019290612cc6908490613899565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611eaa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d6890339089908890889060040161367e565b602060405180830381600087803b158015612d8257600080fd5b505af1925050508015612db2575060408051601f3d908101601f19168201909252612daf918101906134c0565b60015b612e0c573d808015612de0576040519150601f19603f3d011682016040523d82523d6000602084013e612de5565b606091505b508051612e045760405162461bcd60e51b8152600401610bab90613712565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506128ca565b6001600160a01b038316612e8157612e7c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ea4565b816001600160a01b0316836001600160a01b031614612ea457612ea48382612ee3565b6001600160a01b038216612ec057612ebb81612f80565b610ce1565b826001600160a01b0316826001600160a01b031614610ce157610ce18282613059565b60006001612ef0846119f5565b612efa91906138e4565b600083815260076020526040902054909150808214612f4d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612f92906001906138e4565b60008381526009602052604081205460088054939450909284908110612fc857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612ff757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061303d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613064836119f5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546130a99061393e565b90600052602060002090601f0160209004810192826130cb5760008555613111565b82601f106130e457805160ff1916838001178555613111565b82800160010185558215613111579182015b828111156131115782518255916020019190600101906130f6565b5061311d929150613121565b5090565b5b8082111561311d5760008155600101613122565b600067ffffffffffffffff831115613150576131506139d4565b613163601f8401601f1916602001613844565b905082815283838301111561317757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610a9e57600080fd5b600082601f8301126131b5578081fd5b813560206131ca6131c583613875565b613844565b80838252828201915082860187848660051b89010111156131e9578586fd5b855b8581101561320e576131fc8261318e565b845292840192908401906001016131eb565b5090979650505050505050565b600082601f83011261322b578081fd5b61248c83833560208501613136565b60006020828403121561324b578081fd5b61248c8261318e565b60008060408385031215613266578081fd5b61326f8361318e565b915061327d6020840161318e565b90509250929050565b60008060006060848603121561329a578081fd5b6132a38461318e565b92506132b16020850161318e565b9150604084013590509250925092565b600080600080608085870312156132d6578081fd5b6132df8561318e565b93506132ed6020860161318e565b925060408501359150606085013567ffffffffffffffff81111561330f578182fd5b8501601f8101871361331f578182fd5b61332e87823560208401613136565b91505092959194509250565b6000806040838503121561334c578182fd5b6133558361318e565b915060208301358015158114613369578182fd5b809150509250929050565b60008060408385031215613386578182fd5b61338f8361318e565b946020939093013593505050565b6000602082840312156133ae578081fd5b813567ffffffffffffffff8111156133c4578182fd5b6128ca848285016131a5565b600080604083850312156133e2578182fd5b823567ffffffffffffffff808211156133f9578384fd5b613405868387016131a5565b935060209150818501358181111561341b578384fd5b85019050601f8101861361342d578283fd5b803561343b6131c582613875565b80828252848201915084840189868560051b870101111561345a578687fd5b8694505b8385101561347c57803583526001949094019391850191850161345e565b5080955050505050509250929050565b60006020828403121561349d578081fd5b5051919050565b6000602082840312156134b5578081fd5b813561248c816139ea565b6000602082840312156134d1578081fd5b815161248c816139ea565b6000602082840312156134ed578081fd5b813567ffffffffffffffff811115613503578182fd5b6128ca8482850161321b565b600060208284031215613520578081fd5b5035919050565b60008060408385031215613539578182fd5b82359150602083013567ffffffffffffffff811115613556578182fd5b6135628582860161321b565b9150509250929050565b600081518084526135848160208601602086016138fb565b601f01601f19169290920160200192915050565b600082516135aa8184602087016138fb565b9190910192915050565b600080835482600182811c9150808316806135d057607f831692505b60208084108214156135f057634e487b7160e01b87526022600452602487fd5b818015613604576001811461361557613641565b60ff19861689528489019650613641565b60008a815260209020885b868110156136395781548b820152908501908301613620565b505084890196505b509498975050505050505050565b600083516136618184602088016138fb565b8351908301906136758183602088016138fb565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136b19083018461356c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156136f3578351835292840192918401916001016136d7565b50909695505050505050565b60006020825261248c602083018461356c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e742033207768696c652077686974656c697374656040820152601960fa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000838252604060208301526128ca604083018461356c565b604051601f8201601f1916810167ffffffffffffffff8111828210171561386d5761386d6139d4565b604052919050565b600067ffffffffffffffff82111561388f5761388f6139d4565b5060051b60200190565b600082198211156138ac576138ac6139a8565b500190565b6000826138c0576138c06139be565b500490565b60008160001904831182151516156138df576138df6139a8565b500290565b6000828210156138f6576138f66139a8565b500390565b60005b838110156139165781810151838201526020016138fe565b838111156123b25750506000910152565b600081613936576139366139a8565b506000190190565b600181811c9082168061395257607f821691505b6020821081141561397357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561398d5761398d6139a8565b5060010190565b6000826139a3576139a36139be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146125f857600080fdfefe9fe48ed8af470ddf16a3fe33ccde8333f78c19268c72c8ebd630e9c954ca2fa264697066735822122027672be39cfb003ce961a99d3775b75fac36a22931a0e98c76fcd1f3148a444b64736f6c63430008030033608060405234801561001057600080fd5b5060f78061001f6000396000f3fe6080604052348015600f57600080fd5b506004361060325760003560e01c80636a092e791460375780639dc29fac146048575b600080fd5b60466042366004606e565b5050565b005b60466042366004609b565b80356001600160a01b0381168114606957600080fd5b919050565b60008060408385031215607f578182fd5b6086836053565b91506092602084016053565b90509250929050565b6000806040838503121560ac578182fd5b60b3836053565b94602093909301359350505056fea264697066735822122029b77cca0c268fa9bcb87d128c7c7c45fba290b0786e913bfd09bcc4f5d5cbb764736f6c63430008030033

Deployed Bytecode

0x6080604052600436106103505760003560e01c806355367ba9116101c65780639b19251a116100f7578063b88d4fde11610095578063d8a9e1e91161006f578063d8a9e1e9146109d8578063e8a3d485146109f8578063e985e9c514610a0d578063f2fde38b14610a5657610350565b8063b88d4fde14610978578063c87b56dd14610998578063cc47a40b146109b857610350565b8063a22cb465116100d1578063a22cb465146108d0578063a5324093146108f0578063b29978bc14610936578063b66a0e5d1461096357610350565b80639b19251a146108325780639ffdb65a1461089d578063a0712d68146108bd57610350565b806370a08231116101645780638da5cb5b1161013e5780638da5cb5b146107bf578063918be042146107dd578063938e3d7b146107fd57806395d89b411461081d57610350565b806370a082311461076a578063715018a61461078a5780637b9417c81461079f57610350565b806358797cb6116101a057806358797cb61461070057806358941a4d146107205780636352211e146107355780636817c76c1461075557610350565b806355367ba9146106ab57806355f804b3146106c0578063564566a8146106e057610350565b80632f745c59116102a05780633f87c5531161023e5780634659690c116102185780634659690c1461063657806349d196481461064b5780634f6ccce71461066b57806353e76f2c1461068b57610350565b80633f87c553146105c957806342842e0e146105e9578063438b63001461060957610350565b806335d62f9e1161027a57806335d62f9e1461054e5780633af32abf146105635780633b0bad971461059f5780633ccfd60b146105b457610350565b80632f745c59146104f95780633139e13a14610519578063338dbf591461053957610350565b806313b1f5231161030d57806327a6c838116102e757806327a6c838146104865780632b14fbf8146104a65780632ec9aed8146104c75780632ee75a40146104dc57610350565b806313b1f5231461043c57806318160ddd1461045157806323b872dd1461046657610350565b806301b65b711461035557806301ffc9a71461037d57806306fdde03146103ad578063081812fc146103cf578063095ea7b3146104075780630fbe4fe214610429575b600080fd5b34801561036157600080fd5b5061036a600a81565b6040519081526020015b60405180910390f35b34801561038957600080fd5b5061039d6103983660046134a4565b610a76565b6040519015158152602001610374565b3480156103b957600080fd5b506103c2610aa3565b60405161037491906136ff565b3480156103db57600080fd5b506103ef6103ea36600461350f565b610b36565b6040516001600160a01b039091168152602001610374565b34801561041357600080fd5b50610427610422366004613374565b610bd0565b005b61042761043736600461350f565b610ce6565b34801561044857600080fd5b5061036a610f19565b34801561045d57600080fd5b5060085461036a565b34801561047257600080fd5b50610427610481366004613286565b610f6c565b34801561049257600080fd5b506103c26104a136600461350f565b611030565b3480156104b257600080fd5b50600a5461039d90600160b01b900460ff1681565b3480156104d357600080fd5b506104276110ca565b3480156104e857600080fd5b5061036a68056bc75e2d6310000081565b34801561050557600080fd5b5061036a610514366004613374565b611115565b34801561052557600080fd5b5061042761053436600461339d565b6111ab565b34801561054557600080fd5b50610427611228565b34801561055a57600080fd5b5061042761127e565b34801561056f57600080fd5b5061039d61057e36600461323a565b6001600160a01b039081166000818152600e60205260409020549091161490565b3480156105ab57600080fd5b5061036a6112ce565b3480156105c057600080fd5b506104276112e5565b3480156105d557600080fd5b5061039d6105e4366004613374565b611335565b3480156105f557600080fd5b50610427610604366004613286565b6113f7565b34801561061557600080fd5b5061062961062436600461323a565b611412565b60405161037491906136bb565b34801561064257600080fd5b5061036a6114d0565b34801561065757600080fd5b5061042761066636600461323a565b611518565b34801561067757600080fd5b5061036a61068636600461350f565b611564565b34801561069757600080fd5b506104276106a6366004613527565b611605565b3480156106b757600080fd5b506104276118c1565b3480156106cc57600080fd5b506104276106db3660046134dc565b611911565b3480156106ec57600080fd5b5061039d600a54600160a01b900460ff1690565b34801561070c57600080fd5b506013546103ef906001600160a01b031681565b34801561072c57600080fd5b5061036a600381565b34801561074157600080fd5b506103ef61075036600461350f565b61194e565b34801561076157600080fd5b5061036a6119c5565b34801561077657600080fd5b5061036a61078536600461323a565b6119f5565b34801561079657600080fd5b50610427611a7c565b3480156107ab57600080fd5b5061039d6107ba36600461323a565b611ab0565b3480156107cb57600080fd5b50600a546001600160a01b03166103ef565b3480156107e957600080fd5b506104276107f83660046133d0565b611b7b565b34801561080957600080fd5b506104276108183660046134dc565b611c1c565b34801561082957600080fd5b506103c2611c59565b34801561083e57600080fd5b5061087861084d36600461323a565b600e602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b039094168452602084019290925290820152606001610374565b3480156108a957600080fd5b5061039d6108b83660046134dc565b611c68565b6104276108cb36600461350f565b611eb5565b3480156108dc57600080fd5b506104276108eb36600461333a565b6121c5565b3480156108fc57600080fd5b5061087861090b36600461323a565b6010602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b34801561094257600080fd5b5061036a61095136600461323a565b600d6020526000908152604090205481565b34801561096f57600080fd5b50610427612297565b34801561098457600080fd5b506104276109933660046132c1565b6122ed565b3480156109a457600080fd5b506103c26109b336600461350f565b6123b8565b3480156109c457600080fd5b506104276109d3366004613374565b612493565b3480156109e457600080fd5b5061039d600a54600160a81b900460ff1690565b348015610a0457600080fd5b506103c2612551565b348015610a1957600080fd5b5061039d610a28366004613254565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6257600080fd5b50610427610a7136600461323a565b612560565b60006001600160e01b0319821663780e9d6360e01b1480610a9b5750610a9b826125fb565b90505b919050565b606060008054610ab29061393e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ade9061393e565b8015610b2b5780601f10610b0057610100808354040283529160200191610b2b565b820191906000526020600020905b815481529060010190602001808311610b0e57829003601f168201915b505050505090505b90565b6000818152600260205260408120546001600160a01b0316610bb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bdb8261194e565b9050806001600160a01b0316836001600160a01b03161415610c495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bab565b336001600160a01b0382161480610c655750610c658133610a28565b610cd75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bab565b610ce1838361264b565b505050565b600a54600160a01b900460ff16610d305760405162461bcd60e51b815260206004820152600e60248201526d53616c65206e6f7420726561647960901b6044820152606401610bab565b6115b381610d3d60085490565b610d479190613899565b1115610d8e5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610bab565b336000818152601060205260409020546001600160a01b031614610de75760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b88119c995948135a5b9d60821b6044820152606401610bab565b3360009081526010602052604090206001810154600290910154610e0b90836126b9565b1115610e4e5760405162461bcd60e51b8152602060048201526012602482015271165bdd48185b1c9958591e481b5a5b9d195960721b6044820152606401610bab565b33600090815260106020526040902060020154610e6b90826126b9565b336000908152601060205260408120600201919091555b81811015610eda57610ea733610e9760085490565b610ea2906001613899565b6126c5565b336000908152600d60205260408120805491610ec283613979565b91905055508080610ed290613979565b915050610e82565b507ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e610f0560085490565b60405190815260200160405180910390a150565b3360008181526010602052604081205490916001600160a01b0390911614610f4357506000610b33565b3360009081526010602052604090206002810154600190910154610f6791906138e4565b905090565b601354604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b158015610fbb57600080fd5b505af1158015610fcf573d6000803e3d6000fd5b505050506001600160a01b0383166000908152600d60205260408120805491610ff783613927565b90915550506001600160a01b0382166000908152600d6020526040812080549161102083613979565b9190505550610ce18383836126df565b601260205260009081526040902080546110499061393e565b80601f01602080910402602001604051908101604052809291908181526020018280546110759061393e565b80156110c25780601f10611097576101008083540402835291602001916110c2565b820191906000526020600020905b8154815290600101906020018083116110a557829003601f168201915b505050505081565b600a546001600160a01b031633146110f45760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6000611120836119f5565b82106111825760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bab565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146111d55760405162461bcd60e51b8152600401610bab906137a5565b60005b81518110156112245761121182828151811061120457634e487b7160e01b600052603260045260246000fd5b6020026020010151611ab0565b508061121c81613979565b9150506111d8565b5050565b600a546001600160a01b031633146112525760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60a81b1916600160a81b179055604051600080516020613a0183398151915290600090a1565b600a546001600160a01b031633146112a85760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60a81b19169055604051600080516020613a0183398151915290600090a1565b60006112d960085490565b610f67906115b36138e4565b600a546001600160a01b0316331461130f5760405162461bcd60e51b8152600401610bab906137a5565b60405133904780156108fc02916000818181858888f1935050505061133357600080fd5b565b600a546000906001600160a01b031633146113625760405162461bcd60e51b8152600401610bab906137a5565b6001600160a01b0380841660008181526010602052604090205490911614156113ba5760405162461bcd60e51b815260206004820152600a60248201526920b63932b0b23c9034b760b11b6044820152606401610bab565b506001600160a01b03909116600081815260106020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b610ce1838383604051806020016040528060008152506122ed565b6060600061141f836119f5565b905060008167ffffffffffffffff81111561144a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611473578160200160208202803683370190505b50905060005b828110156114c85761148b8582611115565b8282815181106114ab57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806114c081613979565b915050611479565b509392505050565b336000818152600e602052604081205490916001600160a01b03909116146114fa57506000610b33565b336000908152600e6020526040902060020154610f679060036138e4565b600a546001600160a01b031633146115425760405162461bcd60e51b8152600401610bab906137a5565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600061156f60085490565b82106115d25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bab565b600882815481106115f357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b81336116108261194e565b6001600160a01b0316146116665760405162461bcd60e51b815260206004820152601d60248201527f53656e646572206973206e6f742074686520746f6b656e206f776e65720000006044820152606401610bab565b600a54600160b01b900460ff166116a95760405162461bcd60e51b8152602060048201526007602482015266139bdd0816595d60ca1b6044820152606401610bab565b6116b282611c68565b15156001146116f95760405162461bcd60e51b8152602060048201526013602482015272092dcecc2d8d2c840dcc2daca40d8cadccee8d606b1b6044820152606401610bab565b600083815260126020526040908190209051600291611717916135b4565b602060405180830381855afa158015611734573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190611757919061348c565b6002836040516117679190613598565b602060405180830381855afa158015611784573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906117a7919061348c565b14156117f55760405162461bcd60e51b815260206004820181905260248201527f4e6577206e616d652069732073616d652061732063757272656e74206e616d656044820152606401610bab565b601354604051632770a7eb60e21b815233600482015268056bc75e2d6310000060248201526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561184957600080fd5b505af115801561185d573d6000803e3d6000fd5b505050600084815260126020908152604090912084516118829350909185019061309d565b507fac2072268d18e10aecad35c0c04acd66330b2571a8ff403e3c702d77d3bab13483836040516118b492919061382b565b60405180910390a1505050565b600a546001600160a01b031633146118eb5760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60a01b19169055604051600080516020613a0183398151915290600090a1565b600a546001600160a01b0316331461193b5760405162461bcd60e51b8152600401610bab906137a5565b805161122490600c90602084019061309d565b6000818152600260205260408120546001600160a01b031680610a9b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bab565b600a54600090600160a81b900460ff16156119e8575066d529ae9e860000610b33565b5067011c37937e08000090565b60006001600160a01b038216611a605760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bab565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611aa65760405162461bcd60e51b8152600401610bab906137a5565b6113336000612710565b600a546000906001600160a01b03163314611add5760405162461bcd60e51b8152600401610bab906137a5565b6001600160a01b038083166000818152600e60205260409020549091161415611b3e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b6044820152606401610bab565b506001600160a01b03166000818152600e6020526040812080546001600160a01b0319169092178255600360018084019190915560029092015590565b600a546001600160a01b03163314611ba55760405162461bcd60e51b8152600401610bab906137a5565b60005b8251811015610ce157611c09838281518110611bd457634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110611bfc57634e487b7160e01b600052603260045260246000fd5b6020026020010151611335565b5080611c1481613979565b915050611ba8565b600a546001600160a01b03163314611c465760405162461bcd60e51b8152600401610bab906137a5565b805161122490600b90602084019061309d565b606060018054610ab29061393e565b600080829050600181511015611c82576000915050610a9e565b601981511115611c96576000915050610a9e565b80600081518110611cb757634e487b7160e01b600052603260045260246000fd5b6020910101516001600160f81b031916600160fd1b1415611cdc576000915050610a9e565b8060018251611ceb91906138e4565b81518110611d0957634e487b7160e01b600052603260045260246000fd5b6020910101516001600160f81b031916600160fd1b1415611d2e576000915050610a9e565b600081600081518110611d5157634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916905060005b8251811015611eaa576000838281518110611d9057634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b0319169050600160fd1b81148015611dc15750600160fd1b6001600160f81b03198416145b15611dd3576000945050505050610a9e565b600360fc1b6001600160f81b0319821610801590611dff5750603960f81b6001600160f81b0319821611155b158015611e355750604160f81b6001600160f81b0319821610801590611e335750602d60f91b6001600160f81b0319821611155b155b8015611e6a5750606160f81b6001600160f81b0319821610801590611e685750603d60f91b6001600160f81b0319821611155b155b8015611e845750600160fd1b6001600160f81b0319821614155b15611e96576000945050505050610a9e565b915080611ea281613979565b915050611d65565b506001949350505050565b600a54600160a01b900460ff16611eff5760405162461bcd60e51b815260206004820152600e60248201526d53616c65206e6f7420726561647960901b6044820152606401610bab565b600a811115611f505760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e742061206d6178696d756d206f66203130000000006044820152606401610bab565b6115b381611f5d60085490565b611f679190613899565b1115611fae5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610bab565b600a54600160a81b900460ff161561211d5734611fd266d529ae9e86000083612762565b111561201c5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610bab565b336000818152600e60205260409020546001600160a01b0316146120775760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b6044820152606401610bab565b336000908152600e602052604090206002015460039061209790836126b9565b11156120b55760405162461bcd60e51b8152600401610bab90613764565b336000908152600e6020526040902060020154600310156120e85760405162461bcd60e51b8152600401610bab90613764565b336000908152600e602052604090206002015461210590826126b9565b336000908152600e602052604090206002015561217a565b3461213067011c37937e08000083612762565b111561217a5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610bab565b60005b81811015610eda5761219233610e9760085490565b336000908152600d602052604081208054916121ad83613979565b919050555080806121bd90613979565b91505061217d565b6001600160a01b03821633141561221e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bab565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228b911515815260200190565b60405180910390a35050565b600a546001600160a01b031633146122c15760405162461bcd60e51b8152600401610bab906137a5565b600a805460ff60a01b1916600160a01b179055604051600080516020613a0183398151915290600090a1565b601354604051636a092e7960e01b81526001600160a01b038681166004830152858116602483015290911690636a092e7990604401600060405180830381600087803b15801561233c57600080fd5b505af1158015612350573d6000803e3d6000fd5b505050506001600160a01b0384166000908152600d6020526040812080549161237883613927565b90915550506001600160a01b0383166000908152600d602052604081208054916123a183613979565b91905055506123b28484848461276e565b50505050565b6000818152600260205260409020546060906001600160a01b03166124375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bab565b60006124416127a0565b90506000815111612461576040518060200160405280600081525061248c565b8061246b846127af565b60405160200161247c92919061364f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146124bd5760405162461bcd60e51b8152600401610bab906137a5565b60005b81811015612511576124d583610e9760085490565b6001600160a01b0383166000908152600d602052604081208054916124f983613979565b9190505550808061250990613979565b9150506124c0565b507ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e61253c60085490565b60405190815260200160405180910390a15050565b6060600b8054610ab29061393e565b600a546001600160a01b0316331461258a5760405162461bcd60e51b8152600401610bab906137a5565b6001600160a01b0381166125ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bab565b6125f881612710565b50565b60006001600160e01b031982166380ac58cd60e01b148061262c57506001600160e01b03198216635b5e139f60e01b145b80610a9b57506301ffc9a760e01b6001600160e01b0319831614610a9b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906126808261194e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061248c8284613899565b6112248282604051806020016040528060008152506128d2565b6126e93382612905565b6127055760405162461bcd60e51b8152600401610bab906137da565b610ce18383836129f8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061248c82846138c5565b6127783383612905565b6127945760405162461bcd60e51b8152600401610bab906137da565b6123b284848484612ba3565b6060600c8054610ab29061393e565b6060816127d457506040805180820190915260018152600360fc1b6020820152610a9e565b8160005b81156127fe57806127e881613979565b91506127f79050600a836138b1565b91506127d8565b60008167ffffffffffffffff81111561282757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612851576020820181803683370190505b5090505b84156128ca576128666001836138e4565b9150612873600a86613994565b61287e906030613899565b60f81b8183815181106128a157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506128c3600a866138b1565b9450612855565b949350505050565b6128dc8383612bd6565b6128e96000848484612d24565b610ce15760405162461bcd60e51b8152600401610bab90613712565b6000818152600260205260408120546001600160a01b031661297e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bab565b60006129898361194e565b9050806001600160a01b0316846001600160a01b031614806129c45750836001600160a01b03166129b984610b36565b6001600160a01b0316145b806128ca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166128ca565b826001600160a01b0316612a0b8261194e565b6001600160a01b031614612a735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bab565b6001600160a01b038216612ad55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bab565b612ae0838383612e26565b612aeb60008261264b565b6001600160a01b0383166000908152600360205260408120805460019290612b149084906138e4565b90915550506001600160a01b0382166000908152600360205260408120805460019290612b42908490613899565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612bae8484846129f8565b612bba84848484612d24565b6123b25760405162461bcd60e51b8152600401610bab90613712565b6001600160a01b038216612c2c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bab565b6000818152600260205260409020546001600160a01b031615612c915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bab565b612c9d60008383612e26565b6001600160a01b0382166000908152600360205260408120805460019290612cc6908490613899565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611eaa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d6890339089908890889060040161367e565b602060405180830381600087803b158015612d8257600080fd5b505af1925050508015612db2575060408051601f3d908101601f19168201909252612daf918101906134c0565b60015b612e0c573d808015612de0576040519150601f19603f3d011682016040523d82523d6000602084013e612de5565b606091505b508051612e045760405162461bcd60e51b8152600401610bab90613712565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506128ca565b6001600160a01b038316612e8157612e7c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ea4565b816001600160a01b0316836001600160a01b031614612ea457612ea48382612ee3565b6001600160a01b038216612ec057612ebb81612f80565b610ce1565b826001600160a01b0316826001600160a01b031614610ce157610ce18282613059565b60006001612ef0846119f5565b612efa91906138e4565b600083815260076020526040902054909150808214612f4d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612f92906001906138e4565b60008381526009602052604081205460088054939450909284908110612fc857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612ff757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061303d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613064836119f5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546130a99061393e565b90600052602060002090601f0160209004810192826130cb5760008555613111565b82601f106130e457805160ff1916838001178555613111565b82800160010185558215613111579182015b828111156131115782518255916020019190600101906130f6565b5061311d929150613121565b5090565b5b8082111561311d5760008155600101613122565b600067ffffffffffffffff831115613150576131506139d4565b613163601f8401601f1916602001613844565b905082815283838301111561317757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610a9e57600080fd5b600082601f8301126131b5578081fd5b813560206131ca6131c583613875565b613844565b80838252828201915082860187848660051b89010111156131e9578586fd5b855b8581101561320e576131fc8261318e565b845292840192908401906001016131eb565b5090979650505050505050565b600082601f83011261322b578081fd5b61248c83833560208501613136565b60006020828403121561324b578081fd5b61248c8261318e565b60008060408385031215613266578081fd5b61326f8361318e565b915061327d6020840161318e565b90509250929050565b60008060006060848603121561329a578081fd5b6132a38461318e565b92506132b16020850161318e565b9150604084013590509250925092565b600080600080608085870312156132d6578081fd5b6132df8561318e565b93506132ed6020860161318e565b925060408501359150606085013567ffffffffffffffff81111561330f578182fd5b8501601f8101871361331f578182fd5b61332e87823560208401613136565b91505092959194509250565b6000806040838503121561334c578182fd5b6133558361318e565b915060208301358015158114613369578182fd5b809150509250929050565b60008060408385031215613386578182fd5b61338f8361318e565b946020939093013593505050565b6000602082840312156133ae578081fd5b813567ffffffffffffffff8111156133c4578182fd5b6128ca848285016131a5565b600080604083850312156133e2578182fd5b823567ffffffffffffffff808211156133f9578384fd5b613405868387016131a5565b935060209150818501358181111561341b578384fd5b85019050601f8101861361342d578283fd5b803561343b6131c582613875565b80828252848201915084840189868560051b870101111561345a578687fd5b8694505b8385101561347c57803583526001949094019391850191850161345e565b5080955050505050509250929050565b60006020828403121561349d578081fd5b5051919050565b6000602082840312156134b5578081fd5b813561248c816139ea565b6000602082840312156134d1578081fd5b815161248c816139ea565b6000602082840312156134ed578081fd5b813567ffffffffffffffff811115613503578182fd5b6128ca8482850161321b565b600060208284031215613520578081fd5b5035919050565b60008060408385031215613539578182fd5b82359150602083013567ffffffffffffffff811115613556578182fd5b6135628582860161321b565b9150509250929050565b600081518084526135848160208601602086016138fb565b601f01601f19169290920160200192915050565b600082516135aa8184602087016138fb565b9190910192915050565b600080835482600182811c9150808316806135d057607f831692505b60208084108214156135f057634e487b7160e01b87526022600452602487fd5b818015613604576001811461361557613641565b60ff19861689528489019650613641565b60008a815260209020885b868110156136395781548b820152908501908301613620565b505084890196505b509498975050505050505050565b600083516136618184602088016138fb565b8351908301906136758183602088016138fb565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136b19083018461356c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156136f3578351835292840192918401916001016136d7565b50909695505050505050565b60006020825261248c602083018461356c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e742033207768696c652077686974656c697374656040820152601960fa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000838252604060208301526128ca604083018461356c565b604051601f8201601f1916810167ffffffffffffffff8111828210171561386d5761386d6139d4565b604052919050565b600067ffffffffffffffff82111561388f5761388f6139d4565b5060051b60200190565b600082198211156138ac576138ac6139a8565b500190565b6000826138c0576138c06139be565b500490565b60008160001904831182151516156138df576138df6139a8565b500290565b6000828210156138f6576138f66139a8565b500390565b60005b838110156139165781810151838201526020016138fe565b838111156123b25750506000910152565b600081613936576139366139a8565b506000190190565b600181811c9082168061395257607f821691505b6020821081141561397357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561398d5761398d6139a8565b5060010190565b6000826139a3576139a36139be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146125f857600080fdfefe9fe48ed8af470ddf16a3fe33ccde8333f78c19268c72c8ebd630e9c954ca2fa264697066735822122027672be39cfb003ce961a99d3775b75fac36a22931a0e98c76fcd1f3148a444b64736f6c63430008030033

Deployed Bytecode Sourcemap

50332:9234:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50654:38;;;;;;;;;;;;50690:2;50654:38;;;;;24308:25:1;;;24296:2;24281:18;50654:38:0;;;;;;;;41679:224;;;;;;;;;;-1:-1:-1;41679:224:0;;;;;:::i;:::-;;:::i;:::-;;;11537:14:1;;11530:22;11512:41;;11500:2;11485:18;41679:224:0;11467:92:1;29571:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31130:221::-;;;;;;;;;;-1:-1:-1;31130:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9257:32:1;;;9239:51;;9227:2;9212:18;31130:221:0;9194:102:1;30653:411:0;;;;;;;;;;-1:-1:-1;30653:411:0;;;;;:::i;:::-;;:::i;:::-;;55107:691;;;;;;:::i;:::-;;:::i;54852:247::-;;;;;;;;;;;;;:::i;42319:113::-;;;;;;;;;;-1:-1:-1;42407:10:0;:17;42319:113;;58474:226;;;;;;;;;;-1:-1:-1;58474:226:0;;;;;:::i;:::-;;:::i;51173:41::-;;;;;;;;;;-1:-1:-1;51173:41:0;;;;;:::i;:::-;;:::i;50508:37::-;;;;;;;;;;-1:-1:-1;50508:37:0;;;;-1:-1:-1;;;50508:37:0;;;;;;52105:105;;;;;;;;;;;;;:::i;50797:53::-;;;;;;;;;;;;50841:9;50797:53;;41987:256;;;;;;;;;;-1:-1:-1;41987:256:0;;;;;:::i;:::-;;:::i;53050:191::-;;;;;;;;;;-1:-1:-1;53050:191:0;;;;;:::i;:::-;;:::i;51854:115::-;;;;;;;;;;;;;:::i;51977:116::-;;;;;;;;;;;;;:::i;54346:132::-;;;;;;;;;;-1:-1:-1;54346:132:0;;;;;:::i;:::-;-1:-1:-1;;;;;54442:28:0;;;54404:18;54442:15;;;:9;:15;;;;;:20;;;;:28;;54346:132;54490:111;;;;;;;;;;;;;:::i;59451:112::-;;;;;;;;;;;;;:::i;53820:338::-;;;;;;;;;;-1:-1:-1;53820:338:0;;;;;:::i;:::-;;:::i;32430:185::-;;;;;;;;;;-1:-1:-1;32430:185:0;;;;;:::i;:::-;;:::i;52546:342::-;;;;;;;;;;-1:-1:-1;52546:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54613:231::-;;;;;;;;;;;;;:::i;52432:102::-;;;;;;;;;;-1:-1:-1;52432:102:0;;;;;:::i;:::-;;:::i;42509:233::-;;;;;;;;;;-1:-1:-1;42509:233:0;;;;;:::i;:::-;;:::i;56898:449::-;;;;;;;;;;-1:-1:-1;56898:449:0;;;;;:::i;:::-;;:::i;51740:106::-;;;;;;;;;;;;;:::i;59100:102::-;;;;;;;;;;-1:-1:-1;59100:102:0;;;;;:::i;:::-;;:::i;52224:88::-;;;;;;;;;;;;52293:11;;-1:-1:-1;;;52293:11:0;;;;;52224:88;51223:32;;;;;;;;;;-1:-1:-1;51223:32:0;;;;-1:-1:-1;;;;;51223:32:0;;;50699:46;;;;;;;;;;;;50744:1;50699:46;;29265:239;;;;;;;;;;-1:-1:-1;29265:239:0;;;;;:::i;:::-;;:::i;54166:168::-;;;;;;;;;;;;;:::i;28995:208::-;;;;;;;;;;-1:-1:-1;28995:208:0;;;;;:::i;:::-;;:::i;49476:94::-;;;;;;;;;;;;;:::i;53253:317::-;;;;;;;;;;-1:-1:-1;53253:317:0;;;;;:::i;:::-;;:::i;48825:87::-;;;;;;;;;;-1:-1:-1;48898:6:0;;-1:-1:-1;;;;;48898:6:0;48825:87;;53578:234;;;;;;;;;;-1:-1:-1;53578:234:0;;;;;:::i;:::-;;:::i;59210:121::-;;;;;;;;;;-1:-1:-1;59210:121:0;;;;;:::i;:::-;;:::i;29740:104::-;;;;;;;;;;;;;:::i;50999:45::-;;;;;;;;;;-1:-1:-1;50999:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50999:45:0;;;;;;;;;;;-1:-1:-1;;;;;10602:32:1;;;10584:51;;10666:2;10651:18;;10644:34;;;;10694:18;;;10687:34;10572:2;10557:18;50999:45:0;10539:188:1;57355:806:0;;;;;;;;;;-1:-1:-1;57355:806:0;;;;;:::i;:::-;;:::i;55806:1084::-;;;;;;:::i;:::-;;:::i;31423:295::-;;;;;;;;;;-1:-1:-1;31423:295:0;;;;;:::i;:::-;;:::i;51083:48::-;;;;;;;;;;-1:-1:-1;51083:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51083:48:0;;;;;;;50940:46;;;;;;;;;;-1:-1:-1;50940:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;51627:105;;;;;;;;;;;;;:::i;58705:261::-;;;;;;;;;;-1:-1:-1;58705:261:0;;;;;:::i;:::-;;:::i;29915:334::-;;;;;;;;;;-1:-1:-1;29915:334:0;;;;;:::i;:::-;;:::i;58216:253::-;;;;;;;;;;-1:-1:-1;58216:253:0;;;;;:::i;:::-;;:::i;52326:98::-;;;;;;;;;;;;52402:14;;-1:-1:-1;;;52402:14:0;;;;;52326:98;59343;;;;;;;;;;;;;:::i;31789:164::-;;;;;;;;;;-1:-1:-1;31789:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31910:25:0;;;31886:4;31910:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31789:164;49725:192;;;;;;;;;;-1:-1:-1;49725:192:0;;;;;:::i;:::-;;:::i;41679:224::-;41781:4;-1:-1:-1;;;;;;41805:50:0;;-1:-1:-1;;;41805:50:0;;:90;;;41859:36;41883:11;41859:23;:36::i;:::-;41798:97;;41679:224;;;;:::o;29571:100::-;29625:13;29658:5;29651:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29571:100;;:::o;31130:221::-;31206:7;34613:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34613:16:0;31226:73;;;;-1:-1:-1;;;31226:73:0;;18720:2:1;31226:73:0;;;18702:21:1;18759:2;18739:18;;;18732:30;18798:34;18778:18;;;18771:62;-1:-1:-1;;;18849:18:1;;;18842:42;18901:19;;31226:73:0;;;;;;;;;-1:-1:-1;31319:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31319:24:0;;31130:221::o;30653:411::-;30734:13;30750:23;30765:7;30750:14;:23::i;:::-;30734:39;;30798:5;-1:-1:-1;;;;;30792:11:0;:2;-1:-1:-1;;;;;30792:11:0;;;30784:57;;;;-1:-1:-1;;;30784:57:0;;21013:2:1;30784:57:0;;;20995:21:1;21052:2;21032:18;;;21025:30;21091:34;21071:18;;;21064:62;-1:-1:-1;;;21142:18:1;;;21135:31;21183:19;;30784:57:0;20985:223:1;30784:57:0;27160:10;-1:-1:-1;;;;;30876:21:0;;;;:62;;-1:-1:-1;30901:37:0;30918:5;27160:10;30925:12;27080:98;30901:37;30854:168;;;;-1:-1:-1;;;30854:168:0;;17113:2:1;30854:168:0;;;17095:21:1;17152:2;17132:18;;;17125:30;17191:34;17171:18;;;17164:62;17262:26;17242:18;;;17235:54;17306:19;;30854:168:0;17085:246:1;30854:168:0;31035:21;31044:2;31048:7;31035:8;:21::i;:::-;30653:411;;;:::o;55107:691::-;55172:11;;-1:-1:-1;;;55172:11:0;;;;55163:40;;;;-1:-1:-1;;;55163:40:0;;13818:2:1;55163:40:0;;;13800:21:1;13857:2;13837:18;;;13830:30;-1:-1:-1;;;13876:18:1;;;13869:44;13930:18;;55163:40:0;13790:164:1;55163:40:0;50786:4;55239:3;55223:13;42407:10;:17;42319:113;;55223:13;:19;;;;:::i;:::-;:37;;55214:74;;;;-1:-1:-1;;;55214:74:0;;21415:2:1;55214:74:0;;;21397:21:1;21454:2;21434:18;;;21427:30;-1:-1:-1;;;21473:18:1;;;21466:52;21535:18;;55214:74:0;21387:172:1;55214:74:0;55341:10;55308:24;;;;:12;:24;;;;;:29;-1:-1:-1;;;;;55308:29:0;:43;55299:74;;;;-1:-1:-1;;;55299:74:0;;19904:2:1;55299:74:0;;;19886:21:1;19943:2;19923:18;;;19916:30;-1:-1:-1;;;19962:18:1;;;19955:46;20018:18;;55299:74:0;19876:166:1;55299:74:0;55453:10;55440:24;;;;:12;:24;;;;;:36;;;;55393:34;;;;;:43;;55432:3;55393:38;:43::i;:::-;:83;;55384:116;;;;-1:-1:-1;;;55384:116:0;;15690:2:1;55384:116:0;;;15672:21:1;15729:2;15709:18;;;15702:30;-1:-1:-1;;;15748:18:1;;;15741:48;15806:18;;55384:116:0;15662:168:1;55384:116:0;55571:10;55558:24;;;;:12;:24;;;;;:34;;;:43;;55597:3;55558:38;:43::i;:::-;55534:10;55521:24;;;;:12;:24;;;;;:34;;:80;;;;55612:137;55631:3;55627:1;:7;55612:137;;;55655:42;55666:10;55678:13;42407:10;:17;42319:113;;55678:13;:17;;55694:1;55678:17;:::i;:::-;55655:9;:42::i;:::-;55724:10;55712:23;;;;:11;:23;;;;;:25;;;;;;:::i;:::-;;;;;;55636:3;;;;;:::i;:::-;;;;55612:137;;;;55764:26;55776:13;42407:10;:17;42319:113;;55776:13;55764:26;;24308:25:1;;;24296:2;24281:18;55764:26:0;;;;;;;55107:691;:::o;54852:247::-;54955:10;54896:11;54922:24;;;:12;:24;;;;;:29;54896:11;;-1:-1:-1;;;;;54922:29:0;;;:43;54919:82;;-1:-1:-1;54988:1:0;54981:8;;54919:82;55070:10;55057:24;;;;:12;:24;;;;;:34;;;;55018:36;;;;;:73;;55057:34;55018:73;:::i;:::-;55011:80;;54852:247;:::o;58474:226::-;58560:9;;:34;;-1:-1:-1;;;58560:34:0;;-1:-1:-1;;;;;9531:15:1;;;58560:34:0;;;9513::1;9583:15;;;9563:18;;;9556:43;58560:9:0;;;;:24;;9448:18:1;;58560:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;58605:17:0;;;;;;:11;:17;;;;;:19;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;58635:15:0;;;;;;:11;:15;;;;;:17;;;;;;:::i;:::-;;;;;;58657:38;58677:4;58683:2;58687:7;58657:19;:38::i;51173:41::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52105:105::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;52185:17:::1;::::0;;-1:-1:-1;;;;52164:38:0;::::1;-1:-1:-1::0;;;52185:17:0;;;::::1;;;52184:18;52164:38:::0;;::::1;;::::0;;52105:105::o;41987:256::-;42084:7;42120:23;42137:5;42120:16;:23::i;:::-;42112:5;:31;42104:87;;;;-1:-1:-1;;;42104:87:0;;12580:2:1;42104:87:0;;;12562:21:1;12619:2;12599:18;;;12592:30;12658:34;12638:18;;;12631:62;-1:-1:-1;;;12709:18:1;;;12702:41;12760:19;;42104:87:0;12552:233:1;42104:87:0;-1:-1:-1;;;;;;42209:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41987:256::o;53050:191::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;53141:6:::1;53137:97;53157:5;:12;53153:1;:16;53137:97;;;53191:31;53213:5;53219:1;53213:8;;;;;;-1:-1:-1::0;;;53213:8:0::1;;;;;;;;;;;;;;;53191:21;:31::i;:::-;-1:-1:-1::0;53171:3:0;::::1;::::0;::::1;:::i;:::-;;;;53137:97;;;;53050:191:::0;:::o;51854:115::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;51910:14:::1;:21:::0;;-1:-1:-1;;;;51910:21:0::1;-1:-1:-1::0;;;51910:21:0::1;::::0;;51947:14:::1;::::0;-1:-1:-1;;;;;;;;;;;51947:14:0;51910:21;;51947:14:::1;51854:115::o:0;51977:116::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;52033:14:::1;:22:::0;;-1:-1:-1;;;;52033:22:0::1;::::0;;52071:14:::1;::::0;-1:-1:-1;;;;;;;;;;;52071:14:0;52050:5:::1;::::0;52071:14:::1;51977:116::o:0;54490:111::-;54536:7;54580:13;42407:10;:17;42319:113;;54580:13;54563:30;;50786:4;54563:30;:::i;59451:112::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;59507:47:::1;::::0;59515:10:::1;::::0;59532:21:::1;59507:47:::0;::::1;;;::::0;::::1;::::0;;;59532:21;59515:10;59507:47;::::1;;;;;;59499:56;;;::::0;::::1;;59451:112::o:0;53820:338::-;48898:6;;53907:12;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53940:31:0;;::::1;:18;::::0;;;:12:::1;:18;::::0;;;;:23;;;::::1;:31;;53932:54;;;::::0;-1:-1:-1;;;53932:54:0;;16037:2:1;53932:54:0::1;::::0;::::1;16019:21:1::0;16076:2;16056:18;;;16049:30;-1:-1:-1;;;16095:18:1;;;16088:40;16145:18;;53932:54:0::1;16009:160:1::0;53932:54:0::1;-1:-1:-1::0;;;;;;53997:18:0;;::::1;;::::0;;;:12:::1;:18;::::0;;;;:30;;-1:-1:-1;;;;;;53997:30:0::1;::::0;;::::1;::::0;;;54038;;::::1;:44:::0;;;;54093:28:::1;::::0;;::::1;:32:::0;53997:30;53820:338::o;32430:185::-;32568:39;32585:4;32591:2;32595:7;32568:39;;;;;;;;;;;;:16;:39::i;52546:342::-;52605:16;52634:18;52655:17;52665:6;52655:9;:17::i;:::-;52634:38;;52685:25;52727:10;52713:25;;;;;;-1:-1:-1;;;52713:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52713:25:0;;52685:53;;52753:9;52749:106;52768:10;52764:1;:14;52749:106;;;52813:30;52833:6;52841:1;52813:19;:30::i;:::-;52799:8;52808:1;52799:11;;;;;;-1:-1:-1;;;52799:11:0;;;;;;;;;;;;;;;;;;:44;52780:3;;;;:::i;:::-;;;;52749:106;;;-1:-1:-1;52872:8:0;52546:342;-1:-1:-1;;;52546:342:0:o;54613:231::-;54721:10;54665:11;54691:21;;;:9;:21;;;;;:26;54665:11;;-1:-1:-1;;;;;54691:26:0;;;:40;54688:79;;-1:-1:-1;54754:1:0;54747:8;;54688:79;54815:10;54805:21;;;;:9;:21;;;;;:31;;;54784:52;;50744:1;54784:52;:::i;52432:102::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;52494:9:::1;:35:::0;;-1:-1:-1;;;;;;52494:35:0::1;-1:-1:-1::0;;;;;52494:35:0;;;::::1;::::0;;;::::1;::::0;;52432:102::o;42509:233::-;42584:7;42620:30;42407:10;:17;42319:113;;42620:30;42612:5;:38;42604:95;;;;-1:-1:-1;;;42604:95:0;;23233:2:1;42604:95:0;;;23215:21:1;23272:2;23252:18;;;23245:30;23311:34;23291:18;;;23284:62;-1:-1:-1;;;23362:18:1;;;23355:42;23414:19;;42604:95:0;23205:234:1;42604:95:0;42717:10;42728:5;42717:17;;;;;;-1:-1:-1;;;42717:17:0;;;;;;;;;;;;;;;;;42710:24;;42509:233;;;:::o;56898:449::-;56971:7;52974:10;52954:16;56971:7;52954;:16::i;:::-;-1:-1:-1;;;;;52954:30:0;;52946:72;;;;-1:-1:-1;;;52946:72:0;;12222:2:1;52946:72:0;;;12204:21:1;12261:2;12241:18;;;12234:30;12300:31;12280:18;;;12273:59;12349:18;;52946:72:0;12194:179:1;52946:72:0;56999:17:::1;::::0;-1:-1:-1;;;56999:17:0;::::1;;;56991:36;;;::::0;-1:-1:-1;;;56991:36:0;;16778:2:1;56991:36:0::1;::::0;::::1;16760:21:1::0;16817:1;16797:18;;;16790:29;-1:-1:-1;;;16835:18:1;;;16828:37;16882:18;;56991:36:0::1;16750:156:1::0;56991:36:0::1;57046:18;57059:4;57046:12;:18::i;:::-;:26;;57068:4;57046:26;57038:58;;;::::0;-1:-1:-1;;;57038:58:0;;22120:2:1;57038:58:0::1;::::0;::::1;22102:21:1::0;22159:2;22139:18;;;22132:30;-1:-1:-1;;;22178:18:1;;;22171:49;22237:18;;57038:58:0::1;22092:169:1::0;57038:58:0::1;57151:16;::::0;;;:7:::1;:16;::::0;;;;;;57138:31;;::::1;::::0;::::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57115:19;57128:4;57115:19;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:54;;57107:99;;;::::0;-1:-1:-1;;;57107:99:0;;24003:2:1;57107:99:0::1;::::0;::::1;23985:21:1::0;;;24022:18;;;24015:30;24081:34;24061:18;;;24054:62;24133:18;;57107:99:0::1;23975:182:1::0;57107:99:0::1;57219:9;::::0;:45:::1;::::0;-1:-1:-1;;;57219:45:0;;57234:10:::1;57219:45;::::0;::::1;10277:51:1::0;50841:9:0::1;10344:18:1::0;;;10337:34;-1:-1:-1;;;;;57219:9:0;;::::1;::::0;:14:::1;::::0;10250:18:1;;57219:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;57275:16:0::1;::::0;;;:7:::1;:16;::::0;;;;;;;:23;;::::1;::::0;-1:-1:-1;57275:16:0;;:23;::::1;::::0;::::1;:::i;:::-;;57314:25;57325:7;57334:4;57314:25;;;;;;;:::i;:::-;;;;;;;;56898:449:::0;;;:::o;51740:106::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;51789:11:::1;:19:::0;;-1:-1:-1;;;;51789:19:0::1;::::0;;51824:14:::1;::::0;-1:-1:-1;;;;;;;;;;;51824:14:0;51803:5:::1;::::0;51824:14:::1;51740:106::o:0;59100:102::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;59171:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;29265:239::-:0;29337:7;29373:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29373:16:0;29408:19;29400:73;;;;-1:-1:-1;;;29400:73:0;;17949:2:1;29400:73:0;;;17931:21:1;17988:2;17968:18;;;17961:30;18027:34;18007:18;;;18000:62;-1:-1:-1;;;18078:18:1;;;18071:39;18127:19;;29400:73:0;17921:231:1;54166:168:0;54234:14;;54208:11;;-1:-1:-1;;;54234:14:0;;;;54231:66;;;-1:-1:-1;50637:10:0;54264:21;;54231:66;-1:-1:-1;50586:10:0;54166:168;:::o;28995:208::-;29067:7;-1:-1:-1;;;;;29095:19:0;;29087:74;;;;-1:-1:-1;;;29087:74:0;;17538:2:1;29087:74:0;;;17520:21:1;17577:2;17557:18;;;17550:30;17616:34;17596:18;;;17589:62;-1:-1:-1;;;17667:18:1;;;17660:40;17717:19;;29087:74:0;17510:232:1;29087:74:0;-1:-1:-1;;;;;;29179:16:0;;;;;:9;:16;;;;;;;28995:208::o;49476:94::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;49541:21:::1;49559:1;49541:9;:21::i;53253:317::-:0;48898:6;;53323:12;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54442:28:0;;;54404:18;54442:15;;;:9;:15;;;;;:20;;;;:28;53356:20:::1;53348:52;;;::::0;-1:-1:-1;;;53348:52:0;;20665:2:1;53348:52:0::1;::::0;::::1;20647:21:1::0;20704:2;20684:18;;;20677:30;-1:-1:-1;;;20723:18:1;;;20716:49;20782:18;;53348:52:0::1;20637:169:1::0;53348:52:0::1;-1:-1:-1::0;;;;;;53411:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:27;;-1:-1:-1;;;;;;53411:27:0::1;::::0;;::::1;::::0;;50744:1:::1;53411:27:::0;53449;;::::1;:48:::0;;;;53508:25:::1;::::0;;::::1;:29:::0;53411:27;53253:317::o;53578:234::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;53696:6:::1;53692:113;53712:5;:12;53708:1;:16;53692:113;;;53746:47;53767:5;53773:1;53767:8;;;;;;-1:-1:-1::0;;;53767:8:0::1;;;;;;;;;;;;;;;53777:12;53790:1;53777:15;;;;;;-1:-1:-1::0;;;53777:15:0::1;;;;;;;;;;;;;;;53746:20;:47::i;:::-;-1:-1:-1::0;53726:3:0;::::1;::::0;::::1;:::i;:::-;;;;53692:113;;59210:121:::0;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;59294:29;;::::1;::::0;:12:::1;::::0;:29:::1;::::0;::::1;::::0;::::1;:::i;29740:104::-:0;29796:13;29829:7;29822:14;;;;;:::i;57355:806::-;57417:4;57433:14;57456:3;57433:27;;57485:1;57474;:8;:12;57471:29;;;57495:5;57488:12;;;;;57471:29;57525:2;57514:1;:8;:13;57511:30;;;57536:5;57529:12;;;;;57511:30;57555:1;57557;57555:4;;;;;;-1:-1:-1;;;57555:4:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;57555:4:0;-1:-1:-1;;;57555:12:0;57552:29;;;57576:5;57569:12;;;;;57552:29;57596:1;57609;57598;:8;:12;;;;:::i;:::-;57596:15;;;;;;-1:-1:-1;;;57596:15:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;57596:15:0;-1:-1:-1;;;57596:23:0;57592:41;;;57628:5;57621:12;;;;;57592:41;57646:15;57664:1;57666;57664:4;;;;;;-1:-1:-1;;;57664:4:0;;;;;;;;;;;;;-1:-1:-1;;;;;;57664:4:0;;-1:-1:-1;57685:6:0;57681:451;57695:1;:8;57693:1;:10;57681:451;;;57724:11;57738:1;57740;57738:4;;;;;;-1:-1:-1;;;57738:4:0;;;;;;;;;;;;;-1:-1:-1;;;;;;57738:4:0;;-1:-1:-1;;;;57763:12:0;;:32;;;;-1:-1:-1;;;;;;;;;;57779:16:0;;;57763:32;57759:50;;;57804:5;57797:12;;;;;;;;57759:50;-1:-1:-1;;;;;;;;;57850:12:0;;;;;;:28;;-1:-1:-1;;;;;;;;;;57866:12:0;;;;57850:28;57848:31;:89;;;;-1:-1:-1;;;;;;;;;;57908:12:0;;;;;;:28;;-1:-1:-1;;;;;;;;;;57924:12:0;;;;57908:28;57906:31;57848:89;:147;;;;-1:-1:-1;;;;;;;;;;57966:12:0;;;;;;:28;;-1:-1:-1;;;;;;;;;;57982:12:0;;;;57966:28;57964:31;57848:147;:189;;;;-1:-1:-1;;;;;;;;;;58024:12:0;;;58022:15;57848:189;57827:263;;;58085:5;58078:12;;;;;;;;57827:263;58116:4;-1:-1:-1;57705:3:0;;;;:::i;:::-;;;;57681:451;;;-1:-1:-1;58149:4:0;;57355:806;-1:-1:-1;;;;57355:806:0:o;55806:1084::-;55868:11;;-1:-1:-1;;;55868:11:0;;;;55859:40;;;;-1:-1:-1;;;55859:40:0;;13818:2:1;55859:40:0;;;13800:21:1;13857:2;13837:18;;;13830:30;-1:-1:-1;;;13876:18:1;;;13869:44;13930:18;;55859:40:0;13790:164:1;55859:40:0;50690:2;55919:3;:16;;55910:59;;;;-1:-1:-1;;;55910:59:0;;23646:2:1;55910:59:0;;;23628:21:1;23685:2;23665:18;;;23658:30;23724;23704:18;;;23697:58;23772:18;;55910:59:0;23618:178:1;55910:59:0;50786:4;56005:3;55989:13;42407:10;:17;42319:113;;55989:13;:19;;;;:::i;:::-;:37;;55980:74;;;;-1:-1:-1;;;55980:74:0;;21415:2:1;55980:74:0;;;21397:21:1;21454:2;21434:18;;;21427:30;-1:-1:-1;;;21473:18:1;;;21466:52;21535:18;;55980:74:0;21387:172:1;55980:74:0;56068:14;;-1:-1:-1;;;56068:14:0;;;;56065:629;;;56134:9;56107:23;50637:10;56126:3;56107:18;:23::i;:::-;:36;;56098:76;;;;-1:-1:-1;;;56098:76:0;;21766:2:1;56098:76:0;;;21748:21:1;21805:2;21785:18;;;21778:30;-1:-1:-1;;;21824:18:1;;;21817:55;21889:18;;56098:76:0;21738:175:1;56098:76:0;56212:10;54404:18;54442:15;;;:9;:15;;;;;:20;-1:-1:-1;;;;;54442:20:0;:28;56189:58;;;;-1:-1:-1;;;56189:58:0;;22886:2:1;56189:58:0;;;22868:21:1;22925:2;22905:18;;;22898:30;-1:-1:-1;;;22944:18:1;;;22937:48;23002:18;;56189:58:0;22858:168:1;56189:58:0;56281:10;56271:21;;;;:9;:21;;;;;:31;;;50744:1;;56271:40;;56307:3;56271:35;:40::i;:::-;:62;;56262:110;;;;-1:-1:-1;;;56262:110:0;;;;;;;:::i;:::-;56406:10;56396:21;;;;:9;:21;;;;;:31;;;50744:1;-1:-1:-1;56396:53:0;56387:101;;;;-1:-1:-1;;;56387:101:0;;;;;;;:::i;:::-;56547:10;56537:21;;;;:9;:21;;;;;:31;;;:40;;56573:3;56537:35;:40::i;:::-;56513:10;56503:21;;;;:9;:21;;;;;:31;;:74;56065:629;;;56642:9;56617:21;50586:10;56634:3;56617:16;:21::i;:::-;:34;;56608:74;;;;-1:-1:-1;;;56608:74:0;;21766:2:1;56608:74:0;;;21748:21:1;21805:2;21785:18;;;21778:30;-1:-1:-1;;;21824:18:1;;;21817:55;21889:18;;56608:74:0;21738:175:1;56608:74:0;56708:9;56704:137;56723:3;56719:1;:7;56704:137;;;56747:42;56758:10;56770:13;42407:10;:17;42319:113;;56747:42;56816:10;56804:23;;;;:11;:23;;;;;:25;;;;;;:::i;:::-;;;;;;56728:3;;;;;:::i;:::-;;;;56704:137;;31423:295;-1:-1:-1;;;;;31526:24:0;;27160:10;31526:24;;31518:62;;;;-1:-1:-1;;;31518:62:0;;14923:2:1;31518:62:0;;;14905:21:1;14962:2;14942:18;;;14935:30;15001:27;14981:18;;;14974:55;15046:18;;31518:62:0;14895:175:1;31518:62:0;27160:10;31593:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31593:42:0;;;;;;;;;;:53;;-1:-1:-1;;31593:53:0;;;;;;;:42;-1:-1:-1;;;;;31662:48:0;;31701:8;31662:48;;;;11537:14:1;11530:22;11512:41;;11500:2;11485:18;;11467:92;31662:48:0;;;;;;;;31423:295;;:::o;51627:105::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;51676:11:::1;:18:::0;;-1:-1:-1;;;;51676:18:0::1;-1:-1:-1::0;;;51676:18:0::1;::::0;;51710:14:::1;::::0;-1:-1:-1;;;;;;;;;;;51710:14:0;51676:18;;51710:14:::1;51627:105::o:0;58705:261::-;58815:9;;:34;;-1:-1:-1;;;58815:34:0;;-1:-1:-1;;;;;9531:15:1;;;58815:34:0;;;9513::1;9583:15;;;9563:18;;;9556:43;58815:9:0;;;;:24;;9448:18:1;;58815:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;58860:17:0;;;;;;:11;:17;;;;;:19;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;58890:15:0;;;;;;:11;:15;;;;;:17;;;;;;:::i;:::-;;;;;;58912:49;58936:4;58942:2;58946:7;58955:5;58912:23;:49::i;:::-;58705:261;;;;:::o;29915:334::-;34589:4;34613:16;;;:7;:16;;;;;;29988:13;;-1:-1:-1;;;;;34613:16:0;30014:76;;;;-1:-1:-1;;;30014:76:0;;20249:2:1;30014:76:0;;;20231:21:1;20288:2;20268:18;;;20261:30;20327:34;20307:18;;;20300:62;-1:-1:-1;;;20378:18:1;;;20371:45;20433:19;;30014:76:0;20221:237:1;30014:76:0;30103:21;30127:10;:8;:10::i;:::-;30103:34;;30179:1;30161:7;30155:21;:25;:86;;;;;;;;;;;;;;;;;30207:7;30216:18;:7;:16;:18::i;:::-;30190:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30155:86;30148:93;29915:334;-1:-1:-1;;;29915:334:0:o;58216:253::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;58296:6:::1;58291:129;58312:6;58308:1;:10;58291:129;;;58340:34;58350:4;58356:13;42407:10:::0;:17;42319:113;;58340:34:::1;-1:-1:-1::0;;;;;58389:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;:19;;;::::1;::::0;::::1;:::i;:::-;;;;;;58320:3;;;;;:::i;:::-;;;;58291:129;;;;58435:26;58447:13;42407:10:::0;:17;42319:113;;58447:13:::1;58435:26;::::0;24308:25:1;;;24296:2;24281:18;58435:26:0::1;;;;;;;58216:253:::0;;:::o;59343:98::-;59389:13;59421:12;59414:19;;;;;:::i;49725:192::-;48898:6;;-1:-1:-1;;;;;48898:6:0;27160:10;49045:23;49037:68;;;;-1:-1:-1;;;49037:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49814:22:0;::::1;49806:73;;;::::0;-1:-1:-1;;;49806:73:0;;13411:2:1;49806:73:0::1;::::0;::::1;13393:21:1::0;13450:2;13430:18;;;13423:30;13489:34;13469:18;;;13462:62;-1:-1:-1;;;13540:18:1;;;13533:36;13586:19;;49806:73:0::1;13383:228:1::0;49806:73:0::1;49890:19;49900:8;49890:9;:19::i;:::-;49725:192:::0;:::o;28626:305::-;28728:4;-1:-1:-1;;;;;;28765:40:0;;-1:-1:-1;;;28765:40:0;;:105;;-1:-1:-1;;;;;;;28822:48:0;;-1:-1:-1;;;28822:48:0;28765:105;:158;;;-1:-1:-1;;;;;;;;;;19875:40:0;;;28887:36;19766:157;38506:174;38581:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38581:29:0;-1:-1:-1;;;;;38581:29:0;;;;;;;;:24;;38635:23;38581:24;38635:14;:23::i;:::-;-1:-1:-1;;;;;38626:46:0;;;;;;;;;;;38506:174;;:::o;2825:98::-;2883:7;2910:5;2914:1;2910;:5;:::i;35508:110::-;35584:26;35594:2;35598:7;35584:26;;;;;;;;;;;;:9;:26::i;32020:339::-;32215:41;27160:10;32248:7;32215:18;:41::i;:::-;32207:103;;;;-1:-1:-1;;;32207:103:0;;;;;;;:::i;:::-;32323:28;32333:4;32339:2;32343:7;32323:9;:28::i;49925:173::-;50000:6;;;-1:-1:-1;;;;;50017:17:0;;;-1:-1:-1;;;;;;50017:17:0;;;;;;;50050:40;;50000:6;;;50017:17;50000:6;;50050:40;;49981:16;;50050:40;49925:173;;:::o;3563:98::-;3621:7;3648:5;3652:1;3648;:5;:::i;32686:328::-;32861:41;27160:10;32894:7;32861:18;:41::i;:::-;32853:103;;;;-1:-1:-1;;;32853:103:0;;;;;;;:::i;:::-;32967:39;32981:4;32987:2;32991:7;33000:5;32967:13;:39::i;58978:114::-;59038:13;59071;59064:20;;;;;:::i;7301:723::-;7357:13;7578:10;7574:53;;-1:-1:-1;7605:10:0;;;;;;;;;;;;-1:-1:-1;;;7605:10:0;;;;;;7574:53;7652:5;7637:12;7693:78;7700:9;;7693:78;;7726:8;;;;:::i;:::-;;-1:-1:-1;7749:10:0;;-1:-1:-1;7757:2:0;7749:10;;:::i;:::-;;;7693:78;;;7781:19;7813:6;7803:17;;;;;;-1:-1:-1;;;7803:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7803:17:0;;7781:39;;7831:154;7838:10;;7831:154;;7865:11;7875:1;7865:11;;:::i;:::-;;-1:-1:-1;7934:10:0;7942:2;7934:5;:10;:::i;:::-;7921:24;;:2;:24;:::i;:::-;7908:39;;7891:6;7898;7891:14;;;;;;-1:-1:-1;;;7891:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;7891:56:0;;;;;;;;-1:-1:-1;7962:11:0;7971:2;7962:11;;:::i;:::-;;;7831:154;;;8009:6;7301:723;-1:-1:-1;;;;7301:723:0:o;35845:321::-;35975:18;35981:2;35985:7;35975:5;:18::i;:::-;36026:54;36057:1;36061:2;36065:7;36074:5;36026:22;:54::i;:::-;36004:154;;;;-1:-1:-1;;;36004:154:0;;;;;;;:::i;34818:348::-;34911:4;34613:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34613:16:0;34928:73;;;;-1:-1:-1;;;34928:73:0;;15277:2:1;34928:73:0;;;15259:21:1;15316:2;15296:18;;;15289:30;15355:34;15335:18;;;15328:62;-1:-1:-1;;;15406:18:1;;;15399:42;15458:19;;34928:73:0;15249:234:1;34928:73:0;35012:13;35028:23;35043:7;35028:14;:23::i;:::-;35012:39;;35081:5;-1:-1:-1;;;;;35070:16:0;:7;-1:-1:-1;;;;;35070:16:0;;:51;;;;35114:7;-1:-1:-1;;;;;35090:31:0;:20;35102:7;35090:11;:20::i;:::-;-1:-1:-1;;;;;35090:31:0;;35070:51;:87;;;-1:-1:-1;;;;;;31910:25:0;;;31886:4;31910:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35125:32;31789:164;37810:578;37969:4;-1:-1:-1;;;;;37942:31:0;:23;37957:7;37942:14;:23::i;:::-;-1:-1:-1;;;;;37942:31:0;;37934:85;;;;-1:-1:-1;;;37934:85:0;;19494:2:1;37934:85:0;;;19476:21:1;19533:2;19513:18;;;19506:30;19572:34;19552:18;;;19545:62;-1:-1:-1;;;19623:18:1;;;19616:39;19672:19;;37934:85:0;19466:231:1;37934:85:0;-1:-1:-1;;;;;38038:16:0;;38030:65;;;;-1:-1:-1;;;38030:65:0;;14518:2:1;38030:65:0;;;14500:21:1;14557:2;14537:18;;;14530:30;14596:34;14576:18;;;14569:62;-1:-1:-1;;;14647:18:1;;;14640:34;14691:19;;38030:65:0;14490:226:1;38030:65:0;38108:39;38129:4;38135:2;38139:7;38108:20;:39::i;:::-;38212:29;38229:1;38233:7;38212:8;:29::i;:::-;-1:-1:-1;;;;;38254:15:0;;;;;;:9;:15;;;;;:20;;38273:1;;38254:15;:20;;38273:1;;38254:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38285:13:0;;;;;;:9;:13;;;;;:18;;38302:1;;38285:13;:18;;38302:1;;38285:18;:::i;:::-;;;;-1:-1:-1;;38314:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38314:21:0;-1:-1:-1;;;;;38314:21:0;;;;;;;;;38353:27;;38314:16;;38353:27;;;;;;;37810:578;;;:::o;33896:315::-;34053:28;34063:4;34069:2;34073:7;34053:9;:28::i;:::-;34100:48;34123:4;34129:2;34133:7;34142:5;34100:22;:48::i;:::-;34092:111;;;;-1:-1:-1;;;34092:111:0;;;;;;;:::i;36502:382::-;-1:-1:-1;;;;;36582:16:0;;36574:61;;;;-1:-1:-1;;;36574:61:0;;18359:2:1;36574:61:0;;;18341:21:1;;;18378:18;;;18371:30;18437:34;18417:18;;;18410:62;18489:18;;36574:61:0;18331:182:1;36574:61:0;34589:4;34613:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34613:16:0;:30;36646:58;;;;-1:-1:-1;;;36646:58:0;;14161:2:1;36646:58:0;;;14143:21:1;14200:2;14180:18;;;14173:30;14239;14219:18;;;14212:58;14287:18;;36646:58:0;14133:178:1;36646:58:0;36717:45;36746:1;36750:2;36754:7;36717:20;:45::i;:::-;-1:-1:-1;;;;;36775:13:0;;;;;;:9;:13;;;;;:18;;36792:1;;36775:13;:18;;36792:1;;36775:18;:::i;:::-;;;;-1:-1:-1;;36804:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36804:21:0;-1:-1:-1;;;;;36804:21:0;;;;;;;;36843:33;;36804:16;;;36843:33;;36804:16;;36843:33;36502:382;;:::o;39245:799::-;39400:4;-1:-1:-1;;;;;39421:13:0;;10149:20;10197:8;39417:620;;39457:72;;-1:-1:-1;;;39457:72:0;;-1:-1:-1;;;;;39457:36:0;;;;;:72;;27160:10;;39508:4;;39514:7;;39523:5;;39457:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39457:72:0;;;;;;;;-1:-1:-1;;39457:72:0;;;;;;;;;;;;:::i;:::-;;;39453:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39699:13:0;;39695:272;;39742:60;;-1:-1:-1;;;39742:60:0;;;;;;;:::i;39695:272::-;39917:6;39911:13;39902:6;39898:2;39894:15;39887:38;39453:529;-1:-1:-1;;;;;;39580:51:0;-1:-1:-1;;;39580:51:0;;-1:-1:-1;39573:58:0;;43355:589;-1:-1:-1;;;;;43561:18:0;;43557:187;;43596:40;43628:7;44771:10;:17;;44744:24;;;;:15;:24;;;;;:44;;;44799:24;;;;;;;;;;;;44667:164;43596:40;43557:187;;;43666:2;-1:-1:-1;;;;;43658:10:0;:4;-1:-1:-1;;;;;43658:10:0;;43654:90;;43685:47;43718:4;43724:7;43685:32;:47::i;:::-;-1:-1:-1;;;;;43758:16:0;;43754:183;;43791:45;43828:7;43791:36;:45::i;:::-;43754:183;;;43864:4;-1:-1:-1;;;;;43858:10:0;:2;-1:-1:-1;;;;;43858:10:0;;43854:83;;43885:40;43913:2;43917:7;43885:27;:40::i;45458:988::-;45724:22;45774:1;45749:22;45766:4;45749:16;:22::i;:::-;:26;;;;:::i;:::-;45786:18;45807:26;;;:17;:26;;;;;;45724:51;;-1:-1:-1;45940:28:0;;;45936:328;;-1:-1:-1;;;;;46007:18:0;;45985:19;46007:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46058:30;;;;;;:44;;;46175:30;;:17;:30;;;;;:43;;;45936:328;-1:-1:-1;46360:26:0;;;;:17;:26;;;;;;;;46353:33;;;-1:-1:-1;;;;;46404:18:0;;;;;:12;:18;;;;;:34;;;;;;;46397:41;45458:988::o;46741:1079::-;47019:10;:17;46994:22;;47019:21;;47039:1;;47019:21;:::i;:::-;47051:18;47072:24;;;:15;:24;;;;;;47445:10;:26;;46994:46;;-1:-1:-1;47072:24:0;;46994:46;;47445:26;;;;-1:-1:-1;;;47445:26:0;;;;;;;;;;;;;;;;;47423:48;;47509:11;47484:10;47495;47484:22;;;;;;-1:-1:-1;;;47484:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;47589:28;;;:15;:28;;;;;;;:41;;;47761:24;;;;;47754:31;47796:10;:16;;;;;-1:-1:-1;;;47796:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;46741:1079;;;;:::o;44245:221::-;44330:14;44347:20;44364:2;44347:16;:20::i;:::-;-1:-1:-1;;;;;44378:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44423:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44245:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;603:699;;710:3;703:4;695:6;691:17;687:27;677:2;;732:5;725;718:20;677:2;772:6;759:20;798:4;822:60;838:43;878:2;838:43;:::i;:::-;822:60;:::i;:::-;904:3;928:2;923:3;916:15;956:2;951:3;947:12;940:19;;991:2;983:6;979:15;1043:3;1038:2;1032;1029:1;1025:10;1017:6;1013:23;1009:32;1006:41;1003:2;;;1064:5;1057;1050:20;1003:2;1090:5;1104:169;1118:2;1115:1;1112:9;1104:169;;;1175:23;1194:3;1175:23;:::i;:::-;1163:36;;1219:12;;;;1251;;;;1136:1;1129:9;1104:169;;;-1:-1:-1;1291:5:1;;667:635;-1:-1:-1;;;;;;;667:635:1:o;1307:229::-;;1403:3;1396:4;1388:6;1384:17;1380:27;1370:2;;1425:5;1418;1411:20;1370:2;1451:79;1526:3;1517:6;1504:20;1497:4;1489:6;1485:17;1451:79;:::i;1541:196::-;;1653:2;1641:9;1632:7;1628:23;1624:32;1621:2;;;1674:6;1666;1659:22;1621:2;1702:29;1721:9;1702:29;:::i;1742:270::-;;;1871:2;1859:9;1850:7;1846:23;1842:32;1839:2;;;1892:6;1884;1877:22;1839:2;1920:29;1939:9;1920:29;:::i;:::-;1910:39;;1968:38;2002:2;1991:9;1987:18;1968:38;:::i;:::-;1958:48;;1829:183;;;;;:::o;2017:338::-;;;;2163:2;2151:9;2142:7;2138:23;2134:32;2131:2;;;2184:6;2176;2169:22;2131:2;2212:29;2231:9;2212:29;:::i;:::-;2202:39;;2260:38;2294:2;2283:9;2279:18;2260:38;:::i;:::-;2250:48;;2345:2;2334:9;2330:18;2317:32;2307:42;;2121:234;;;;;:::o;2360:696::-;;;;;2532:3;2520:9;2511:7;2507:23;2503:33;2500:2;;;2554:6;2546;2539:22;2500:2;2582:29;2601:9;2582:29;:::i;:::-;2572:39;;2630:38;2664:2;2653:9;2649:18;2630:38;:::i;:::-;2620:48;;2715:2;2704:9;2700:18;2687:32;2677:42;;2770:2;2759:9;2755:18;2742:32;2797:18;2789:6;2786:30;2783:2;;;2834:6;2826;2819:22;2783:2;2862:22;;2915:4;2907:13;;2903:27;-1:-1:-1;2893:2:1;;2949:6;2941;2934:22;2893:2;2977:73;3042:7;3037:2;3024:16;3019:2;3015;3011:11;2977:73;:::i;:::-;2967:83;;;2490:566;;;;;;;:::o;3061:367::-;;;3187:2;3175:9;3166:7;3162:23;3158:32;3155:2;;;3208:6;3200;3193:22;3155:2;3236:29;3255:9;3236:29;:::i;:::-;3226:39;;3315:2;3304:9;3300:18;3287:32;3362:5;3355:13;3348:21;3341:5;3338:32;3328:2;;3389:6;3381;3374:22;3328:2;3417:5;3407:15;;;3145:283;;;;;:::o;3433:264::-;;;3562:2;3550:9;3541:7;3537:23;3533:32;3530:2;;;3583:6;3575;3568:22;3530:2;3611:29;3630:9;3611:29;:::i;:::-;3601:39;3687:2;3672:18;;;;3659:32;;-1:-1:-1;;;3520:177:1:o;3702:368::-;;3839:2;3827:9;3818:7;3814:23;3810:32;3807:2;;;3860:6;3852;3845:22;3807:2;3905:9;3892:23;3938:18;3930:6;3927:30;3924:2;;;3975:6;3967;3960:22;3924:2;4003:61;4056:7;4047:6;4036:9;4032:22;4003:61;:::i;4075:1204::-;;;4254:2;4242:9;4233:7;4229:23;4225:32;4222:2;;;4275:6;4267;4260:22;4222:2;4320:9;4307:23;4349:18;4390:2;4382:6;4379:14;4376:2;;;4411:6;4403;4396:22;4376:2;4439:61;4492:7;4483:6;4472:9;4468:22;4439:61;:::i;:::-;4429:71;;4519:2;4509:12;;4574:2;4563:9;4559:18;4546:32;4603:2;4593:8;4590:16;4587:2;;;4624:6;4616;4609:22;4587:2;4652:24;;;-1:-1:-1;4707:4:1;4699:13;;4695:27;-1:-1:-1;4685:2:1;;4741:6;4733;4726:22;4685:2;4782;4769:16;4805:60;4821:43;4861:2;4821:43;:::i;4805:60::-;4887:3;4911:2;4906:3;4899:15;4939:2;4934:3;4930:12;4923:19;;4970:2;4966;4962:11;5018:7;5013:2;5007;5004:1;5000:10;4996:2;4992:19;4988:28;4985:41;4982:2;;;5044:6;5036;5029:22;4982:2;5071:6;5062:15;;5086:163;5100:2;5097:1;5094:9;5086:163;;;5157:17;;5145:30;;5118:1;5111:9;;;;;5195:12;;;;5227;;5086:163;;;5090:3;5268:5;5258:15;;;;;;;4212:1067;;;;;:::o;5284:194::-;;5407:2;5395:9;5386:7;5382:23;5378:32;5375:2;;;5428:6;5420;5413:22;5375:2;-1:-1:-1;5456:16:1;;5365:113;-1:-1:-1;5365:113:1:o;5483:255::-;;5594:2;5582:9;5573:7;5569:23;5565:32;5562:2;;;5615:6;5607;5600:22;5562:2;5659:9;5646:23;5678:30;5702:5;5678:30;:::i;5743:259::-;;5865:2;5853:9;5844:7;5840:23;5836:32;5833:2;;;5886:6;5878;5871:22;5833:2;5923:9;5917:16;5942:30;5966:5;5942:30;:::i;6007:342::-;;6129:2;6117:9;6108:7;6104:23;6100:32;6097:2;;;6150:6;6142;6135:22;6097:2;6195:9;6182:23;6228:18;6220:6;6217:30;6214:2;;;6265:6;6257;6250:22;6214:2;6293:50;6335:7;6326:6;6315:9;6311:22;6293:50;:::i;6354:190::-;;6466:2;6454:9;6445:7;6441:23;6437:32;6434:2;;;6487:6;6479;6472:22;6434:2;-1:-1:-1;6515:23:1;;6424:120;-1:-1:-1;6424:120:1:o;6549:410::-;;;6688:2;6676:9;6667:7;6663:23;6659:32;6656:2;;;6709:6;6701;6694:22;6656:2;6750:9;6737:23;6727:33;;6811:2;6800:9;6796:18;6783:32;6838:18;6830:6;6827:30;6824:2;;;6875:6;6867;6860:22;6824:2;6903:50;6945:7;6936:6;6925:9;6921:22;6903:50;:::i;:::-;6893:60;;;6646:313;;;;;:::o;6964:257::-;;7043:5;7037:12;7070:6;7065:3;7058:19;7086:63;7142:6;7135:4;7130:3;7126:14;7119:4;7112:5;7108:16;7086:63;:::i;:::-;7203:2;7182:15;-1:-1:-1;;7178:29:1;7169:39;;;;7210:4;7165:50;;7013:208;-1:-1:-1;;7013:208:1:o;7226:274::-;;7393:6;7387:13;7409:53;7455:6;7450:3;7443:4;7435:6;7431:17;7409:53;:::i;:::-;7478:16;;;;;7363:137;-1:-1:-1;;7363:137:1:o;7505:1108::-;;7664:3;7699:6;7693:13;7729:3;7751:1;7779:9;7775:2;7771:18;7761:28;;7839:2;7828:9;7824:18;7861;7851:2;;7905:4;7897:6;7893:17;7883:27;;7851:2;7931;7979;7971:6;7968:14;7948:18;7945:38;7942:2;;;-1:-1:-1;;;8006:33:1;;8062:4;8059:1;8052:15;8092:4;8013:3;8080:17;7942:2;8123:18;8150:104;;;;8268:1;8263:325;;;;8116:472;;8150:104;-1:-1:-1;;8183:24:1;;8171:37;;8228:16;;;;-1:-1:-1;8150:104:1;;8263:325;25107:130;25176:17;;;25226:4;25210:21;;8361:3;8377:165;8391:6;8388:1;8385:13;8377:165;;;8469:14;;8456:11;;;8449:35;8512:16;;;;8406:10;;8377:165;;;8381:3;;8571:6;8566:3;8562:16;8555:23;;8116:472;-1:-1:-1;8604:3:1;;7643:970;-1:-1:-1;;;;;;;;7643:970:1:o;8618:470::-;;8835:6;8829:13;8851:53;8897:6;8892:3;8885:4;8877:6;8873:17;8851:53;:::i;:::-;8967:13;;8926:16;;;;8989:57;8967:13;8926:16;9023:4;9011:17;;8989:57;:::i;:::-;9062:20;;8805:283;-1:-1:-1;;;;8805:283:1:o;9610:488::-;-1:-1:-1;;;;;9879:15:1;;;9861:34;;9931:15;;9926:2;9911:18;;9904:43;9978:2;9963:18;;9956:34;;;10026:3;10021:2;10006:18;;9999:31;;;9610:488;;10047:45;;10072:19;;10064:6;10047:45;:::i;:::-;10039:53;9813:285;-1:-1:-1;;;;;;9813:285:1:o;10732:635::-;10903:2;10955:21;;;11025:13;;10928:18;;;11047:22;;;10732:635;;10903:2;11126:15;;;;11100:2;11085:18;;;10732:635;11172:169;11186:6;11183:1;11180:13;11172:169;;;11247:13;;11235:26;;11316:15;;;;11281:12;;;;11208:1;11201:9;11172:169;;;-1:-1:-1;11358:3:1;;10883:484;-1:-1:-1;;;;;;10883:484:1:o;11796:219::-;;11945:2;11934:9;11927:21;11965:44;12005:2;11994:9;11990:18;11982:6;11965:44;:::i;12790:414::-;12992:2;12974:21;;;13031:2;13011:18;;;13004:30;13070:34;13065:2;13050:18;;13043:62;-1:-1:-1;;;13136:2:1;13121:18;;13114:48;13194:3;13179:19;;12964:240::o;16174:397::-;16376:2;16358:21;;;16415:2;16395:18;;;16388:30;16454:34;16449:2;16434:18;;16427:62;-1:-1:-1;;;16520:2:1;16505:18;;16498:31;16561:3;16546:19;;16348:223::o;18931:356::-;19133:2;19115:21;;;19152:18;;;19145:30;19211:34;19206:2;19191:18;;19184:62;19278:2;19263:18;;19105:182::o;22266:413::-;22468:2;22450:21;;;22507:2;22487:18;;;22480:30;22546:34;22541:2;22526:18;;22519:62;-1:-1:-1;;;22612:2:1;22597:18;;22590:47;22669:3;22654:19;;22440:239::o;24344:290::-;;24521:6;24510:9;24503:25;24564:2;24559;24548:9;24544:18;24537:30;24584:44;24624:2;24613:9;24609:18;24601:6;24584:44;:::i;24639:275::-;24710:2;24704:9;24775:2;24756:13;;-1:-1:-1;;24752:27:1;24740:40;;24810:18;24795:34;;24831:22;;;24792:62;24789:2;;;24857:18;;:::i;:::-;24893:2;24886:22;24684:230;;-1:-1:-1;24684:230:1:o;24919:183::-;;25012:18;25004:6;25001:30;24998:2;;;25034:18;;:::i;:::-;-1:-1:-1;25079:1:1;25075:14;25091:4;25071:25;;24988:114::o;25242:128::-;;25313:1;25309:6;25306:1;25303:13;25300:2;;;25319:18;;:::i;:::-;-1:-1:-1;25355:9:1;;25290:80::o;25375:120::-;;25441:1;25431:2;;25446:18;;:::i;:::-;-1:-1:-1;25480:9:1;;25421:74::o;25500:168::-;;25606:1;25602;25598:6;25594:14;25591:1;25588:21;25583:1;25576:9;25569:17;25565:45;25562:2;;;25613:18;;:::i;:::-;-1:-1:-1;25653:9:1;;25552:116::o;25673:125::-;;25741:1;25738;25735:8;25732:2;;;25746:18;;:::i;:::-;-1:-1:-1;25783:9:1;;25722:76::o;25803:258::-;25875:1;25885:113;25899:6;25896:1;25893:13;25885:113;;;25975:11;;;25969:18;25956:11;;;25949:39;25921:2;25914:10;25885:113;;;26016:6;26013:1;26010:13;26007:2;;;-1:-1:-1;;26051:1:1;26033:16;;26026:27;25856:205::o;26066:136::-;;26133:5;26123:2;;26142:18;;:::i;:::-;-1:-1:-1;;;26178:18:1;;26113:89::o;26207:380::-;26286:1;26282:12;;;;26329;;;26350:2;;26404:4;26396:6;26392:17;26382:27;;26350:2;26457;26449:6;26446:14;26426:18;26423:38;26420:2;;;26503:10;26498:3;26494:20;26491:1;26484:31;26538:4;26535:1;26528:15;26566:4;26563:1;26556:15;26420:2;;26262:325;;;:::o;26592:135::-;;-1:-1:-1;;26652:17:1;;26649:2;;;26672:18;;:::i;:::-;-1:-1:-1;26719:1:1;26708:13;;26639:88::o;26732:112::-;;26790:1;26780:2;;26795:18;;:::i;:::-;-1:-1:-1;26829:9:1;;26770:74::o;26849:127::-;26910:10;26905:3;26901:20;26898:1;26891:31;26941:4;26938:1;26931:15;26965:4;26962:1;26955:15;26981:127;27042:10;27037:3;27033:20;27030:1;27023:31;27073:4;27070:1;27063:15;27097:4;27094:1;27087:15;27113:127;27174:10;27169:3;27165:20;27162:1;27155:31;27205:4;27202:1;27195:15;27229:4;27226:1;27219:15;27245:131;-1:-1:-1;;;;;;27319:32:1;;27309:43;;27299:2;;27366:1;27363;27356:12

Swarm Source

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