ETH Price: $3,287.43 (+0.24%)
Gas: 5 Gwei

Token

 

Overview

Max Total Supply

2,076

Holders

555

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sangley.eth
0xF7b8301347bB7267356Ed7835AC69ec0bC14dEce
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JKDao

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-25
*/

// Sources flattened with hardhat v2.6.5 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC1155/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}


// File @openzeppelin/contracts/token/ERC1155/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC1155/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}


// File @openzeppelin/contracts/utils/[email protected]

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/utils/[email protected]

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/utils/introspection/[email protected]

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/ERC1155/[email protected]

pragma solidity ^0.8.0;






/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


// File @openzeppelin/contracts/access/[email protected]

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 @openzeppelin/contracts/security/[email protected]

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// File contracts/JKDao.sol

/*
       __   __  ___  _______       ___       ______
      |  | |  |/  / |       \     /   \     /  __  \
      |  | |  '  /  |  .--.  |   /  ^  \   |  |  |  |
.--.  |  | |    <   |  |  |  |  /  /_\  \  |  |  |  |
|  `--'  | |  .  \  |  '--'  | /  _____  \ |  `--'  |
 \______/  |__|\__\ |_______/ /__/     \__\ \______/


Join us https://discord.gg/796KVFSf
*/

pragma solidity ^0.8.7;





contract JKDao is ReentrancyGuard, ERC1155, Ownable {
    uint256 constant private _tokenId = 1;
    uint256 constant public oldJKSupply = 2278;

    address constant public oldJK = 0x137A81298c11708006405d75bC0541A2a07C0B33;
    uint256 public maxPerAddress = 15;
    uint256 public mintCount = 0;
    uint256 public bridgeCount = 0;
    uint256 public totalMinted = 0;
    uint256 public maxKeySupply = 7500;
    uint256 public mintPrice = 0.07 ether;

    bool public saleStarted = false;
    bool public presaleStarted = false;

    mapping(bytes32 => bool) private _usedHashes;
    address private _signerAddress;

    constructor() ERC1155("https://ipfs.io/ipfs/QmYbWYv48DWGh5mTGUDo9i5EtZySpTVPv4nJ72A2B5vSuK?filename=jk_metadata%20copy.json") {}

    function publicMint(uint256 _count) external payable nonReentrant {
        require(saleStarted, "Public sale not started");
        require(tx.origin == msg.sender, "Prevent contract call");
        require((balanceOf(msg.sender, _tokenId) + _count) <= maxPerAddress, "Max Per Address reached");
        require(_count > 0 && msg.value == _count * mintPrice, "invalid eth sent");
        require(mintCount + _count + oldJKSupply <= maxKeySupply, "max key cards");
        require(totalMinted + _count <= maxKeySupply, "max key cards");

        mintCount += _count;
        totalMinted += _count;
        _mint(msg.sender, _tokenId, _count, "");
    }


    // Preasale Mint Key Card
    function presaleMint(
        uint256 _count,
        bytes32 _hash,
        bytes memory _sig)
        external payable nonReentrant
    {
        require(presaleStarted, "Presale not started");
        require(tx.origin == msg.sender, "Prevent contract call");
        require((balanceOf(msg.sender, _tokenId) + _count) <= maxPerAddress, "Max Per Address reached");
        require(_count > 0 && msg.value == _count * mintPrice, "invalid eth sent");
        require(matchHash(msg.sender, _count, _hash), "invalid hash");
        require(matchSigner(_hash, _sig), "invalid signer");
        require(!_usedHashes[_hash], "_hash already used");
        require(mintCount + _count + oldJKSupply <= maxKeySupply, "max key cards");
        require(totalMinted + _count <= maxKeySupply, "max key cards");

        _usedHashes[_hash] = true;
        mintCount += _count;
        totalMinted += _count;
        _mint(msg.sender, _tokenId, _count, "");
    }

    function matchSigner(bytes32 _hash, bytes memory _signature) private view returns(bool) {
        return _signerAddress == ECDSA.recover(ECDSA.toEthSignedMessageHash(_hash), _signature);
    }

    function matchHash(address _sender, uint256 _count, bytes32 _hash) private pure returns(bool) {
        bytes32 h = keccak256(abi.encode(_sender, _count));
        return h == _hash;
    }

    function checkWhitelist(
        address _sender,
        uint256 _count,
        bytes32 _hash,
        bytes memory _sig
    ) public view returns(bool) {
        return matchHash(_sender, _count, _hash) && matchSigner(_hash, _sig);
    }

    // One Way Bridge function from old JKKeyCard to new JKKeyCard
    function bridge(uint256 _count) external {
        require(IERC1155(oldJK).isApprovedForAll(msg.sender, address(this)), "not approved.");
        require(IERC1155(oldJK).balanceOf(msg.sender, _tokenId) >= _count, "not enough balance");
        require(bridgeCount + _count <= oldJKSupply, "bridge exceed supply");

        bridgeCount += _count;
        totalMinted += _count;
        // BURN
        IERC1155(oldJK).safeTransferFrom(msg.sender, 0xDEadadD000000000000000000000000000000000, 1, _count, "");
        _mint(msg.sender, _tokenId, _count, "");
    }

    // ** Admin Fuctions ** //
    function setURI(string memory newuri) external onlyOwner {
        _setURI(newuri);
    }

    function withdraw(address payable _to) external onlyOwner {
        require(_to != address(0), "cannot withdraw to address(0)");
        require(address(this).balance > 0, "empty balance");
        _to.transfer(address(this).balance);
    }

    function setSaleStarted(bool _hasStarted) external onlyOwner {
        require(saleStarted != _hasStarted, "saleStarted already set");
        saleStarted = _hasStarted;
    }

    function setPresaleStarted(bool _hasStarted) external onlyOwner {
        require(presaleStarted != _hasStarted, "presaleStarted already set");
        presaleStarted= _hasStarted;
    }

    function setSignerAddress(address _signer) external onlyOwner {
        require(_signer != address(0), "signer address null");
        _signerAddress = _signer;
    }

    function setMaxPerAddress(uint256 _max) external onlyOwner {
        require(_max > 0, "max cannot be null");
        maxPerAddress = _max;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        require(_maxSupply > 0, "max supply cannot be 0");
        require(_maxSupply >= oldJKSupply, "supply cannot be lower than oldKey supply");
        maxKeySupply = _maxSupply;
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        mintPrice = _price;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"bridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bridgeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxKeySupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldJK","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldJKSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setPresaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600f600555600060068190556007819055600855611d4c60095566f8b0a10e470000600a55600b805461ffff191690553480156200004157600080fd5b506040518060a0016040528060648152602001620038e86064913960016000556200006c816200007e565b50620000783362000097565b620001cc565b805162000093906003906020840190620000e9565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f7906200018f565b90600052602060002090601f0160209004810192826200011b576000855562000166565b82601f106200013657805160ff191683800117855562000166565b8280016001018555821562000166579182015b828111156200016657825182559160200191906001019062000149565b506200017492915062000178565b5090565b5b8082111562000174576000815560010162000179565b600181811c90821680620001a457607f821691505b60208210811415620001c657634e487b7160e01b600052602260045260246000fd5b50919050565b61370c80620001dc6000396000f3fe6080604052600436106101fd5760003560e01c8063715018a61161011d578063a2309ff8116100b0578063e985e9c51161007f578063f2fde38b11610064578063f2fde38b146105e0578063f4a0a52814610600578063fbb2a53f1461062057600080fd5b8063e985e9c514610577578063f242432a146105c057600080fd5b8063a2309ff81461050e578063a854ffba14610524578063bf9b7c8d14610544578063e25603711461055757600080fd5b80638da5cb5b116100ec5780638da5cb5b1461049a57806390fd50b3146104b85780639659867e146104d8578063a22cb465146104ee57600080fd5b8063715018a6146104395780637498656a1461044e5780637bddd65b146104645780637c749f821461048457600080fd5b80632eb2c2d611610195578063639814e011610164578063639814e0146103cd5780636817c76c146103e35780636ecbac79146103f95780636f8b44b01461041957600080fd5b80632eb2c2d6146103465780634e1273f41461036657806351cff8d9146103935780635c474f9e146103b357600080fd5b8063046dc166116101d1578063046dc166146102a65780630e89341c146102c6578063122d1bd3146102f35780632db115441461033357600080fd5b8062fdd58e1461020257806301ffc9a71461023557806302fe53051461026557806304549d6f14610287575b600080fd5b34801561020e57600080fd5b5061022261021d366004612fb5565b610636565b6040519081526020015b60405180910390f35b34801561024157600080fd5b50610255610250366004613151565b6106e1565b604051901515815260200161022c565b34801561027157600080fd5b5061028561028036600461318b565b6107c6565b005b34801561029357600080fd5b50600b5461025590610100900460ff1681565b3480156102b257600080fd5b506102856102c1366004612e1a565b61082c565b3480156102d257600080fd5b506102e66102e13660046131dc565b610916565b60405161022c91906133bf565b3480156102ff57600080fd5b5061031b73137a81298c11708006405d75bc0541a2a07c0b3381565b6040516001600160a01b03909116815260200161022c565b6102856103413660046131dc565b6109aa565b34801561035257600080fd5b50610285610361366004612e70565b610c92565b34801561037257600080fd5b50610386610381366004613044565b610d34565b60405161022c9190613387565b34801561039f57600080fd5b506102856103ae366004612e1a565b610e72565b3480156103bf57600080fd5b50600b546102559060ff1681565b3480156103d957600080fd5b5061022260055481565b3480156103ef57600080fd5b50610222600a5481565b34801561040557600080fd5b50610285610414366004613117565b610fab565b34801561042557600080fd5b506102856104343660046131dc565b61109b565b34801561044557600080fd5b506102856111c2565b34801561045a57600080fd5b5061022260095481565b34801561047057600080fd5b5061028561047f3660046131dc565b611228565b34801561049057600080fd5b506102226108e681565b3480156104a657600080fd5b506004546001600160a01b031661031b565b3480156104c457600080fd5b506102856104d33660046131dc565b6112d7565b3480156104e457600080fd5b5061022260065481565b3480156104fa57600080fd5b50610285610509366004612f87565b611612565b34801561051a57600080fd5b5061022260085481565b34801561053057600080fd5b5061028561053f366004613117565b61171b565b61028561055236600461320e565b6117ff565b34801561056357600080fd5b50610255610572366004612fe1565b611c52565b34801561058357600080fd5b50610255610592366004612e37565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b3480156105cc57600080fd5b506102856105db366004612f1e565b611ca4565b3480156105ec57600080fd5b506102856105fb366004612e1a565b611d3f565b34801561060c57600080fd5b5061028561061b3660046131dc565b611e1e565b34801561062c57600080fd5b5061022260075481565b60006001600160a01b0383166106b95760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061077457507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b806107c057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6004546001600160a01b031633146108205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b61082981611e7d565b50565b6004546001600160a01b031633146108865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b6001600160a01b0381166108dc5760405162461bcd60e51b815260206004820152601360248201527f7369676e65722061646472657373206e756c6c0000000000000000000000000060448201526064016106b0565b600d80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6060600380546109259061344b565b80601f01602080910402602001604051908101604052809291908181526020018280546109519061344b565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b50505050509050919050565b600260005414156109fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b0565b6002600055600b5460ff16610a545760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206e6f74207374617274656400000000000000000060448201526064016106b0565b323314610aa35760405162461bcd60e51b815260206004820152601560248201527f50726576656e7420636f6e74726163742063616c6c000000000000000000000060448201526064016106b0565b60055481610ab2336001610636565b610abc91906133f6565b1115610b0a5760405162461bcd60e51b815260206004820152601760248201527f4d6178205065722041646472657373207265616368656400000000000000000060448201526064016106b0565b600081118015610b255750600a54610b22908261340e565b34145b610b715760405162461bcd60e51b815260206004820152601060248201527f696e76616c6964206574682073656e740000000000000000000000000000000060448201526064016106b0565b6009546108e682600654610b8591906133f6565b610b8f91906133f6565b1115610bdd5760405162461bcd60e51b815260206004820152600d60248201527f6d6178206b65792063617264730000000000000000000000000000000000000060448201526064016106b0565b60095481600854610bee91906133f6565b1115610c3c5760405162461bcd60e51b815260206004820152600d60248201527f6d6178206b65792063617264730000000000000000000000000000000000000060448201526064016106b0565b8060066000828254610c4e91906133f6565b925050819055508060086000828254610c6791906133f6565b92505081905550610c8a3360018360405180602001604052806000815250611e90565b506001600055565b6001600160a01b038516331480610cae5750610cae8533610592565b610d205760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016106b0565b610d2d8585858585611fb8565b5050505050565b60608151835114610dad5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016106b0565b6000835167ffffffffffffffff811115610dc957610dc9613592565b604051908082528060200260200182016040528015610df2578160200160208202803683370190505b50905060005b8451811015610e6a57610e3d858281518110610e1657610e16613563565b6020026020010151858381518110610e3057610e30613563565b6020026020010151610636565b828281518110610e4f57610e4f613563565b6020908102919091010152610e63816134cc565b9050610df8565b509392505050565b6004546001600160a01b03163314610ecc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b6001600160a01b038116610f225760405162461bcd60e51b815260206004820152601d60248201527f63616e6e6f7420776974686472617720746f206164647265737328302900000060448201526064016106b0565b60004711610f725760405162461bcd60e51b815260206004820152600d60248201527f656d7074792062616c616e63650000000000000000000000000000000000000060448201526064016106b0565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610fa7573d6000803e3d6000fd5b5050565b6004546001600160a01b031633146110055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600b5460ff61010090910416151581151514156110645760405162461bcd60e51b815260206004820152601a60248201527f70726573616c655374617274656420616c72656164792073657400000000000060448201526064016106b0565b600b8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6004546001600160a01b031633146110f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600081116111455760405162461bcd60e51b815260206004820152601660248201527f6d617820737570706c792063616e6e6f7420626520300000000000000000000060448201526064016106b0565b6108e68110156111bd5760405162461bcd60e51b815260206004820152602960248201527f737570706c792063616e6e6f74206265206c6f776572207468616e206f6c644b60448201527f657920737570706c79000000000000000000000000000000000000000000000060648201526084016106b0565b600955565b6004546001600160a01b0316331461121c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b6112266000612259565b565b6004546001600160a01b031633146112825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600081116112d25760405162461bcd60e51b815260206004820152601260248201527f6d61782063616e6e6f74206265206e756c6c000000000000000000000000000060448201526064016106b0565b600555565b6040517fe985e9c500000000000000000000000000000000000000000000000000000000815233600482015230602482015273137a81298c11708006405d75bc0541a2a07c0b339063e985e9c59060440160206040518083038186803b15801561134057600080fd5b505afa158015611354573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113789190613134565b6113c45760405162461bcd60e51b815260206004820152600d60248201527f6e6f7420617070726f7665642e0000000000000000000000000000000000000060448201526064016106b0565b6040517efdd58e00000000000000000000000000000000000000000000000000000000815233600482015260016024820152819073137a81298c11708006405d75bc0541a2a07c0b339062fdd58e9060440160206040518083038186803b15801561142e57600080fd5b505afa158015611442573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146691906131f5565b10156114b45760405162461bcd60e51b815260206004820152601260248201527f6e6f7420656e6f7567682062616c616e6365000000000000000000000000000060448201526064016106b0565b6108e6816007546114c591906133f6565b11156115135760405162461bcd60e51b815260206004820152601460248201527f6272696467652065786365656420737570706c7900000000000000000000000060448201526064016106b0565b806007600082825461152591906133f6565b92505081905550806008600082825461153e91906133f6565b90915550506040517ff242432a00000000000000000000000000000000000000000000000000000000815233600482015273deadadd0000000000000000000000000000000006024820152600160448201526064810182905260a06084820152600060a482015273137a81298c11708006405d75bc0541a2a07c0b339063f242432a9060c401600060405180830381600087803b1580156115de57600080fd5b505af11580156115f2573d6000803e3d6000fd5b505050506108293360018360405180602001604052806000815250611e90565b336001600160a01b03831614156116915760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016106b0565b3360008181526002602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6004546001600160a01b031633146117755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600b5460ff16151581151514156117ce5760405162461bcd60e51b815260206004820152601760248201527f73616c655374617274656420616c72656164792073657400000000000000000060448201526064016106b0565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600260005414156118525760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b0565b6002600055600b54610100900460ff166118ae5760405162461bcd60e51b815260206004820152601360248201527f50726573616c65206e6f7420737461727465640000000000000000000000000060448201526064016106b0565b3233146118fd5760405162461bcd60e51b815260206004820152601560248201527f50726576656e7420636f6e74726163742063616c6c000000000000000000000060448201526064016106b0565b6005548361190c336001610636565b61191691906133f6565b11156119645760405162461bcd60e51b815260206004820152601760248201527f4d6178205065722041646472657373207265616368656400000000000000000060448201526064016106b0565b60008311801561197f5750600a5461197c908461340e565b34145b6119cb5760405162461bcd60e51b815260206004820152601060248201527f696e76616c6964206574682073656e740000000000000000000000000000000060448201526064016106b0565b6040805133602080830191909152818301869052825180830384018152606090920190925280519101208214611a435760405162461bcd60e51b815260206004820152600c60248201527f696e76616c69642068617368000000000000000000000000000000000000000060448201526064016106b0565b611a4d82826122c3565b611a995760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964207369676e657200000000000000000000000000000000000060448201526064016106b0565b6000828152600c602052604090205460ff1615611af85760405162461bcd60e51b815260206004820152601260248201527f5f6861736820616c72656164792075736564000000000000000000000000000060448201526064016106b0565b6009546108e684600654611b0c91906133f6565b611b1691906133f6565b1115611b645760405162461bcd60e51b815260206004820152600d60248201527f6d6178206b65792063617264730000000000000000000000000000000000000060448201526064016106b0565b60095483600854611b7591906133f6565b1115611bc35760405162461bcd60e51b815260206004820152600d60248201527f6d6178206b65792063617264730000000000000000000000000000000000000060448201526064016106b0565b6000828152600c6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560068054859290611c0c9084906133f6565b925050819055508260086000828254611c2591906133f6565b92505081905550611c483360018560405180602001604052806000815250611e90565b5050600160005550565b604080516001600160a01b0386166020808301919091528183018690528251808303840181526060909201909252805191012060009083148015611c9b5750611c9b83836122c3565b95945050505050565b6001600160a01b038516331480611cc05750611cc08533610592565b611d325760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106b0565b610d2d858585858561233d565b6004546001600160a01b03163314611d995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b6001600160a01b038116611e155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106b0565b61082981612259565b6004546001600160a01b03163314611e785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600a55565b8051610fa7906003906020840190612c85565b6001600160a01b038416611f0c5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106b0565b33611f2681600087611f1d8861250a565b610d2d8861250a565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290611f589084906133f6565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610d2d81600087878787612555565b815183511461202f5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106b0565b6001600160a01b0384166120ab5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b0565b3360005b84518110156121eb5760008582815181106120cc576120cc613563565b6020026020010151905060008583815181106120ea576120ea613563565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156121915760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016106b0565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906121d09084906133f6565b92505081905550505050806121e4906134cc565b90506120af565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161223b92919061339a565b60405180910390a4612251818787878787612769565b505050505050565b600480546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061232561231f846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b836128d3565b600d546001600160a01b039182169116149392505050565b6001600160a01b0384166123b95760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b0565b336123c9818787611f1d8861250a565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156124625760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016106b0565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906124a19084906133f6565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612501828888888888612555565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061254457612544613563565b602090810291909101015292915050565b6001600160a01b0384163b15612251576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e61906125b29089908990889088908890600401613344565b602060405180830381600087803b1580156125cc57600080fd5b505af19250505080156125fc575060408051601f3d908101601f191682019092526125f99181019061316e565b60015b6126b2576126086135c1565b806308c379a01415612642575061261d6135dd565b806126285750612644565b8060405162461bcd60e51b81526004016106b091906133bf565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016106b0565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146125015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016106b0565b6001600160a01b0384163b15612251576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906127c690899089908890889088906004016132e6565b602060405180830381600087803b1580156127e057600080fd5b505af1925050508015612810575060408051601f3d908101601f1916820190925261280d9181019061316e565b60015b61281c576126086135c1565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146125015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016106b0565b60008060006128e285856128ef565b91509150610e6a8161295f565b6000808251604114156129265760208301516040840151606085015160001a61291a87828585612b50565b94509450505050612958565b8251604014156129505760208301516040840151612945868383612c3d565b935093505050612958565b506000905060025b9250929050565b600081600481111561297357612973613534565b141561297c5750565b600181600481111561299057612990613534565b14156129de5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106b0565b60028160048111156129f2576129f2613534565b1415612a405760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106b0565b6003816004811115612a5457612a54613534565b1415612ac85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016106b0565b6004816004811115612adc57612adc613534565b14156108295760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016106b0565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612b875750600090506003612c34565b8460ff16601b14158015612b9f57508460ff16601c14155b15612bb05750600090506004612c34565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c04573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612c2d57600060019250925050612c34565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01612c7787828885612b50565b935093505050935093915050565b828054612c919061344b565b90600052602060002090601f016020900481019282612cb35760008555612cf9565b82601f10612ccc57805160ff1916838001178555612cf9565b82800160010185558215612cf9579182015b82811115612cf9578251825591602001919060010190612cde565b50612d05929150612d09565b5090565b5b80821115612d055760008155600101612d0a565b600067ffffffffffffffff831115612d3857612d38613592565b604051612d4f6020601f19601f870116018261349f565b809150838152848484011115612d6457600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612d8d57600080fd5b81356020612d9a826133d2565b604051612da7828261349f565b8381528281019150858301600585901b87018401881015612dc757600080fd5b60005b85811015612de657813584529284019290840190600101612dca565b5090979650505050505050565b600082601f830112612e0457600080fd5b612e1383833560208501612d1e565b9392505050565b600060208284031215612e2c57600080fd5b8135612e1381613685565b60008060408385031215612e4a57600080fd5b8235612e5581613685565b91506020830135612e6581613685565b809150509250929050565b600080600080600060a08688031215612e8857600080fd5b8535612e9381613685565b94506020860135612ea381613685565b9350604086013567ffffffffffffffff80821115612ec057600080fd5b612ecc89838a01612d7c565b94506060880135915080821115612ee257600080fd5b612eee89838a01612d7c565b93506080880135915080821115612f0457600080fd5b50612f1188828901612df3565b9150509295509295909350565b600080600080600060a08688031215612f3657600080fd5b8535612f4181613685565b94506020860135612f5181613685565b93506040860135925060608601359150608086013567ffffffffffffffff811115612f7b57600080fd5b612f1188828901612df3565b60008060408385031215612f9a57600080fd5b8235612fa581613685565b91506020830135612e658161369a565b60008060408385031215612fc857600080fd5b8235612fd381613685565b946020939093013593505050565b60008060008060808587031215612ff757600080fd5b843561300281613685565b93506020850135925060408501359150606085013567ffffffffffffffff81111561302c57600080fd5b61303887828801612df3565b91505092959194509250565b6000806040838503121561305757600080fd5b823567ffffffffffffffff8082111561306f57600080fd5b818501915085601f83011261308357600080fd5b81356020613090826133d2565b60405161309d828261349f565b8381528281019150858301600585901b870184018b10156130bd57600080fd5b600096505b848710156130e95780356130d581613685565b8352600196909601959183019183016130c2565b509650508601359250508082111561310057600080fd5b5061310d85828601612d7c565b9150509250929050565b60006020828403121561312957600080fd5b8135612e138161369a565b60006020828403121561314657600080fd5b8151612e138161369a565b60006020828403121561316357600080fd5b8135612e13816136a8565b60006020828403121561318057600080fd5b8151612e13816136a8565b60006020828403121561319d57600080fd5b813567ffffffffffffffff8111156131b457600080fd5b8201601f810184136131c557600080fd5b6131d484823560208401612d1e565b949350505050565b6000602082840312156131ee57600080fd5b5035919050565b60006020828403121561320757600080fd5b5051919050565b60008060006060848603121561322357600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561324857600080fd5b61325486828701612df3565b9150509250925092565b600081518084526020808501945080840160005b8381101561328e57815187529582019590820190600101613272565b509495945050505050565b6000815180845260005b818110156132bf576020818501810151868301820152016132a3565b818111156132d1576000602083870101525b50601f01601f19169290920160200192915050565b60006001600160a01b03808816835280871660208401525060a0604083015261331260a083018661325e565b8281036060840152613324818661325e565b905082810360808401526133388185613299565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261337c60a0830184613299565b979650505050505050565b602081526000612e13602083018461325e565b6040815260006133ad604083018561325e565b8281036020840152611c9b818561325e565b602081526000612e136020830184613299565b600067ffffffffffffffff8211156133ec576133ec613592565b5060051b60200190565b6000821982111561340957613409613505565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561344657613446613505565b500290565b600181811c9082168061345f57607f821691505b60208210811415613499577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f19601f830116810181811067ffffffffffffffff821117156134c5576134c5613592565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134fe576134fe613505565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156135da5760046000803e5060005160e01c5b90565b600060443d10156135eb5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561363957505050505090565b82850191508151818111156136515750505050505090565b843d870101602082850101111561366b5750505050505090565b61367a6020828601018761349f565b509095945050505050565b6001600160a01b038116811461082957600080fd5b801515811461082957600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461082957600080fdfea26469706673582212201f2b00c0c56e8f0690f60592319cebfe3069b35338d16195254037757b026baf64736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d5962575976343844574768356d544755446f39693545745a79537054565076346e4a3732413242357653754b3f66696c656e616d653d6a6b5f6d65746164617461253230636f70792e6a736f6e

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063715018a61161011d578063a2309ff8116100b0578063e985e9c51161007f578063f2fde38b11610064578063f2fde38b146105e0578063f4a0a52814610600578063fbb2a53f1461062057600080fd5b8063e985e9c514610577578063f242432a146105c057600080fd5b8063a2309ff81461050e578063a854ffba14610524578063bf9b7c8d14610544578063e25603711461055757600080fd5b80638da5cb5b116100ec5780638da5cb5b1461049a57806390fd50b3146104b85780639659867e146104d8578063a22cb465146104ee57600080fd5b8063715018a6146104395780637498656a1461044e5780637bddd65b146104645780637c749f821461048457600080fd5b80632eb2c2d611610195578063639814e011610164578063639814e0146103cd5780636817c76c146103e35780636ecbac79146103f95780636f8b44b01461041957600080fd5b80632eb2c2d6146103465780634e1273f41461036657806351cff8d9146103935780635c474f9e146103b357600080fd5b8063046dc166116101d1578063046dc166146102a65780630e89341c146102c6578063122d1bd3146102f35780632db115441461033357600080fd5b8062fdd58e1461020257806301ffc9a71461023557806302fe53051461026557806304549d6f14610287575b600080fd5b34801561020e57600080fd5b5061022261021d366004612fb5565b610636565b6040519081526020015b60405180910390f35b34801561024157600080fd5b50610255610250366004613151565b6106e1565b604051901515815260200161022c565b34801561027157600080fd5b5061028561028036600461318b565b6107c6565b005b34801561029357600080fd5b50600b5461025590610100900460ff1681565b3480156102b257600080fd5b506102856102c1366004612e1a565b61082c565b3480156102d257600080fd5b506102e66102e13660046131dc565b610916565b60405161022c91906133bf565b3480156102ff57600080fd5b5061031b73137a81298c11708006405d75bc0541a2a07c0b3381565b6040516001600160a01b03909116815260200161022c565b6102856103413660046131dc565b6109aa565b34801561035257600080fd5b50610285610361366004612e70565b610c92565b34801561037257600080fd5b50610386610381366004613044565b610d34565b60405161022c9190613387565b34801561039f57600080fd5b506102856103ae366004612e1a565b610e72565b3480156103bf57600080fd5b50600b546102559060ff1681565b3480156103d957600080fd5b5061022260055481565b3480156103ef57600080fd5b50610222600a5481565b34801561040557600080fd5b50610285610414366004613117565b610fab565b34801561042557600080fd5b506102856104343660046131dc565b61109b565b34801561044557600080fd5b506102856111c2565b34801561045a57600080fd5b5061022260095481565b34801561047057600080fd5b5061028561047f3660046131dc565b611228565b34801561049057600080fd5b506102226108e681565b3480156104a657600080fd5b506004546001600160a01b031661031b565b3480156104c457600080fd5b506102856104d33660046131dc565b6112d7565b3480156104e457600080fd5b5061022260065481565b3480156104fa57600080fd5b50610285610509366004612f87565b611612565b34801561051a57600080fd5b5061022260085481565b34801561053057600080fd5b5061028561053f366004613117565b61171b565b61028561055236600461320e565b6117ff565b34801561056357600080fd5b50610255610572366004612fe1565b611c52565b34801561058357600080fd5b50610255610592366004612e37565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b3480156105cc57600080fd5b506102856105db366004612f1e565b611ca4565b3480156105ec57600080fd5b506102856105fb366004612e1a565b611d3f565b34801561060c57600080fd5b5061028561061b3660046131dc565b611e1e565b34801561062c57600080fd5b5061022260075481565b60006001600160a01b0383166106b95760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061077457507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b806107c057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6004546001600160a01b031633146108205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b61082981611e7d565b50565b6004546001600160a01b031633146108865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b6001600160a01b0381166108dc5760405162461bcd60e51b815260206004820152601360248201527f7369676e65722061646472657373206e756c6c0000000000000000000000000060448201526064016106b0565b600d80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6060600380546109259061344b565b80601f01602080910402602001604051908101604052809291908181526020018280546109519061344b565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b50505050509050919050565b600260005414156109fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b0565b6002600055600b5460ff16610a545760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206e6f74207374617274656400000000000000000060448201526064016106b0565b323314610aa35760405162461bcd60e51b815260206004820152601560248201527f50726576656e7420636f6e74726163742063616c6c000000000000000000000060448201526064016106b0565b60055481610ab2336001610636565b610abc91906133f6565b1115610b0a5760405162461bcd60e51b815260206004820152601760248201527f4d6178205065722041646472657373207265616368656400000000000000000060448201526064016106b0565b600081118015610b255750600a54610b22908261340e565b34145b610b715760405162461bcd60e51b815260206004820152601060248201527f696e76616c6964206574682073656e740000000000000000000000000000000060448201526064016106b0565b6009546108e682600654610b8591906133f6565b610b8f91906133f6565b1115610bdd5760405162461bcd60e51b815260206004820152600d60248201527f6d6178206b65792063617264730000000000000000000000000000000000000060448201526064016106b0565b60095481600854610bee91906133f6565b1115610c3c5760405162461bcd60e51b815260206004820152600d60248201527f6d6178206b65792063617264730000000000000000000000000000000000000060448201526064016106b0565b8060066000828254610c4e91906133f6565b925050819055508060086000828254610c6791906133f6565b92505081905550610c8a3360018360405180602001604052806000815250611e90565b506001600055565b6001600160a01b038516331480610cae5750610cae8533610592565b610d205760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016106b0565b610d2d8585858585611fb8565b5050505050565b60608151835114610dad5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016106b0565b6000835167ffffffffffffffff811115610dc957610dc9613592565b604051908082528060200260200182016040528015610df2578160200160208202803683370190505b50905060005b8451811015610e6a57610e3d858281518110610e1657610e16613563565b6020026020010151858381518110610e3057610e30613563565b6020026020010151610636565b828281518110610e4f57610e4f613563565b6020908102919091010152610e63816134cc565b9050610df8565b509392505050565b6004546001600160a01b03163314610ecc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b6001600160a01b038116610f225760405162461bcd60e51b815260206004820152601d60248201527f63616e6e6f7420776974686472617720746f206164647265737328302900000060448201526064016106b0565b60004711610f725760405162461bcd60e51b815260206004820152600d60248201527f656d7074792062616c616e63650000000000000000000000000000000000000060448201526064016106b0565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610fa7573d6000803e3d6000fd5b5050565b6004546001600160a01b031633146110055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600b5460ff61010090910416151581151514156110645760405162461bcd60e51b815260206004820152601a60248201527f70726573616c655374617274656420616c72656164792073657400000000000060448201526064016106b0565b600b8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6004546001600160a01b031633146110f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600081116111455760405162461bcd60e51b815260206004820152601660248201527f6d617820737570706c792063616e6e6f7420626520300000000000000000000060448201526064016106b0565b6108e68110156111bd5760405162461bcd60e51b815260206004820152602960248201527f737570706c792063616e6e6f74206265206c6f776572207468616e206f6c644b60448201527f657920737570706c79000000000000000000000000000000000000000000000060648201526084016106b0565b600955565b6004546001600160a01b0316331461121c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b6112266000612259565b565b6004546001600160a01b031633146112825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600081116112d25760405162461bcd60e51b815260206004820152601260248201527f6d61782063616e6e6f74206265206e756c6c000000000000000000000000000060448201526064016106b0565b600555565b6040517fe985e9c500000000000000000000000000000000000000000000000000000000815233600482015230602482015273137a81298c11708006405d75bc0541a2a07c0b339063e985e9c59060440160206040518083038186803b15801561134057600080fd5b505afa158015611354573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113789190613134565b6113c45760405162461bcd60e51b815260206004820152600d60248201527f6e6f7420617070726f7665642e0000000000000000000000000000000000000060448201526064016106b0565b6040517efdd58e00000000000000000000000000000000000000000000000000000000815233600482015260016024820152819073137a81298c11708006405d75bc0541a2a07c0b339062fdd58e9060440160206040518083038186803b15801561142e57600080fd5b505afa158015611442573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146691906131f5565b10156114b45760405162461bcd60e51b815260206004820152601260248201527f6e6f7420656e6f7567682062616c616e6365000000000000000000000000000060448201526064016106b0565b6108e6816007546114c591906133f6565b11156115135760405162461bcd60e51b815260206004820152601460248201527f6272696467652065786365656420737570706c7900000000000000000000000060448201526064016106b0565b806007600082825461152591906133f6565b92505081905550806008600082825461153e91906133f6565b90915550506040517ff242432a00000000000000000000000000000000000000000000000000000000815233600482015273deadadd0000000000000000000000000000000006024820152600160448201526064810182905260a06084820152600060a482015273137a81298c11708006405d75bc0541a2a07c0b339063f242432a9060c401600060405180830381600087803b1580156115de57600080fd5b505af11580156115f2573d6000803e3d6000fd5b505050506108293360018360405180602001604052806000815250611e90565b336001600160a01b03831614156116915760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016106b0565b3360008181526002602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6004546001600160a01b031633146117755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600b5460ff16151581151514156117ce5760405162461bcd60e51b815260206004820152601760248201527f73616c655374617274656420616c72656164792073657400000000000000000060448201526064016106b0565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600260005414156118525760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b0565b6002600055600b54610100900460ff166118ae5760405162461bcd60e51b815260206004820152601360248201527f50726573616c65206e6f7420737461727465640000000000000000000000000060448201526064016106b0565b3233146118fd5760405162461bcd60e51b815260206004820152601560248201527f50726576656e7420636f6e74726163742063616c6c000000000000000000000060448201526064016106b0565b6005548361190c336001610636565b61191691906133f6565b11156119645760405162461bcd60e51b815260206004820152601760248201527f4d6178205065722041646472657373207265616368656400000000000000000060448201526064016106b0565b60008311801561197f5750600a5461197c908461340e565b34145b6119cb5760405162461bcd60e51b815260206004820152601060248201527f696e76616c6964206574682073656e740000000000000000000000000000000060448201526064016106b0565b6040805133602080830191909152818301869052825180830384018152606090920190925280519101208214611a435760405162461bcd60e51b815260206004820152600c60248201527f696e76616c69642068617368000000000000000000000000000000000000000060448201526064016106b0565b611a4d82826122c3565b611a995760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964207369676e657200000000000000000000000000000000000060448201526064016106b0565b6000828152600c602052604090205460ff1615611af85760405162461bcd60e51b815260206004820152601260248201527f5f6861736820616c72656164792075736564000000000000000000000000000060448201526064016106b0565b6009546108e684600654611b0c91906133f6565b611b1691906133f6565b1115611b645760405162461bcd60e51b815260206004820152600d60248201527f6d6178206b65792063617264730000000000000000000000000000000000000060448201526064016106b0565b60095483600854611b7591906133f6565b1115611bc35760405162461bcd60e51b815260206004820152600d60248201527f6d6178206b65792063617264730000000000000000000000000000000000000060448201526064016106b0565b6000828152600c6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560068054859290611c0c9084906133f6565b925050819055508260086000828254611c2591906133f6565b92505081905550611c483360018560405180602001604052806000815250611e90565b5050600160005550565b604080516001600160a01b0386166020808301919091528183018690528251808303840181526060909201909252805191012060009083148015611c9b5750611c9b83836122c3565b95945050505050565b6001600160a01b038516331480611cc05750611cc08533610592565b611d325760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016106b0565b610d2d858585858561233d565b6004546001600160a01b03163314611d995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b6001600160a01b038116611e155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106b0565b61082981612259565b6004546001600160a01b03163314611e785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b0565b600a55565b8051610fa7906003906020840190612c85565b6001600160a01b038416611f0c5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106b0565b33611f2681600087611f1d8861250a565b610d2d8861250a565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290611f589084906133f6565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610d2d81600087878787612555565b815183511461202f5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016106b0565b6001600160a01b0384166120ab5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b0565b3360005b84518110156121eb5760008582815181106120cc576120cc613563565b6020026020010151905060008583815181106120ea576120ea613563565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156121915760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016106b0565b60008381526001602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906121d09084906133f6565b92505081905550505050806121e4906134cc565b90506120af565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161223b92919061339a565b60405180910390a4612251818787878787612769565b505050505050565b600480546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061232561231f846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b836128d3565b600d546001600160a01b039182169116149392505050565b6001600160a01b0384166123b95760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b0565b336123c9818787611f1d8861250a565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156124625760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016106b0565b60008581526001602090815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906124a19084906133f6565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612501828888888888612555565b50505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061254457612544613563565b602090810291909101015292915050565b6001600160a01b0384163b15612251576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e61906125b29089908990889088908890600401613344565b602060405180830381600087803b1580156125cc57600080fd5b505af19250505080156125fc575060408051601f3d908101601f191682019092526125f99181019061316e565b60015b6126b2576126086135c1565b806308c379a01415612642575061261d6135dd565b806126285750612644565b8060405162461bcd60e51b81526004016106b091906133bf565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016106b0565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146125015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016106b0565b6001600160a01b0384163b15612251576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906127c690899089908890889088906004016132e6565b602060405180830381600087803b1580156127e057600080fd5b505af1925050508015612810575060408051601f3d908101601f1916820190925261280d9181019061316e565b60015b61281c576126086135c1565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146125015760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016106b0565b60008060006128e285856128ef565b91509150610e6a8161295f565b6000808251604114156129265760208301516040840151606085015160001a61291a87828585612b50565b94509450505050612958565b8251604014156129505760208301516040840151612945868383612c3d565b935093505050612958565b506000905060025b9250929050565b600081600481111561297357612973613534565b141561297c5750565b600181600481111561299057612990613534565b14156129de5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106b0565b60028160048111156129f2576129f2613534565b1415612a405760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106b0565b6003816004811115612a5457612a54613534565b1415612ac85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016106b0565b6004816004811115612adc57612adc613534565b14156108295760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016106b0565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612b875750600090506003612c34565b8460ff16601b14158015612b9f57508460ff16601c14155b15612bb05750600090506004612c34565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c04573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612c2d57600060019250925050612c34565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01612c7787828885612b50565b935093505050935093915050565b828054612c919061344b565b90600052602060002090601f016020900481019282612cb35760008555612cf9565b82601f10612ccc57805160ff1916838001178555612cf9565b82800160010185558215612cf9579182015b82811115612cf9578251825591602001919060010190612cde565b50612d05929150612d09565b5090565b5b80821115612d055760008155600101612d0a565b600067ffffffffffffffff831115612d3857612d38613592565b604051612d4f6020601f19601f870116018261349f565b809150838152848484011115612d6457600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612d8d57600080fd5b81356020612d9a826133d2565b604051612da7828261349f565b8381528281019150858301600585901b87018401881015612dc757600080fd5b60005b85811015612de657813584529284019290840190600101612dca565b5090979650505050505050565b600082601f830112612e0457600080fd5b612e1383833560208501612d1e565b9392505050565b600060208284031215612e2c57600080fd5b8135612e1381613685565b60008060408385031215612e4a57600080fd5b8235612e5581613685565b91506020830135612e6581613685565b809150509250929050565b600080600080600060a08688031215612e8857600080fd5b8535612e9381613685565b94506020860135612ea381613685565b9350604086013567ffffffffffffffff80821115612ec057600080fd5b612ecc89838a01612d7c565b94506060880135915080821115612ee257600080fd5b612eee89838a01612d7c565b93506080880135915080821115612f0457600080fd5b50612f1188828901612df3565b9150509295509295909350565b600080600080600060a08688031215612f3657600080fd5b8535612f4181613685565b94506020860135612f5181613685565b93506040860135925060608601359150608086013567ffffffffffffffff811115612f7b57600080fd5b612f1188828901612df3565b60008060408385031215612f9a57600080fd5b8235612fa581613685565b91506020830135612e658161369a565b60008060408385031215612fc857600080fd5b8235612fd381613685565b946020939093013593505050565b60008060008060808587031215612ff757600080fd5b843561300281613685565b93506020850135925060408501359150606085013567ffffffffffffffff81111561302c57600080fd5b61303887828801612df3565b91505092959194509250565b6000806040838503121561305757600080fd5b823567ffffffffffffffff8082111561306f57600080fd5b818501915085601f83011261308357600080fd5b81356020613090826133d2565b60405161309d828261349f565b8381528281019150858301600585901b870184018b10156130bd57600080fd5b600096505b848710156130e95780356130d581613685565b8352600196909601959183019183016130c2565b509650508601359250508082111561310057600080fd5b5061310d85828601612d7c565b9150509250929050565b60006020828403121561312957600080fd5b8135612e138161369a565b60006020828403121561314657600080fd5b8151612e138161369a565b60006020828403121561316357600080fd5b8135612e13816136a8565b60006020828403121561318057600080fd5b8151612e13816136a8565b60006020828403121561319d57600080fd5b813567ffffffffffffffff8111156131b457600080fd5b8201601f810184136131c557600080fd5b6131d484823560208401612d1e565b949350505050565b6000602082840312156131ee57600080fd5b5035919050565b60006020828403121561320757600080fd5b5051919050565b60008060006060848603121561322357600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561324857600080fd5b61325486828701612df3565b9150509250925092565b600081518084526020808501945080840160005b8381101561328e57815187529582019590820190600101613272565b509495945050505050565b6000815180845260005b818110156132bf576020818501810151868301820152016132a3565b818111156132d1576000602083870101525b50601f01601f19169290920160200192915050565b60006001600160a01b03808816835280871660208401525060a0604083015261331260a083018661325e565b8281036060840152613324818661325e565b905082810360808401526133388185613299565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261337c60a0830184613299565b979650505050505050565b602081526000612e13602083018461325e565b6040815260006133ad604083018561325e565b8281036020840152611c9b818561325e565b602081526000612e136020830184613299565b600067ffffffffffffffff8211156133ec576133ec613592565b5060051b60200190565b6000821982111561340957613409613505565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561344657613446613505565b500290565b600181811c9082168061345f57607f821691505b60208210811415613499577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f19601f830116810181811067ffffffffffffffff821117156134c5576134c5613592565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134fe576134fe613505565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156135da5760046000803e5060005160e01c5b90565b600060443d10156135eb5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561363957505050505090565b82850191508151818111156136515750505050505090565b843d870101602082850101111561366b5750505050505090565b61367a6020828601018761349f565b509095945050505050565b6001600160a01b038116811461082957600080fd5b801515811461082957600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461082957600080fdfea26469706673582212201f2b00c0c56e8f0690f60592319cebfe3069b35338d16195254037757b026baf64736f6c63430008070033

Deployed Bytecode Sourcemap

47768:5221:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20043:231;;;;;;;;;;-1:-1:-1;20043:231:0;;;;;:::i;:::-;;:::i;:::-;;;29336:25:1;;;29324:2;29309:18;20043:231:0;;;;;;;;19066:310;;;;;;;;;;-1:-1:-1;19066:310:0;;;;;:::i;:::-;;:::i;:::-;;;14349:14:1;;14342:22;14324:41;;14312:2;14297:18;19066:310:0;14184:187:1;51562:91:0;;;;;;;;;;-1:-1:-1;51562:91:0;;;;;:::i;:::-;;:::i;:::-;;48277:34;;;;;;;;;;-1:-1:-1;48277:34:0;;;;;;;;;;;52296:169;;;;;;;;;;-1:-1:-1;52296:169:0;;;;;:::i;:::-;;:::i;19787:105::-;;;;;;;;;;-1:-1:-1;19787:105:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47922:74::-;;;;;;;;;;;;47954:42;47922:74;;;;;-1:-1:-1;;;;;10642:55:1;;;10624:74;;10612:2;10597:18;47922:74:0;10478:226:1;48546:663:0;;;;;;:::i;:::-;;:::i;22138:442::-;;;;;;;;;;-1:-1:-1;22138:442:0;;;;;:::i;:::-;;:::i;20440:524::-;;;;;;;;;;-1:-1:-1;20440:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51661:244::-;;;;;;;;;;-1:-1:-1;51661:244:0;;;;;:::i;:::-;;:::i;48239:31::-;;;;;;;;;;-1:-1:-1;48239:31:0;;;;;;;;48003:33;;;;;;;;;;;;;;;;48193:37;;;;;;;;;;;;;;;;52099:189;;;;;;;;;;-1:-1:-1;52099:189:0;;;;;:::i;:::-;;:::i;52629:255::-;;;;;;;;;;-1:-1:-1;52629:255:0;;;;;:::i;:::-;;:::i;43998:94::-;;;;;;;;;;;;;:::i;48152:34::-;;;;;;;;;;;;;;;;52473:148;;;;;;;;;;-1:-1:-1;52473:148:0;;;;;:::i;:::-;;:::i;47871:42::-;;;;;;;;;;;;47909:4;47871:42;;43347:87;;;;;;;;;;-1:-1:-1;43420:6:0;;-1:-1:-1;;;;;43420:6:0;43347:87;;50952:570;;;;;;;;;;-1:-1:-1;50952:570:0;;;;;:::i;:::-;;:::i;48043:28::-;;;;;;;;;;;;;;;;21037:311;;;;;;;;;;-1:-1:-1;21037:311:0;;;;;:::i;:::-;;:::i;48115:30::-;;;;;;;;;;;;;;;;51913:178;;;;;;;;;;-1:-1:-1;51913:178:0;;;;;:::i;:::-;;:::i;49250:970::-;;;;;;:::i;:::-;;:::i;50629:247::-;;;;;;;;;;-1:-1:-1;50629:247:0;;;;;:::i;:::-;;:::i;21420:168::-;;;;;;;;;;-1:-1:-1;21420:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;21543:27:0;;;21519:4;21543:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;21420:168;21660:401;;;;;;;;;;-1:-1:-1;21660:401:0;;;;;:::i;:::-;;:::i;44247:192::-;;;;;;;;;;-1:-1:-1;44247:192:0;;;;;:::i;:::-;;:::i;52892:94::-;;;;;;;;;;-1:-1:-1;52892:94:0;;;;;:::i;:::-;;:::i;48078:30::-;;;;;;;;;;;;;;;;20043:231;20129:7;-1:-1:-1;;;;;20157:21:0;;20149:77;;;;-1:-1:-1;;;20149:77:0;;17448:2:1;20149:77:0;;;17430:21:1;17487:2;17467:18;;;17460:30;17526:34;17506:18;;;17499:62;17597:13;17577:18;;;17570:41;17628:19;;20149:77:0;;;;;;;;;-1:-1:-1;20244:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;20244:22:0;;;;;;;;;;;;20043:231::o;19066:310::-;19168:4;19205:41;;;19220:26;19205:41;;:110;;-1:-1:-1;19263:52:0;;;19278:37;19263:52;19205:110;:163;;;-1:-1:-1;18009:25:0;17994:40;;;;19332:36;19185:183;19066:310;-1:-1:-1;;19066:310:0:o;51562:91::-;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;51630:15:::1;51638:6;51630:7;:15::i;:::-;51562:91:::0;:::o;52296:169::-;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;-1:-1:-1;;;;;52377:21:0;::::1;52369:53;;;::::0;-1:-1:-1;;;52369:53:0;;25673:2:1;52369:53:0::1;::::0;::::1;25655:21:1::0;25712:2;25692:18;;;25685:30;25751:21;25731:18;;;25724:49;25790:18;;52369:53:0::1;25471:343:1::0;52369:53:0::1;52433:14;:24:::0;;;::::1;-1:-1:-1::0;;;;;52433:24:0;;;::::1;::::0;;;::::1;::::0;;52296:169::o;19787:105::-;19847:13;19880:4;19873:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19787:105;;;:::o;48546:663::-;46378:1;46974:7;;:19;;46966:63;;;;-1:-1:-1;;;46966:63:0;;29032:2:1;46966:63:0;;;29014:21:1;29071:2;29051:18;;;29044:30;29110:33;29090:18;;;29083:61;29161:18;;46966:63:0;28830:355:1;46966:63:0;46378:1;47107:7;:18;48631:11:::1;::::0;::::1;;48623:47;;;::::0;-1:-1:-1;;;48623:47:0;;20064:2:1;48623:47:0::1;::::0;::::1;20046:21:1::0;20103:2;20083:18;;;20076:30;20142:25;20122:18;;;20115:53;20185:18;;48623:47:0::1;19862:347:1::0;48623:47:0::1;48689:9;48702:10;48689:23;48681:57;;;::::0;-1:-1:-1;;;48681:57:0;;24204:2:1;48681:57:0::1;::::0;::::1;24186:21:1::0;24243:2;24223:18;;;24216:30;24282:23;24262:18;;;24255:51;24323:18;;48681:57:0::1;24002:345:1::0;48681:57:0::1;48803:13;;48792:6;48758:31;48768:10;47863:1;48758:9;:31::i;:::-;:40;;;;:::i;:::-;48757:59;;48749:95;;;::::0;-1:-1:-1;;;48749:95:0;;18610:2:1;48749:95:0::1;::::0;::::1;18592:21:1::0;18649:2;18629:18;;;18622:30;18688:25;18668:18;;;18661:53;18731:18;;48749:95:0::1;18408:347:1::0;48749:95:0::1;48872:1;48863:6;:10;:45;;;;-1:-1:-1::0;48899:9:0::1;::::0;48890:18:::1;::::0;:6;:18:::1;:::i;:::-;48877:9;:31;48863:45;48855:74;;;::::0;-1:-1:-1;;;48855:74:0;;19719:2:1;48855:74:0::1;::::0;::::1;19701:21:1::0;19758:2;19738:18;;;19731:30;19797:18;19777;;;19770:46;19833:18;;48855:74:0::1;19517:340:1::0;48855:74:0::1;48984:12;;47909:4;48960:6;48948:9;;:18;;;;:::i;:::-;:32;;;;:::i;:::-;:48;;48940:74;;;::::0;-1:-1:-1;;;48940:74:0;;26021:2:1;48940:74:0::1;::::0;::::1;26003:21:1::0;26060:2;26040:18;;;26033:30;26099:15;26079:18;;;26072:43;26132:18;;48940:74:0::1;25819:337:1::0;48940:74:0::1;49057:12;;49047:6;49033:11;;:20;;;;:::i;:::-;:36;;49025:62;;;::::0;-1:-1:-1;;;49025:62:0;;26021:2:1;49025:62:0::1;::::0;::::1;26003:21:1::0;26060:2;26040:18;;;26033:30;26099:15;26079:18;;;26072:43;26132:18;;49025:62:0::1;25819:337:1::0;49025:62:0::1;49113:6;49100:9;;:19;;;;;;;:::i;:::-;;;;;;;;49145:6;49130:11;;:21;;;;;;;:::i;:::-;;;;;;;;49162:39;49168:10;47863:1;49190:6;49162:39;;;;;;;;;;;::::0;:5:::1;:39::i;:::-;-1:-1:-1::0;46334:1:0;47286:7;:22;48546:663::o;22138:442::-;-1:-1:-1;;;;;22371:20:0;;16951:10;22371:20;;:60;;-1:-1:-1;22395:36:0;22412:4;16951:10;21420:168;:::i;22395:36::-;22349:160;;;;-1:-1:-1;;;22349:160:0;;21572:2:1;22349:160:0;;;21554:21:1;21611:2;21591:18;;;21584:30;21650:34;21630:18;;;21623:62;21721:20;21701:18;;;21694:48;21759:19;;22349:160:0;21370:414:1;22349:160:0;22520:52;22543:4;22549:2;22553:3;22558:7;22567:4;22520:22;:52::i;:::-;22138:442;;;;;:::o;20440:524::-;20596:16;20657:3;:10;20638:8;:15;:29;20630:83;;;;-1:-1:-1;;;20630:83:0;;27811:2:1;20630:83:0;;;27793:21:1;27850:2;27830:18;;;27823:30;27889:34;27869:18;;;27862:62;27960:11;27940:18;;;27933:39;27989:19;;20630:83:0;27609:405:1;20630:83:0;20726:30;20773:8;:15;20759:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20759:30:0;;20726:63;;20807:9;20802:122;20826:8;:15;20822:1;:19;20802:122;;;20882:30;20892:8;20901:1;20892:11;;;;;;;;:::i;:::-;;;;;;;20905:3;20909:1;20905:6;;;;;;;;:::i;:::-;;;;;;;20882:9;:30::i;:::-;20863:13;20877:1;20863:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;20843:3;;;:::i;:::-;;;20802:122;;;-1:-1:-1;20943:13:0;20440:524;-1:-1:-1;;;20440:524:0:o;51661:244::-;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;-1:-1:-1;;;;;51738:17:0;::::1;51730:59;;;::::0;-1:-1:-1;;;51730:59:0;;23846:2:1;51730:59:0::1;::::0;::::1;23828:21:1::0;23885:2;23865:18;;;23858:30;23924:31;23904:18;;;23897:59;23973:18;;51730:59:0::1;23644:353:1::0;51730:59:0::1;51832:1;51808:21;:25;51800:51;;;::::0;-1:-1:-1;;;51800:51:0;;26363:2:1;51800:51:0::1;::::0;::::1;26345:21:1::0;26402:2;26382:18;;;26375:30;26441:15;26421:18;;;26414:43;26474:18;;51800:51:0::1;26161:337:1::0;51800:51:0::1;51862:35;::::0;-1:-1:-1;;;;;51862:12:0;::::1;::::0;51875:21:::1;51862:35:::0;::::1;;;::::0;::::1;::::0;;;51875:21;51862:12;:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51661:244:::0;:::o;52099:189::-;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;52182:14:::1;::::0;::::1;;::::0;;::::1;;:29;;::::0;::::1;;;;52174:68;;;::::0;-1:-1:-1;;;52174:68:0;;26705:2:1;52174:68:0::1;::::0;::::1;26687:21:1::0;26744:2;26724:18;;;26717:30;26783:28;26763:18;;;26756:56;26829:18;;52174:68:0::1;26503:350:1::0;52174:68:0::1;52253:14;:27:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;52099:189::o;52629:255::-;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;52722:1:::1;52709:10;:14;52701:49;;;::::0;-1:-1:-1;;;52701:49:0;;17097:2:1;52701:49:0::1;::::0;::::1;17079:21:1::0;17136:2;17116:18;;;17109:30;17175:24;17155:18;;;17148:52;17217:18;;52701:49:0::1;16895:346:1::0;52701:49:0::1;47909:4;52769:10;:25;;52761:79;;;::::0;-1:-1:-1;;;52761:79:0;;22333:2:1;52761:79:0::1;::::0;::::1;22315:21:1::0;22372:2;22352:18;;;22345:30;22411:34;22391:18;;;22384:62;22482:11;22462:18;;;22455:39;22511:19;;52761:79:0::1;22131:405:1::0;52761:79:0::1;52851:12;:25:::0;52629:255::o;43998:94::-;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;44063:21:::1;44081:1;44063:9;:21::i;:::-;43998:94::o:0;52473:148::-;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;52558:1:::1;52551:4;:8;52543:39;;;::::0;-1:-1:-1;;;52543:39:0;;24965:2:1;52543:39:0::1;::::0;::::1;24947:21:1::0;25004:2;24984:18;;;24977:30;25043:20;25023:18;;;25016:48;25081:18;;52543:39:0::1;24763:342:1::0;52543:39:0::1;52593:13;:20:::0;52473:148::o;50952:570::-;51012:59;;;;;51045:10;51012:59;;;10944:34:1;51065:4:0;10994:18:1;;;10987:43;47954:42:0;;51012:32;;10856:18:1;;51012:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51004:85;;;;-1:-1:-1;;;51004:85:0;;21991:2:1;51004:85:0;;;21973:21:1;22030:2;22010:18;;;22003:30;22069:15;22049:18;;;22042:43;22102:18;;51004:85:0;21789:337:1;51004:85:0;51108:47;;;;;51134:10;51108:47;;;13320:74:1;47863:1:0;13410:18:1;;;13403:34;51159:6:0;;47954:42;;51108:25;;13293:18:1;;51108:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;;51100:88;;;;-1:-1:-1;;;51100:88:0;;20819:2:1;51100:88:0;;;20801:21:1;20858:2;20838:18;;;20831:30;20897:20;20877:18;;;20870:48;20935:18;;51100:88:0;20617:342:1;51100:88:0;47909:4;51221:6;51207:11;;:20;;;;:::i;:::-;:35;;51199:68;;;;-1:-1:-1;;;51199:68:0;;16388:2:1;51199:68:0;;;16370:21:1;16427:2;16407:18;;;16400:30;16466:22;16446:18;;;16439:50;16506:18;;51199:68:0;16186:344:1;51199:68:0;51295:6;51280:11;;:21;;;;;;;:::i;:::-;;;;;;;;51327:6;51312:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;51361:103:0;;;;;51394:10;51361:103;;;12259:34:1;51406:42:0;12309:18:1;;;12302:43;51450:1:0;12361:18:1;;;12354:34;12404:18;;;12397:34;;;12468:3;12447:19;;;12440:32;-1:-1:-1;12488:19:1;;;12481:30;47954:42:0;;51361:32;;12528:19:1;;51361:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51475:39;51481:10;47863:1;51503:6;51475:39;;;;;;;;;;;;:5;:39::i;21037:311::-;16951:10;-1:-1:-1;;;;;21140:24:0;;;;21132:78;;;;-1:-1:-1;;;21132:78:0;;27401:2:1;21132:78:0;;;27383:21:1;27440:2;27420:18;;;27413:30;27479:34;27459:18;;;27452:62;27550:11;27530:18;;;27523:39;27579:19;;21132:78:0;27199:405:1;21132:78:0;16951:10;21223:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;21223:42:0;;;;;;;;;;;;:53;;;;;;;;;;;;;21292:48;;14324:41:1;;;21223:42:0;;16951:10;21292:48;;14297:18:1;21292:48:0;;;;;;;21037:311;;:::o;51913:178::-;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;51993:11:::1;::::0;::::1;;:26;;::::0;::::1;;;;51985:62;;;::::0;-1:-1:-1;;;51985:62:0;;22743:2:1;51985:62:0::1;::::0;::::1;22725:21:1::0;22782:2;22762:18;;;22755:30;22821:25;22801:18;;;22794:53;22864:18;;51985:62:0::1;22541:347:1::0;51985:62:0::1;52058:11;:25:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;51913:178::o;49250:970::-;46378:1;46974:7;;:19;;46966:63;;;;-1:-1:-1;;;46966:63:0;;29032:2:1;46966:63:0;;;29014:21:1;29071:2;29051:18;;;29044:30;29110:33;29090:18;;;29083:61;29161:18;;46966:63:0;28830:355:1;46966:63:0;46378:1;47107:7;:18;49412:14:::1;::::0;::::1;::::0;::::1;;;49404:46;;;::::0;-1:-1:-1;;;49404:46:0;;23498:2:1;49404:46:0::1;::::0;::::1;23480:21:1::0;23537:2;23517:18;;;23510:30;23576:21;23556:18;;;23549:49;23615:18;;49404:46:0::1;23296:343:1::0;49404:46:0::1;49469:9;49482:10;49469:23;49461:57;;;::::0;-1:-1:-1;;;49461:57:0;;24204:2:1;49461:57:0::1;::::0;::::1;24186:21:1::0;24243:2;24223:18;;;24216:30;24282:23;24262:18;;;24255:51;24323:18;;49461:57:0::1;24002:345:1::0;49461:57:0::1;49583:13;;49572:6;49538:31;49548:10;47863:1;49538:9;:31::i;:::-;:40;;;;:::i;:::-;49537:59;;49529:95;;;::::0;-1:-1:-1;;;49529:95:0;;18610:2:1;49529:95:0::1;::::0;::::1;18592:21:1::0;18649:2;18629:18;;;18622:30;18688:25;18668:18;;;18661:53;18731:18;;49529:95:0::1;18408:347:1::0;49529:95:0::1;49652:1;49643:6;:10;:45;;;;-1:-1:-1::0;49679:9:0::1;::::0;49670:18:::1;::::0;:6;:18:::1;:::i;:::-;49657:9;:31;49643:45;49635:74;;;::::0;-1:-1:-1;;;49635:74:0;;19719:2:1;49635:74:0::1;::::0;::::1;19701:21:1::0;19758:2;19738:18;;;19731:30;19797:18;19777;;;19770:46;19833:18;;49635:74:0::1;19517:340:1::0;49635:74:0::1;50557:27:::0;;;49738:10:::1;50557:27:::0;;;;13320:74:1;;;;13410:18;;;13403:34;;;50557:27:0;;;;;;;;;13293:18:1;;;;50557:27:0;;;50547:38;;;;;50603:10;;49720:61:::1;;;::::0;-1:-1:-1;;;49720:61:0;;27060:2:1;49720:61:0::1;::::0;::::1;27042:21:1::0;27099:2;27079:18;;;27072:30;27138:14;27118:18;;;27111:42;27170:18;;49720:61:0::1;26858:336:1::0;49720:61:0::1;49800:24;49812:5;49819:4;49800:11;:24::i;:::-;49792:51;;;::::0;-1:-1:-1;;;49792:51:0;;18267:2:1;49792:51:0::1;::::0;::::1;18249:21:1::0;18306:2;18286:18;;;18279:30;18345:16;18325:18;;;18318:44;18379:18;;49792:51:0::1;18065:338:1::0;49792:51:0::1;49863:18;::::0;;;:11:::1;:18;::::0;;;;;::::1;;49862:19;49854:50;;;::::0;-1:-1:-1;;;49854:50:0;;19372:2:1;49854:50:0::1;::::0;::::1;19354:21:1::0;19411:2;19391:18;;;19384:30;19450:20;19430:18;;;19423:48;19488:18;;49854:50:0::1;19170:342:1::0;49854:50:0::1;49959:12;;47909:4;49935:6;49923:9;;:18;;;;:::i;:::-;:32;;;;:::i;:::-;:48;;49915:74;;;::::0;-1:-1:-1;;;49915:74:0;;26021:2:1;49915:74:0::1;::::0;::::1;26003:21:1::0;26060:2;26040:18;;;26033:30;26099:15;26079:18;;;26072:43;26132:18;;49915:74:0::1;25819:337:1::0;49915:74:0::1;50032:12;;50022:6;50008:11;;:20;;;;:::i;:::-;:36;;50000:62;;;::::0;-1:-1:-1;;;50000:62:0;;26021:2:1;50000:62:0::1;::::0;::::1;26003:21:1::0;26060:2;26040:18;;;26033:30;26099:15;26079:18;;;26072:43;26132:18;;50000:62:0::1;25819:337:1::0;50000:62:0::1;50075:18;::::0;;;:11:::1;:18;::::0;;;;:25;;;::::1;50096:4;50075:25;::::0;;50111:9:::1;:19:::0;;50124:6;;50075:18;50111:19:::1;::::0;50124:6;;50111:19:::1;:::i;:::-;;;;;;;;50156:6;50141:11;;:21;;;;;;;:::i;:::-;;;;;;;;50173:39;50179:10;47863:1;50201:6;50173:39;;;;;;;;;;;::::0;:5:::1;:39::i;:::-;-1:-1:-1::0;;46334:1:0;47286:7;:22;-1:-1:-1;49250:970:0:o;50629:247::-;50557:27;;;-1:-1:-1;;;;;13338:55:1;;50557:27:0;;;;13320:74:1;;;;13410:18;;;13403:34;;;50557:27:0;;;;;;;;;13293:18:1;;;;50557:27:0;;;50547:38;;;;;50783:4;;50603:10;;50807:61;;;;;50844:24;50856:5;50863:4;50844:11;:24::i;:::-;50800:68;50629:247;-1:-1:-1;;;;;50629:247:0:o;21660:401::-;-1:-1:-1;;;;;21868:20:0;;16951:10;21868:20;;:60;;-1:-1:-1;21892:36:0;21909:4;16951:10;21420:168;:::i;21892:36::-;21846:151;;;;-1:-1:-1;;;21846:151:0;;18962:2:1;21846:151:0;;;18944:21:1;19001:2;18981:18;;;18974:30;19040:34;19020:18;;;19013:62;19111:11;19091:18;;;19084:39;19140:19;;21846:151:0;18760:405:1;21846:151:0;22008:45;22026:4;22032:2;22036;22040:6;22048:4;22008:17;:45::i;44247:192::-;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;-1:-1:-1;;;;;44336:22:0;::::1;44328:73;;;::::0;-1:-1:-1;;;44328:73:0;;17860:2:1;44328:73:0::1;::::0;::::1;17842:21:1::0;17899:2;17879:18;;;17872:30;17938:34;17918:18;;;17911:62;18009:8;17989:18;;;17982:36;18035:19;;44328:73:0::1;17658:402:1::0;44328:73:0::1;44412:19;44422:8;44412:9;:19::i;52892:94::-:0;43420:6;;-1:-1:-1;;;;;43420:6:0;16951:10;43567:23;43559:68;;;;-1:-1:-1;;;43559:68:0;;25312:2:1;43559:68:0;;;25294:21:1;;;25331:18;;;25324:30;25390:34;25370:18;;;25363:62;25442:18;;43559:68:0;25110:356:1;43559:68:0;52960:9:::1;:18:::0;52892:94::o;26140:88::-;26207:13;;;;:4;;:13;;;;;:::i;26629:599::-;-1:-1:-1;;;;;26787:21:0;;26779:67;;;;-1:-1:-1;;;26779:67:0;;28630:2:1;26779:67:0;;;28612:21:1;28669:2;28649:18;;;28642:30;28708:34;28688:18;;;28681:62;28779:3;28759:18;;;28752:31;28800:19;;26779:67:0;28428:397:1;26779:67:0;16951:10;26903:107;16951:10;26859:16;26946:7;26955:21;26973:2;26955:17;:21::i;:::-;26978:25;26996:6;26978:17;:25::i;26903:107::-;27023:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27023:22:0;;;;;;;;;:32;;27049:6;;27023:13;:32;;27049:6;;27023:32;:::i;:::-;;;;-1:-1:-1;;27071:57:0;;;29546:25:1;;;29602:2;29587:18;;29580:34;;;-1:-1:-1;;;;;27071:57:0;;;;27104:1;;27071:57;;;;;;29519:18:1;27071:57:0;;;;;;;27141:79;27172:8;27190:1;27194:7;27203:2;27207:6;27215:4;27141:30;:79::i;24222:1074::-;24449:7;:14;24435:3;:10;:28;24427:81;;;;-1:-1:-1;;;24427:81:0;;28221:2:1;24427:81:0;;;28203:21:1;28260:2;28240:18;;;28233:30;28299:34;28279:18;;;28272:62;28370:10;28350:18;;;28343:38;28398:19;;24427:81:0;28019:404:1;24427:81:0;-1:-1:-1;;;;;24527:16:0;;24519:66;;;;-1:-1:-1;;;24519:66:0;;21166:2:1;24519:66:0;;;21148:21:1;21205:2;21185:18;;;21178:30;21244:34;21224:18;;;21217:62;21315:7;21295:18;;;21288:35;21340:19;;24519:66:0;20964:401:1;24519:66:0;16951:10;24598:16;24715:421;24739:3;:10;24735:1;:14;24715:421;;;24771:10;24784:3;24788:1;24784:6;;;;;;;;:::i;:::-;;;;;;;24771:19;;24805:14;24822:7;24830:1;24822:10;;;;;;;;:::i;:::-;;;;;;;;;;;;24849:19;24871:13;;;:9;:13;;;;;;-1:-1:-1;;;;;24871:19:0;;;;;;;;;;;;24822:10;;-1:-1:-1;24913:21:0;;;;24905:76;;;;-1:-1:-1;;;24905:76:0;;24554:2:1;24905:76:0;;;24536:21:1;24593:2;24573:18;;;24566:30;24632:34;24612:18;;;24605:62;24703:12;24683:18;;;24676:40;24733:19;;24905:76:0;24352:406:1;24905:76:0;25025:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;25025:19:0;;;;;;;;;;25047:20;;;25025:42;;25097:17;;;;;;;:27;;25047:20;;25025:13;25097:27;;25047:20;;25097:27;:::i;:::-;;;;;;;;24756:380;;;24751:3;;;;:::i;:::-;;;24715:421;;;;25183:2;-1:-1:-1;;;;;25153:47:0;25177:4;-1:-1:-1;;;;;25153:47:0;25167:8;-1:-1:-1;;;;;25153:47:0;;25187:3;25192:7;25153:47;;;;;;;:::i;:::-;;;;;;;;25213:75;25249:8;25259:4;25265:2;25269:3;25274:7;25283:4;25213:35;:75::i;:::-;24416:880;24222:1074;;;;;:::o;44447:173::-;44522:6;;;-1:-1:-1;;;;;44539:17:0;;;;;;;;;;;44572:40;;44522:6;;;44539:17;44522:6;;44572:40;;44503:16;;44572:40;44492:128;44447:173;:::o;50228:194::-;50310:4;50352:62;50366:35;50395:5;41727:58;;10335:66:1;41727:58:0;;;10323:79:1;10418:12;;;10411:28;;;41594:7:0;;10455:12:1;;41727:58:0;;;;;;;;;;;;41717:69;;;;;;41710:76;;41525:269;;;;50366:35;50403:10;50352:13;:62::i;:::-;50334:14;;-1:-1:-1;;;;;50334:80:0;;;:14;;:80;;50228:194;-1:-1:-1;;;50228:194:0:o;23044:820::-;-1:-1:-1;;;;;23232:16:0;;23224:66;;;;-1:-1:-1;;;23224:66:0;;21166:2:1;23224:66:0;;;21148:21:1;21205:2;21185:18;;;21178:30;21244:34;21224:18;;;21217:62;21315:7;21295:18;;;21288:35;21340:19;;23224:66:0;20964:401:1;23224:66:0;16951:10;23347:96;16951:10;23378:4;23384:2;23388:21;23406:2;23388:17;:21::i;23347:96::-;23456:19;23478:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;23478:19:0;;;;;;;;;;23516:21;;;;23508:76;;;;-1:-1:-1;;;23508:76:0;;24554:2:1;23508:76:0;;;24536:21:1;24593:2;24573:18;;;24566:30;24632:34;24612:18;;;24605:62;24703:12;24683:18;;;24676:40;24733:19;;23508:76:0;24352:406:1;23508:76:0;23620:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;23620:19:0;;;;;;;;;;23642:20;;;23620:42;;23684:17;;;;;;;:27;;23642:20;;23620:13;23684:27;;23642:20;;23684:27;:::i;:::-;;;;-1:-1:-1;;23729:46:0;;;29546:25:1;;;29602:2;29587:18;;29580:34;;;-1:-1:-1;;;;;23729:46:0;;;;;;;;;;;;;;29519:18:1;23729:46:0;;;;;;;23788:68;23819:8;23829:4;23835:2;23839;23843:6;23851:4;23788:30;:68::i;:::-;23213:651;;23044:820;;;;;:::o;33132:198::-;33252:16;;;33266:1;33252:16;;;;;;;;;33198;;33227:22;;33252:16;;;;;;;;;;;;-1:-1:-1;33252:16:0;33227:41;;33290:7;33279:5;33285:1;33279:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;33317:5;33132:198;-1:-1:-1;;33132:198:0:o;31559:744::-;-1:-1:-1;;;;;31774:13:0;;9234:20;9282:8;31770:526;;31810:72;;;;;-1:-1:-1;;;;;31810:38:0;;;;;:72;;31849:8;;31859:4;;31865:2;;31869:6;;31877:4;;31810:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31810:72:0;;;;;;;;-1:-1:-1;;31810:72:0;;;;;;;;;;;;:::i;:::-;;;31806:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;32158:6;32151:14;;-1:-1:-1;;;32151:14:0;;;;;;;;:::i;31806:479::-;;;32207:62;;-1:-1:-1;;;32207:62:0;;15558:2:1;32207:62:0;;;15540:21:1;15597:2;15577:18;;;15570:30;15636:34;15616:18;;;15609:62;15707:22;15687:18;;;15680:50;15747:19;;32207:62:0;15356:416:1;31806:479:0;31932:55;;;31944:43;31932:55;31928:154;;32012:50;;-1:-1:-1;;;32012:50:0;;15979:2:1;32012:50:0;;;15961:21:1;16018:2;15998:18;;;15991:30;16057:34;16037:18;;;16030:62;16128:10;16108:18;;;16101:38;16156:19;;32012:50:0;15777:404:1;32311:813:0;-1:-1:-1;;;;;32551:13:0;;9234:20;9282:8;32547:570;;32587:79;;;;;-1:-1:-1;;;;;32587:43:0;;;;;:79;;32631:8;;32641:4;;32647:3;;32652:7;;32661:4;;32587:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32587:79:0;;;;;;;;-1:-1:-1;;32587:79:0;;;;;;;;;;;;:::i;:::-;;;32583:523;;;;:::i;:::-;32748:60;;;32760:48;32748:60;32744:159;;32833:50;;-1:-1:-1;;;32833:50:0;;15979:2:1;32833:50:0;;;15961:21:1;16018:2;15998:18;;;15991:30;16057:34;16037:18;;;16030:62;16128:10;16108:18;;;16101:38;16156:19;;32833:50:0;15777:404:1;37676:231:0;37754:7;37775:17;37794:18;37816:27;37827:4;37833:9;37816:10;:27::i;:::-;37774:69;;;;37854:18;37866:5;37854:11;:18::i;35566:1308::-;35647:7;35656:12;35881:9;:16;35901:2;35881:22;35877:990;;;36177:4;36162:20;;36156:27;36227:4;36212:20;;36206:27;36285:4;36270:20;;36264:27;35920:9;36256:36;36328:25;36339:4;36256:36;36156:27;36206;36328:10;:25::i;:::-;36321:32;;;;;;;;;35877:990;36375:9;:16;36395:2;36375:22;36371:496;;;36650:4;36635:20;;36629:27;36701:4;36686:20;;36680:27;36743:23;36754:4;36629:27;36680;36743:10;:23::i;:::-;36736:30;;;;;;;;36371:496;-1:-1:-1;36815:1:0;;-1:-1:-1;36819:35:0;36371:496;35566:1308;;;;;:::o;33837:643::-;33915:20;33906:5;:29;;;;;;;;:::i;:::-;;33902:571;;;33837:643;:::o;33902:571::-;34013:29;34004:5;:38;;;;;;;;:::i;:::-;;34000:473;;;34059:34;;-1:-1:-1;;;34059:34:0;;15205:2:1;34059:34:0;;;15187:21:1;15244:2;15224:18;;;15217:30;15283:26;15263:18;;;15256:54;15327:18;;34059:34:0;15003:348:1;34000:473:0;34124:35;34115:5;:44;;;;;;;;:::i;:::-;;34111:362;;;34176:41;;-1:-1:-1;;;34176:41:0;;16737:2:1;34176:41:0;;;16719:21:1;16776:2;16756:18;;;16749:30;16815:33;16795:18;;;16788:61;16866:18;;34176:41:0;16535:355:1;34111:362:0;34248:30;34239:5;:39;;;;;;;;:::i;:::-;;34235:238;;;34295:44;;-1:-1:-1;;;34295:44:0;;20416:2:1;34295:44:0;;;20398:21:1;20455:2;20435:18;;;20428:30;20494:34;20474:18;;;20467:62;20565:4;20545:18;;;20538:32;20587:19;;34295:44:0;20214:398:1;34235:238:0;34370:30;34361:5;:39;;;;;;;;:::i;:::-;;34357:116;;;34417:44;;-1:-1:-1;;;34417:44:0;;23095:2:1;34417:44:0;;;23077:21:1;23134:2;23114:18;;;23107:30;23173:34;23153:18;;;23146:62;23244:4;23224:18;;;23217:32;23266:19;;34417:44:0;22893:398:1;39175:1632:0;39306:7;;40240:66;40227:79;;40223:163;;;-1:-1:-1;40339:1:0;;-1:-1:-1;40343:30:0;40323:51;;40223:163;40400:1;:7;;40405:2;40400:7;;:18;;;;;40411:1;:7;;40416:2;40411:7;;40400:18;40396:102;;;-1:-1:-1;40451:1:0;;-1:-1:-1;40455:30:0;40435:51;;40396:102;40612:24;;;40595:14;40612:24;;;;;;;;;14603:25:1;;;14676:4;14664:17;;14644:18;;;14637:45;;;;14698:18;;;14691:34;;;14741:18;;;14734:34;;;40612:24:0;;14575:19:1;;40612:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40612:24:0;;-1:-1:-1;;40612:24:0;;;-1:-1:-1;;;;;;;40651:20:0;;40647:103;;40704:1;40708:29;40688:50;;;;;;;40647:103;40770:6;-1:-1:-1;40778:20:0;;-1:-1:-1;39175:1632:0;;;;;;;;:::o;38170:391::-;38284:7;;38393:66;38385:75;;38487:3;38483:12;;;38497:2;38479:21;38528:25;38539:4;38479:21;38548:1;38385:75;38528:10;:25::i;:::-;38521:32;;;;;;38170:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:527:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:128;317:4;-1:-1:-1;;243:2:1;235:6;231:15;227:88;223:99;215:6;195:128;:::i;:::-;341:6;332:15;;371:6;363;356:22;411:3;402:6;397:3;393:16;390:25;387:45;;;428:1;425;418:12;387:45;478:6;473:3;466:4;458:6;454:17;441:44;533:1;526:4;517:6;509;505:19;501:30;494:41;;14:527;;;;;:::o;546:735::-;600:5;653:3;646:4;638:6;634:17;630:27;620:55;;671:1;668;661:12;620:55;707:6;694:20;733:4;756:43;796:2;756:43;:::i;:::-;828:2;822:9;840:31;868:2;860:6;840:31;:::i;:::-;906:18;;;940:15;;;;-1:-1:-1;975:15:1;;;1025:1;1021:10;;;1009:23;;1005:32;;1002:41;-1:-1:-1;999:61:1;;;1056:1;1053;1046:12;999:61;1078:1;1088:163;1102:2;1099:1;1096:9;1088:163;;;1159:17;;1147:30;;1197:12;;;;1229;;;;1120:1;1113:9;1088:163;;;-1:-1:-1;1269:6:1;;546:735;-1:-1:-1;;;;;;;546:735:1:o;1286:220::-;1328:5;1381:3;1374:4;1366:6;1362:17;1358:27;1348:55;;1399:1;1396;1389:12;1348:55;1421:79;1496:3;1487:6;1474:20;1467:4;1459:6;1455:17;1421:79;:::i;:::-;1412:88;1286:220;-1:-1:-1;;;1286:220:1:o;1511:247::-;1570:6;1623:2;1611:9;1602:7;1598:23;1594:32;1591:52;;;1639:1;1636;1629:12;1591:52;1678:9;1665:23;1697:31;1722:5;1697:31;:::i;2023:388::-;2091:6;2099;2152:2;2140:9;2131:7;2127:23;2123:32;2120:52;;;2168:1;2165;2158:12;2120:52;2207:9;2194:23;2226:31;2251:5;2226:31;:::i;:::-;2276:5;-1:-1:-1;2333:2:1;2318:18;;2305:32;2346:33;2305:32;2346:33;:::i;:::-;2398:7;2388:17;;;2023:388;;;;;:::o;2416:1071::-;2570:6;2578;2586;2594;2602;2655:3;2643:9;2634:7;2630:23;2626:33;2623:53;;;2672:1;2669;2662:12;2623:53;2711:9;2698:23;2730:31;2755:5;2730:31;:::i;:::-;2780:5;-1:-1:-1;2837:2:1;2822:18;;2809:32;2850:33;2809:32;2850:33;:::i;:::-;2902:7;-1:-1:-1;2960:2:1;2945:18;;2932:32;2983:18;3013:14;;;3010:34;;;3040:1;3037;3030:12;3010:34;3063:61;3116:7;3107:6;3096:9;3092:22;3063:61;:::i;:::-;3053:71;;3177:2;3166:9;3162:18;3149:32;3133:48;;3206:2;3196:8;3193:16;3190:36;;;3222:1;3219;3212:12;3190:36;3245:63;3300:7;3289:8;3278:9;3274:24;3245:63;:::i;:::-;3235:73;;3361:3;3350:9;3346:19;3333:33;3317:49;;3391:2;3381:8;3378:16;3375:36;;;3407:1;3404;3397:12;3375:36;;3430:51;3473:7;3462:8;3451:9;3447:24;3430:51;:::i;:::-;3420:61;;;2416:1071;;;;;;;;:::o;3492:734::-;3596:6;3604;3612;3620;3628;3681:3;3669:9;3660:7;3656:23;3652:33;3649:53;;;3698:1;3695;3688:12;3649:53;3737:9;3724:23;3756:31;3781:5;3756:31;:::i;:::-;3806:5;-1:-1:-1;3863:2:1;3848:18;;3835:32;3876:33;3835:32;3876:33;:::i;:::-;3928:7;-1:-1:-1;3982:2:1;3967:18;;3954:32;;-1:-1:-1;4033:2:1;4018:18;;4005:32;;-1:-1:-1;4088:3:1;4073:19;;4060:33;4116:18;4105:30;;4102:50;;;4148:1;4145;4138:12;4102:50;4171:49;4212:7;4203:6;4192:9;4188:22;4171:49;:::i;4231:382::-;4296:6;4304;4357:2;4345:9;4336:7;4332:23;4328:32;4325:52;;;4373:1;4370;4363:12;4325:52;4412:9;4399:23;4431:31;4456:5;4431:31;:::i;:::-;4481:5;-1:-1:-1;4538:2:1;4523:18;;4510:32;4551:30;4510:32;4551:30;:::i;4618:315::-;4686:6;4694;4747:2;4735:9;4726:7;4722:23;4718:32;4715:52;;;4763:1;4760;4753:12;4715:52;4802:9;4789:23;4821:31;4846:5;4821:31;:::i;:::-;4871:5;4923:2;4908:18;;;;4895:32;;-1:-1:-1;;;4618:315:1:o;4938:592::-;5033:6;5041;5049;5057;5110:3;5098:9;5089:7;5085:23;5081:33;5078:53;;;5127:1;5124;5117:12;5078:53;5166:9;5153:23;5185:31;5210:5;5185:31;:::i;:::-;5235:5;-1:-1:-1;5287:2:1;5272:18;;5259:32;;-1:-1:-1;5338:2:1;5323:18;;5310:32;;-1:-1:-1;5393:2:1;5378:18;;5365:32;5420:18;5409:30;;5406:50;;;5452:1;5449;5442:12;5406:50;5475:49;5516:7;5507:6;5496:9;5492:22;5475:49;:::i;:::-;5465:59;;;4938:592;;;;;;;:::o;5535:1288::-;5653:6;5661;5714:2;5702:9;5693:7;5689:23;5685:32;5682:52;;;5730:1;5727;5720:12;5682:52;5770:9;5757:23;5799:18;5840:2;5832:6;5829:14;5826:34;;;5856:1;5853;5846:12;5826:34;5894:6;5883:9;5879:22;5869:32;;5939:7;5932:4;5928:2;5924:13;5920:27;5910:55;;5961:1;5958;5951:12;5910:55;5997:2;5984:16;6019:4;6042:43;6082:2;6042:43;:::i;:::-;6114:2;6108:9;6126:31;6154:2;6146:6;6126:31;:::i;:::-;6192:18;;;6226:15;;;;-1:-1:-1;6261:11:1;;;6303:1;6299:10;;;6291:19;;6287:28;;6284:41;-1:-1:-1;6281:61:1;;;6338:1;6335;6328:12;6281:61;6360:1;6351:10;;6370:238;6384:2;6381:1;6378:9;6370:238;;;6455:3;6442:17;6472:31;6497:5;6472:31;:::i;:::-;6516:18;;6402:1;6395:9;;;;;6554:12;;;;6586;;6370:238;;;-1:-1:-1;6627:6:1;-1:-1:-1;;6671:18:1;;6658:32;;-1:-1:-1;;6702:16:1;;;6699:36;;;6731:1;6728;6721:12;6699:36;;6754:63;6809:7;6798:8;6787:9;6783:24;6754:63;:::i;:::-;6744:73;;;5535:1288;;;;;:::o;6828:241::-;6884:6;6937:2;6925:9;6916:7;6912:23;6908:32;6905:52;;;6953:1;6950;6943:12;6905:52;6992:9;6979:23;7011:28;7033:5;7011:28;:::i;7074:245::-;7141:6;7194:2;7182:9;7173:7;7169:23;7165:32;7162:52;;;7210:1;7207;7200:12;7162:52;7242:9;7236:16;7261:28;7283:5;7261:28;:::i;7324:245::-;7382:6;7435:2;7423:9;7414:7;7410:23;7406:32;7403:52;;;7451:1;7448;7441:12;7403:52;7490:9;7477:23;7509:30;7533:5;7509:30;:::i;7574:249::-;7643:6;7696:2;7684:9;7675:7;7671:23;7667:32;7664:52;;;7712:1;7709;7702:12;7664:52;7744:9;7738:16;7763:30;7787:5;7763:30;:::i;7828:450::-;7897:6;7950:2;7938:9;7929:7;7925:23;7921:32;7918:52;;;7966:1;7963;7956:12;7918:52;8006:9;7993:23;8039:18;8031:6;8028:30;8025:50;;;8071:1;8068;8061:12;8025:50;8094:22;;8147:4;8139:13;;8135:27;-1:-1:-1;8125:55:1;;8176:1;8173;8166:12;8125:55;8199:73;8264:7;8259:2;8246:16;8241:2;8237;8233:11;8199:73;:::i;:::-;8189:83;7828:450;-1:-1:-1;;;;7828:450:1:o;8283:180::-;8342:6;8395:2;8383:9;8374:7;8370:23;8366:32;8363:52;;;8411:1;8408;8401:12;8363:52;-1:-1:-1;8434:23:1;;8283:180;-1:-1:-1;8283:180:1:o;8468:184::-;8538:6;8591:2;8579:9;8570:7;8566:23;8562:32;8559:52;;;8607:1;8604;8597:12;8559:52;-1:-1:-1;8630:16:1;;8468:184;-1:-1:-1;8468:184:1:o;8657:456::-;8743:6;8751;8759;8812:2;8800:9;8791:7;8787:23;8783:32;8780:52;;;8828:1;8825;8818:12;8780:52;8864:9;8851:23;8841:33;;8921:2;8910:9;8906:18;8893:32;8883:42;;8976:2;8965:9;8961:18;8948:32;9003:18;8995:6;8992:30;8989:50;;;9035:1;9032;9025:12;8989:50;9058:49;9099:7;9090:6;9079:9;9075:22;9058:49;:::i;:::-;9048:59;;;8657:456;;;;;:::o;9118:435::-;9171:3;9209:5;9203:12;9236:6;9231:3;9224:19;9262:4;9291:2;9286:3;9282:12;9275:19;;9328:2;9321:5;9317:14;9349:1;9359:169;9373:6;9370:1;9367:13;9359:169;;;9434:13;;9422:26;;9468:12;;;;9503:15;;;;9395:1;9388:9;9359:169;;;-1:-1:-1;9544:3:1;;9118:435;-1:-1:-1;;;;;9118:435:1:o;9558:530::-;9599:3;9637:5;9631:12;9664:6;9659:3;9652:19;9689:1;9699:162;9713:6;9710:1;9707:13;9699:162;;;9775:4;9831:13;;;9827:22;;9821:29;9803:11;;;9799:20;;9792:59;9728:12;9699:162;;;9879:6;9876:1;9873:13;9870:87;;;9945:1;9938:4;9929:6;9924:3;9920:16;9916:27;9909:38;9870:87;-1:-1:-1;10002:2:1;9990:15;-1:-1:-1;;9986:88:1;9977:98;;;;10077:4;9973:109;;9558:530;-1:-1:-1;;9558:530:1:o;11041:849::-;11363:4;-1:-1:-1;;;;;11473:2:1;11465:6;11461:15;11450:9;11443:34;11525:2;11517:6;11513:15;11508:2;11497:9;11493:18;11486:43;;11565:3;11560:2;11549:9;11545:18;11538:31;11592:57;11644:3;11633:9;11629:19;11621:6;11592:57;:::i;:::-;11697:9;11689:6;11685:22;11680:2;11669:9;11665:18;11658:50;11731:44;11768:6;11760;11731:44;:::i;:::-;11717:58;;11824:9;11816:6;11812:22;11806:3;11795:9;11791:19;11784:51;11852:32;11877:6;11869;11852:32;:::i;:::-;11844:40;11041:849;-1:-1:-1;;;;;;;;11041:849:1:o;12558:583::-;12780:4;-1:-1:-1;;;;;12890:2:1;12882:6;12878:15;12867:9;12860:34;12942:2;12934:6;12930:15;12925:2;12914:9;12910:18;12903:43;;12982:6;12977:2;12966:9;12962:18;12955:34;13025:6;13020:2;13009:9;13005:18;12998:34;13069:3;13063;13052:9;13048:19;13041:32;13090:45;13130:3;13119:9;13115:19;13107:6;13090:45;:::i;:::-;13082:53;12558:583;-1:-1:-1;;;;;;;12558:583:1:o;13448:261::-;13627:2;13616:9;13609:21;13590:4;13647:56;13699:2;13688:9;13684:18;13676:6;13647:56;:::i;13714:465::-;13971:2;13960:9;13953:21;13934:4;13997:56;14049:2;14038:9;14034:18;14026:6;13997:56;:::i;:::-;14101:9;14093:6;14089:22;14084:2;14073:9;14069:18;14062:50;14129:44;14166:6;14158;14129:44;:::i;14779:219::-;14928:2;14917:9;14910:21;14891:4;14948:44;14988:2;14977:9;14973:18;14965:6;14948:44;:::i;29625:183::-;29685:4;29718:18;29710:6;29707:30;29704:56;;;29740:18;;:::i;:::-;-1:-1:-1;29785:1:1;29781:14;29797:4;29777:25;;29625:183::o;29813:128::-;29853:3;29884:1;29880:6;29877:1;29874:13;29871:39;;;29890:18;;:::i;:::-;-1:-1:-1;29926:9:1;;29813:128::o;29946:228::-;29986:7;30112:1;30044:66;30040:74;30037:1;30034:81;30029:1;30022:9;30015:17;30011:105;30008:131;;;30119:18;;:::i;:::-;-1:-1:-1;30159:9:1;;29946:228::o;30179:437::-;30258:1;30254:12;;;;30301;;;30322:61;;30376:4;30368:6;30364:17;30354:27;;30322:61;30429:2;30421:6;30418:14;30398:18;30395:38;30392:218;;;30466:77;30463:1;30456:88;30567:4;30564:1;30557:15;30595:4;30592:1;30585:15;30392:218;;30179:437;;;:::o;30621:308::-;-1:-1:-1;;30722:2:1;30716:4;30712:13;30708:86;30700:6;30696:99;30861:6;30849:10;30846:22;30825:18;30813:10;30810:34;30807:62;30804:88;;;30872:18;;:::i;:::-;30908:2;30901:22;-1:-1:-1;;30621:308:1:o;30934:195::-;30973:3;31004:66;30997:5;30994:77;30991:103;;;31074:18;;:::i;:::-;-1:-1:-1;31121:1:1;31110:13;;30934:195::o;31134:184::-;31186:77;31183:1;31176:88;31283:4;31280:1;31273:15;31307:4;31304:1;31297:15;31323:184;31375:77;31372:1;31365:88;31472:4;31469:1;31462:15;31496:4;31493:1;31486:15;31512:184;31564:77;31561:1;31554:88;31661:4;31658:1;31651:15;31685:4;31682:1;31675:15;31701:184;31753:77;31750:1;31743:88;31850:4;31847:1;31840:15;31874:4;31871:1;31864:15;31890:179;31925:3;31967:1;31949:16;31946:23;31943:120;;;32013:1;32010;32007;31992:23;-1:-1:-1;32050:1:1;32044:8;32039:3;32035:18;31943:120;31890:179;:::o;32074:731::-;32113:3;32155:4;32137:16;32134:26;32131:39;;;32074:731;:::o;32131:39::-;32197:2;32191:9;32219:66;32340:2;32322:16;32318:25;32315:1;32309:4;32294:50;32373:4;32367:11;32397:16;32432:18;32503:2;32496:4;32488:6;32484:17;32481:25;32476:2;32468:6;32465:14;32462:45;32459:58;;;32510:5;;;;;32074:731;:::o;32459:58::-;32547:6;32541:4;32537:17;32526:28;;32583:3;32577:10;32610:2;32602:6;32599:14;32596:27;;;32616:5;;;;;;32074:731;:::o;32596:27::-;32700:2;32681:16;32675:4;32671:27;32667:36;32660:4;32651:6;32646:3;32642:16;32638:27;32635:69;32632:82;;;32707:5;;;;;;32074:731;:::o;32632:82::-;32723:57;32774:4;32765:6;32757;32753:19;32749:30;32743:4;32723:57;:::i;:::-;-1:-1:-1;32796:3:1;;32074:731;-1:-1:-1;;;;;32074:731:1:o;32810:154::-;-1:-1:-1;;;;;32889:5:1;32885:54;32878:5;32875:65;32865:93;;32954:1;32951;32944:12;32969:118;33055:5;33048:13;33041:21;33034:5;33031:32;33021:60;;33077:1;33074;33067:12;33092:177;33177:66;33170:5;33166:78;33159:5;33156:89;33146:117;;33259:1;33256;33249:12

Swarm Source

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