ETH Price: $3,315.37 (-3.45%)
Gas: 20 Gwei

Token

Gator Raid (GTR)
 

Overview

Max Total Supply

4,253 GTR

Holders

895

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ryanindo.eth
Balance
2 GTR
0xA2A0A02B75BAD38a4ed423Ff56EB5787E52dFe62
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:
GatorRaidNft

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/gator_raid.sol


pragma solidity 0.8.11;



contract GatorRaidNft is ERC721, Ownable {
    string public baseURI;
    uint256 MAX_SUPPLY = 4223;
    uint256 MAX_FREE_SUPPLY = 445;
    uint256 MAX_RESERVED_SUPPLY = 223;
    uint256 tokenPrice = 0.05 ether;
    uint256 public totalFreeSupply = 0;
    uint256 totalPublicSupply = 0;
    uint256 totalReserved = 0;
    mapping (address => bool) hasUserFreeMinted; 
    mapping (address => uint256) userReserveCount; 
    address public treasury = 0x1958E5D7477ed777390e7034A9CC9719632838C3;
    bool public isMintingOn = false;
    uint256 MAX_MINT_COUNT = 8;
    uint256 MAX_FREE_MINT_COUNT = 2;

    constructor() ERC721("Gator Raid", "GTR") {
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(treasury).transfer(balance);
    }

    function setBaseURI(string memory base) external onlyOwner {
        baseURI = base;
    }

    function switchMintingStatus() external onlyOwner {
        isMintingOn = !isMintingOn;
    }

    function updateTreasury(address _treasury) external onlyOwner {
        treasury = _treasury;
    }

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

    function setReserve(address recipient, uint256 count) external onlyOwner {
     userReserveCount[recipient] = count;
    }

    function changePrice(uint256 price) external onlyOwner {
     tokenPrice = price;
    }



    // function mint(uint256 count) external payable {
    //     require(isMintingOn , "minting not started");
    //     require(count < MAX_MINT_COUNT, "Max Mint per Txn exceeded");
    //     require(totalPublicSupply + count < MAX_SUPPLY, "All testnets have already been minted!");
    //     require(tokenPrice * count == msg.value, "Insufficient / Incorrect Funds");
    //     for (uint256 i =0 ;i < count + 1 ; i++){
    //     _safeMint(msg.sender, totalPublicSupply + i);
    //     }
    //     totalPublicSupply += count;
    // }

    function mint(uint256 freeCount, uint256 paidCount) external payable {
        require(isMintingOn , "minting not started");
        uint256 count = freeCount + paidCount;
        // Total
        require(count < MAX_MINT_COUNT, "Max Mint per Txn exceeded");
        // Free
        require (hasUserFreeMinted[msg.sender] == false || freeCount == 0 , "user already free minted");
        require (freeCount < MAX_FREE_MINT_COUNT , "free mints exceed count");
        require(totalFreeSupply + freeCount < MAX_FREE_SUPPLY , "free mints exceed supply");
        // Paid
        require(tokenPrice * paidCount == msg.value, "Insufficient / Incorrect Funds");
        require (totalPublicSupply + count < MAX_SUPPLY ,"All testnets have already been minted!");

        for (uint256 i =1 ;i < count + 1 ; i++){
        _safeMint(msg.sender, totalPublicSupply + i);
        }
        totalFreeSupply +=freeCount;
        totalPublicSupply +=count;
        hasUserFreeMinted[msg.sender] = freeCount > 0 && hasUserFreeMinted[msg.sender] == false;
    }

    function giftMint(address recipient, uint256 count) external onlyOwner{
        require(totalReserved + count < MAX_RESERVED_SUPPLY, "All testnets have already been minted!");
       // i = 0 because max supply already has +1 
        for (uint256 i =1 ;i < count +1;i++){
        _safeMint(recipient, MAX_SUPPLY-1 +totalReserved + i);
        }
        totalReserved += count;
    }

    function reserveMint(uint256 count) external {
        require(count < userReserveCount[msg.sender], "Not enought testnets reserved!");
        require(totalReserved + count < MAX_RESERVED_SUPPLY, "All testnets have already been minted!");
        // i = 0 because max supply already has +1 
        for (uint256 i =1 ; i < count  +1; i++){
        _safeMint(msg.sender, MAX_SUPPLY -1 +totalReserved + i);
        }
        totalReserved += count;
        userReserveCount[msg.sender] -= count;
    }

    function totalSupply() external view returns (uint256) {
        return totalPublicSupply + totalReserved;
    }

    function isFreeMintOn() external view returns (bool) {
        return totalFreeSupply < MAX_FREE_SUPPLY;
    }

    function canUserFreeMint() external view returns (bool) {
        return totalFreeSupply + 1 < MAX_FREE_SUPPLY && hasUserFreeMinted[msg.sender] != true;
    }

    function tokenURI(uint256 tokenId) public view virtual override(ERC721) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId) internal override(ERC721) {
        super._burn(tokenId);
    }

    function burnMany(uint256 startTokenId , uint256 endTokenId) public onlyOwner {
       for (uint256 i =startTokenId ;i < endTokenId ; i++){ 
        _burn(i);
       }
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTokenId","type":"uint256"},{"internalType":"uint256","name":"endTokenId","type":"uint256"}],"name":"burnMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canUserFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintingOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeCount","type":"uint256"},{"internalType":"uint256","name":"paidCount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setReserve","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":"switchMintingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"updateTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261107f60089081556101bd60095560df600a5566b1a2bc2ec50000600b556000600c819055600d819055600e55601180546001600160a81b031916731958e5d7477ed777390e7034a9cc9719632838c317905560125560026013553480156200006c57600080fd5b50604080518082018252600a81526911d85d1bdc8814985a5960b21b60208083019182528351808501909452600384526223aa2960e91b908401528151919291620000ba9160009162000149565b508051620000d090600190602084019062000149565b505050620000ed620000e7620000f360201b60201c565b620000f7565b6200022c565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015790620001ef565b90600052602060002090601f0160209004810192826200017b5760008555620001c6565b82601f106200019657805160ff1916838001178555620001c6565b82800160010185558215620001c6579182015b82811115620001c6578251825591602001919060010190620001a9565b50620001d4929150620001d8565b5090565b5b80821115620001d45760008155600101620001d9565b600181811c908216806200020457607f821691505b602082108114156200022657634e487b7160e01b600052602260045260246000fd5b50919050565b612759806200023c6000396000f3fe6080604052600436106101fe5760003560e01c80636bb28eed1161011d57806395d89b41116100b0578063b88d4fde1161007f578063e31db45111610064578063e31db451146105a1578063e985e9c5146105b6578063f2fde38b146105ff57600080fd5b8063b88d4fde14610561578063c87b56dd1461058157600080fd5b806395d89b41146104f3578063a1ca2a5714610508578063a22cb46514610521578063a2b40d191461054157600080fd5b806378250b63116100ec57806378250b63146104745780637f51bb1f1461049457806389383e04146104b45780638da5cb5b146104d557600080fd5b80636bb28eed146104155780636c0360eb1461042a57806370a082311461043f578063715018a61461045f57600080fd5b806323b872dd1161019557806355f804b31161016457806355f804b31461039557806361d027b3146103b55780636352211e146103d557806363d86928146103f557600080fd5b806323b872dd146103205780633ccfd60b1461034057806342842e0e1461035557806345bf9b151461037557600080fd5b8063095ea7b3116101d1578063095ea7b3146102b65780631342ff4c146102d857806318160ddd146102f85780631b2ef1ca1461030d57600080fd5b806301ffc9a714610203578063027c89771461023857806306fdde031461025c578063081812fc1461027e575b600080fd5b34801561020f57600080fd5b5061022361021e36600461226d565b61061f565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b5061024e600c5481565b60405190815260200161022f565b34801561026857600080fd5b50610271610630565b60405161022f91906122e2565b34801561028a57600080fd5b5061029e6102993660046122f5565b6106c2565b6040516001600160a01b03909116815260200161022f565b3480156102c257600080fd5b506102d66102d136600461232a565b61075c565b005b3480156102e457600080fd5b506102d66102f33660046122f5565b61088e565b34801561030457600080fd5b5061024e6109ef565b6102d661031b366004612354565b610a06565b34801561032c57600080fd5b506102d661033b366004612376565b610d4b565b34801561034c57600080fd5b506102d6610dd2565b34801561036157600080fd5b506102d6610370366004612376565b610e6a565b34801561038157600080fd5b506102d661039036600461232a565b610e85565b3480156103a157600080fd5b506102d66103b036600461243e565b610fa6565b3480156103c157600080fd5b5060115461029e906001600160a01b031681565b3480156103e157600080fd5b5061029e6103f03660046122f5565b611013565b34801561040157600080fd5b506102d6610410366004612354565b61109e565b34801561042157600080fd5b5061022361111d565b34801561043657600080fd5b50610271611157565b34801561044b57600080fd5b5061024e61045a366004612487565b6111e5565b34801561046b57600080fd5b506102d661127f565b34801561048057600080fd5b506102d661048f36600461232a565b6112e5565b3480156104a057600080fd5b506102d66104af366004612487565b61135b565b3480156104c057600080fd5b5060115461022390600160a01b900460ff1681565b3480156104e157600080fd5b506006546001600160a01b031661029e565b3480156104ff57600080fd5b506102716113d7565b34801561051457600080fd5b50600954600c5410610223565b34801561052d57600080fd5b506102d661053c3660046124a2565b6113e6565b34801561054d57600080fd5b506102d661055c3660046122f5565b6113f1565b34801561056d57600080fd5b506102d661057c3660046124de565b611450565b34801561058d57600080fd5b5061027161059c3660046122f5565b6114de565b3480156105ad57600080fd5b506102d66114e9565b3480156105c257600080fd5b506102236105d136600461255a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060b57600080fd5b506102d661061a366004612487565b61157f565b600061062a82611661565b92915050565b60606000805461063f9061258d565b80601f016020809104026020016040519081016040528092919081815260200182805461066b9061258d565b80156106b85780601f1061068d576101008083540402835291602001916106b8565b820191906000526020600020905b81548152906001019060200180831161069b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076782611013565b9050806001600160a01b0316836001600160a01b031614156107f15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610737565b336001600160a01b038216148061080d575061080d81336105d1565b61087f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610737565b61088983836116fc565b505050565b3360009081526010602052604090205481106108ec5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567687420746573746e6574732072657365727665642100006044820152606401610737565b600a5481600e546108fd91906125de565b106109595760405162461bcd60e51b815260206004820152602660248201527f416c6c20746573746e657473206861766520616c7265616479206265656e206d604482015265696e7465642160d01b6064820152608401610737565b60015b6109678260016125de565b8110156109b05761099e3382600e54600160085461098591906125f6565b61098f91906125de565b61099991906125de565b61176a565b806109a88161260d565b91505061095c565b5080600e60008282546109c391906125de565b909155505033600090815260106020526040812080548392906109e79084906125f6565b909155505050565b6000600e54600d54610a0191906125de565b905090565b601154600160a01b900460ff16610a5f5760405162461bcd60e51b815260206004820152601360248201527f6d696e74696e67206e6f742073746172746564000000000000000000000000006044820152606401610737565b6000610a6b82846125de565b90506012548110610abe5760405162461bcd60e51b815260206004820152601960248201527f4d6178204d696e74207065722054786e206578636565646564000000000000006044820152606401610737565b336000908152600f602052604090205460ff161580610adb575082155b610b275760405162461bcd60e51b815260206004820152601860248201527f7573657220616c72656164792066726565206d696e74656400000000000000006044820152606401610737565b6013548310610b785760405162461bcd60e51b815260206004820152601760248201527f66726565206d696e74732065786365656420636f756e740000000000000000006044820152606401610737565b60095483600c54610b8991906125de565b10610bd65760405162461bcd60e51b815260206004820152601860248201527f66726565206d696e74732065786365656420737570706c7900000000000000006044820152606401610737565b3482600b54610be59190612628565b14610c325760405162461bcd60e51b815260206004820152601e60248201527f496e73756666696369656e74202f20496e636f72726563742046756e647300006044820152606401610737565b60085481600d54610c4391906125de565b10610c9f5760405162461bcd60e51b815260206004820152602660248201527f416c6c20746573746e657473206861766520616c7265616479206265656e206d604482015265696e7465642160d01b6064820152608401610737565b60015b610cad8260016125de565b811015610cd857610cc63382600d5461099991906125de565b80610cd08161260d565b915050610ca2565b5082600c6000828254610ceb91906125de565b9250508190555080600d6000828254610d0491906125de565b90915550508215801590610d285750336000908152600f602052604090205460ff16155b336000908152600f60205260409020805460ff1916911515919091179055505050565b610d553382611784565b610dc75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610737565b61088983838361187b565b6006546001600160a01b03163314610e2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b60115460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610e66573d6000803e3d6000fd5b5050565b61088983838360405180602001604052806000815250611450565b6006546001600160a01b03163314610edf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b600a5481600e54610ef091906125de565b10610f4c5760405162461bcd60e51b815260206004820152602660248201527f416c6c20746573746e657473206861766520616c7265616479206265656e206d604482015265696e7465642160d01b6064820152608401610737565b60015b610f5a8260016125de565b811015610f8a57610f788382600e54600160085461098591906125f6565b80610f828161260d565b915050610f4f565b5080600e6000828254610f9d91906125de565b90915550505050565b6006546001600160a01b031633146110005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b8051610e669060079060208401906121be565b6000818152600260205260408120546001600160a01b03168061062a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610737565b6006546001600160a01b031633146110f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b815b818110156108895761110b81611a48565b806111158161260d565b9150506110fa565b6000600954600c54600161113191906125de565b108015610a015750336000908152600f602052604090205460ff16151560011415905090565b600780546111649061258d565b80601f01602080910402602001604051908101604052809291908181526020018280546111909061258d565b80156111dd5780601f106111b2576101008083540402835291602001916111dd565b820191906000526020600020905b8154815290600101906020018083116111c057829003601f168201915b505050505081565b60006001600160a01b0382166112635760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610737565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b6112e36000611a51565b565b6006546001600160a01b0316331461133f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b6001600160a01b03909116600090815260106020526040902055565b6006546001600160a01b031633146113b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461063f9061258d565b610e66338383611aa3565b6006546001600160a01b0316331461144b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b600b55565b61145a3383611784565b6114cc5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610737565b6114d884848484611b72565b50505050565b606061062a82611bf0565b6006546001600160a01b031633146115435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b601180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b6006546001600160a01b031633146115d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b6001600160a01b0381166116555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610737565b61165e81611a51565b50565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806116c457506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061062a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461062a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061173182611013565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610e66828260405180602001604052806000815250611cd9565b6000818152600260205260408120546001600160a01b03166117fd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610737565b600061180883611013565b9050806001600160a01b0316846001600160a01b031614806118435750836001600160a01b0316611838846106c2565b6001600160a01b0316145b8061187357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661188e82611013565b6001600160a01b03161461190a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610737565b6001600160a01b0382166119855760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610737565b6119906000826116fc565b6001600160a01b03831660009081526003602052604081208054600192906119b99084906125f6565b90915550506001600160a01b03821660009081526003602052604081208054600192906119e79084906125de565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61165e81611d57565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611b055760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610737565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b7d84848461187b565b611b8984848484611df2565b6114d85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610737565b6000818152600260205260409020546060906001600160a01b0316611c7d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610737565b6000611c87611f3b565b90506000815111611ca75760405180602001604052806000815250611cd2565b80611cb184611f4a565b604051602001611cc2929190612647565b6040516020818303038152906040525b9392505050565b611ce3838361207c565b611cf06000848484611df2565b6108895760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610737565b6000611d6282611013565b9050611d6f6000836116fc565b6001600160a01b0381166000908152600360205260408120805460019290611d989084906125f6565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b15611f3057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e36903390899088908890600401612676565b6020604051808303816000875af1925050508015611e71575060408051601f3d908101601f19168201909252611e6e918101906126b2565b60015b611f16573d808015611e9f576040519150601f19603f3d011682016040523d82523d6000602084013e611ea4565b606091505b508051611f0e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610737565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611873565b506001949350505050565b60606007805461063f9061258d565b606081611f8a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fb45780611f9e8161260d565b9150611fad9050600a836126e5565b9150611f8e565b60008167ffffffffffffffff811115611fcf57611fcf6123b2565b6040519080825280601f01601f191660200182016040528015611ff9576020820181803683370190505b5090505b84156118735761200e6001836125f6565b915061201b600a866126f9565b6120269060306125de565b60f81b81838151811061203b5761203b61270d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612075600a866126e5565b9450611ffd565b6001600160a01b0382166120d25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610737565b6000818152600260205260409020546001600160a01b0316156121375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610737565b6001600160a01b03821660009081526003602052604081208054600192906121609084906125de565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121ca9061258d565b90600052602060002090601f0160209004810192826121ec5760008555612232565b82601f1061220557805160ff1916838001178555612232565b82800160010185558215612232579182015b82811115612232578251825591602001919060010190612217565b5061223e929150612242565b5090565b5b8082111561223e5760008155600101612243565b6001600160e01b03198116811461165e57600080fd5b60006020828403121561227f57600080fd5b8135611cd281612257565b60005b838110156122a557818101518382015260200161228d565b838111156114d85750506000910152565b600081518084526122ce81602086016020860161228a565b601f01601f19169290920160200192915050565b602081526000611cd260208301846122b6565b60006020828403121561230757600080fd5b5035919050565b80356001600160a01b038116811461232557600080fd5b919050565b6000806040838503121561233d57600080fd5b6123468361230e565b946020939093013593505050565b6000806040838503121561236757600080fd5b50508035926020909101359150565b60008060006060848603121561238b57600080fd5b6123948461230e565b92506123a26020850161230e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123e3576123e36123b2565b604051601f8501601f19908116603f0116810190828211818310171561240b5761240b6123b2565b8160405280935085815286868601111561242457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561245057600080fd5b813567ffffffffffffffff81111561246757600080fd5b8201601f8101841361247857600080fd5b611873848235602084016123c8565b60006020828403121561249957600080fd5b611cd28261230e565b600080604083850312156124b557600080fd5b6124be8361230e565b9150602083013580151581146124d357600080fd5b809150509250929050565b600080600080608085870312156124f457600080fd5b6124fd8561230e565b935061250b6020860161230e565b925060408501359150606085013567ffffffffffffffff81111561252e57600080fd5b8501601f8101871361253f57600080fd5b61254e878235602084016123c8565b91505092959194509250565b6000806040838503121561256d57600080fd5b6125768361230e565b91506125846020840161230e565b90509250929050565b600181811c908216806125a157607f821691505b602082108114156125c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156125f1576125f16125c8565b500190565b600082821015612608576126086125c8565b500390565b6000600019821415612621576126216125c8565b5060010190565b6000816000190483118215151615612642576126426125c8565b500290565b6000835161265981846020880161228a565b83519083019061266d81836020880161228a565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526126a860808301846122b6565b9695505050505050565b6000602082840312156126c457600080fd5b8151611cd281612257565b634e487b7160e01b600052601260045260246000fd5b6000826126f4576126f46126cf565b500490565b600082612708576127086126cf565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208ff10ee12aa95f97cf777d9cc0f1852877e7593a38928a0cac5e9662829819f964736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101fe5760003560e01c80636bb28eed1161011d57806395d89b41116100b0578063b88d4fde1161007f578063e31db45111610064578063e31db451146105a1578063e985e9c5146105b6578063f2fde38b146105ff57600080fd5b8063b88d4fde14610561578063c87b56dd1461058157600080fd5b806395d89b41146104f3578063a1ca2a5714610508578063a22cb46514610521578063a2b40d191461054157600080fd5b806378250b63116100ec57806378250b63146104745780637f51bb1f1461049457806389383e04146104b45780638da5cb5b146104d557600080fd5b80636bb28eed146104155780636c0360eb1461042a57806370a082311461043f578063715018a61461045f57600080fd5b806323b872dd1161019557806355f804b31161016457806355f804b31461039557806361d027b3146103b55780636352211e146103d557806363d86928146103f557600080fd5b806323b872dd146103205780633ccfd60b1461034057806342842e0e1461035557806345bf9b151461037557600080fd5b8063095ea7b3116101d1578063095ea7b3146102b65780631342ff4c146102d857806318160ddd146102f85780631b2ef1ca1461030d57600080fd5b806301ffc9a714610203578063027c89771461023857806306fdde031461025c578063081812fc1461027e575b600080fd5b34801561020f57600080fd5b5061022361021e36600461226d565b61061f565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b5061024e600c5481565b60405190815260200161022f565b34801561026857600080fd5b50610271610630565b60405161022f91906122e2565b34801561028a57600080fd5b5061029e6102993660046122f5565b6106c2565b6040516001600160a01b03909116815260200161022f565b3480156102c257600080fd5b506102d66102d136600461232a565b61075c565b005b3480156102e457600080fd5b506102d66102f33660046122f5565b61088e565b34801561030457600080fd5b5061024e6109ef565b6102d661031b366004612354565b610a06565b34801561032c57600080fd5b506102d661033b366004612376565b610d4b565b34801561034c57600080fd5b506102d6610dd2565b34801561036157600080fd5b506102d6610370366004612376565b610e6a565b34801561038157600080fd5b506102d661039036600461232a565b610e85565b3480156103a157600080fd5b506102d66103b036600461243e565b610fa6565b3480156103c157600080fd5b5060115461029e906001600160a01b031681565b3480156103e157600080fd5b5061029e6103f03660046122f5565b611013565b34801561040157600080fd5b506102d6610410366004612354565b61109e565b34801561042157600080fd5b5061022361111d565b34801561043657600080fd5b50610271611157565b34801561044b57600080fd5b5061024e61045a366004612487565b6111e5565b34801561046b57600080fd5b506102d661127f565b34801561048057600080fd5b506102d661048f36600461232a565b6112e5565b3480156104a057600080fd5b506102d66104af366004612487565b61135b565b3480156104c057600080fd5b5060115461022390600160a01b900460ff1681565b3480156104e157600080fd5b506006546001600160a01b031661029e565b3480156104ff57600080fd5b506102716113d7565b34801561051457600080fd5b50600954600c5410610223565b34801561052d57600080fd5b506102d661053c3660046124a2565b6113e6565b34801561054d57600080fd5b506102d661055c3660046122f5565b6113f1565b34801561056d57600080fd5b506102d661057c3660046124de565b611450565b34801561058d57600080fd5b5061027161059c3660046122f5565b6114de565b3480156105ad57600080fd5b506102d66114e9565b3480156105c257600080fd5b506102236105d136600461255a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060b57600080fd5b506102d661061a366004612487565b61157f565b600061062a82611661565b92915050565b60606000805461063f9061258d565b80601f016020809104026020016040519081016040528092919081815260200182805461066b9061258d565b80156106b85780601f1061068d576101008083540402835291602001916106b8565b820191906000526020600020905b81548152906001019060200180831161069b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076782611013565b9050806001600160a01b0316836001600160a01b031614156107f15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610737565b336001600160a01b038216148061080d575061080d81336105d1565b61087f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610737565b61088983836116fc565b505050565b3360009081526010602052604090205481106108ec5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567687420746573746e6574732072657365727665642100006044820152606401610737565b600a5481600e546108fd91906125de565b106109595760405162461bcd60e51b815260206004820152602660248201527f416c6c20746573746e657473206861766520616c7265616479206265656e206d604482015265696e7465642160d01b6064820152608401610737565b60015b6109678260016125de565b8110156109b05761099e3382600e54600160085461098591906125f6565b61098f91906125de565b61099991906125de565b61176a565b806109a88161260d565b91505061095c565b5080600e60008282546109c391906125de565b909155505033600090815260106020526040812080548392906109e79084906125f6565b909155505050565b6000600e54600d54610a0191906125de565b905090565b601154600160a01b900460ff16610a5f5760405162461bcd60e51b815260206004820152601360248201527f6d696e74696e67206e6f742073746172746564000000000000000000000000006044820152606401610737565b6000610a6b82846125de565b90506012548110610abe5760405162461bcd60e51b815260206004820152601960248201527f4d6178204d696e74207065722054786e206578636565646564000000000000006044820152606401610737565b336000908152600f602052604090205460ff161580610adb575082155b610b275760405162461bcd60e51b815260206004820152601860248201527f7573657220616c72656164792066726565206d696e74656400000000000000006044820152606401610737565b6013548310610b785760405162461bcd60e51b815260206004820152601760248201527f66726565206d696e74732065786365656420636f756e740000000000000000006044820152606401610737565b60095483600c54610b8991906125de565b10610bd65760405162461bcd60e51b815260206004820152601860248201527f66726565206d696e74732065786365656420737570706c7900000000000000006044820152606401610737565b3482600b54610be59190612628565b14610c325760405162461bcd60e51b815260206004820152601e60248201527f496e73756666696369656e74202f20496e636f72726563742046756e647300006044820152606401610737565b60085481600d54610c4391906125de565b10610c9f5760405162461bcd60e51b815260206004820152602660248201527f416c6c20746573746e657473206861766520616c7265616479206265656e206d604482015265696e7465642160d01b6064820152608401610737565b60015b610cad8260016125de565b811015610cd857610cc63382600d5461099991906125de565b80610cd08161260d565b915050610ca2565b5082600c6000828254610ceb91906125de565b9250508190555080600d6000828254610d0491906125de565b90915550508215801590610d285750336000908152600f602052604090205460ff16155b336000908152600f60205260409020805460ff1916911515919091179055505050565b610d553382611784565b610dc75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610737565b61088983838361187b565b6006546001600160a01b03163314610e2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b60115460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610e66573d6000803e3d6000fd5b5050565b61088983838360405180602001604052806000815250611450565b6006546001600160a01b03163314610edf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b600a5481600e54610ef091906125de565b10610f4c5760405162461bcd60e51b815260206004820152602660248201527f416c6c20746573746e657473206861766520616c7265616479206265656e206d604482015265696e7465642160d01b6064820152608401610737565b60015b610f5a8260016125de565b811015610f8a57610f788382600e54600160085461098591906125f6565b80610f828161260d565b915050610f4f565b5080600e6000828254610f9d91906125de565b90915550505050565b6006546001600160a01b031633146110005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b8051610e669060079060208401906121be565b6000818152600260205260408120546001600160a01b03168061062a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610737565b6006546001600160a01b031633146110f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b815b818110156108895761110b81611a48565b806111158161260d565b9150506110fa565b6000600954600c54600161113191906125de565b108015610a015750336000908152600f602052604090205460ff16151560011415905090565b600780546111649061258d565b80601f01602080910402602001604051908101604052809291908181526020018280546111909061258d565b80156111dd5780601f106111b2576101008083540402835291602001916111dd565b820191906000526020600020905b8154815290600101906020018083116111c057829003601f168201915b505050505081565b60006001600160a01b0382166112635760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610737565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b6112e36000611a51565b565b6006546001600160a01b0316331461133f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b6001600160a01b03909116600090815260106020526040902055565b6006546001600160a01b031633146113b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461063f9061258d565b610e66338383611aa3565b6006546001600160a01b0316331461144b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b600b55565b61145a3383611784565b6114cc5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610737565b6114d884848484611b72565b50505050565b606061062a82611bf0565b6006546001600160a01b031633146115435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b601180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff1615909102179055565b6006546001600160a01b031633146115d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610737565b6001600160a01b0381166116555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610737565b61165e81611a51565b50565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806116c457506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061062a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461062a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061173182611013565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610e66828260405180602001604052806000815250611cd9565b6000818152600260205260408120546001600160a01b03166117fd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610737565b600061180883611013565b9050806001600160a01b0316846001600160a01b031614806118435750836001600160a01b0316611838846106c2565b6001600160a01b0316145b8061187357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661188e82611013565b6001600160a01b03161461190a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610737565b6001600160a01b0382166119855760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610737565b6119906000826116fc565b6001600160a01b03831660009081526003602052604081208054600192906119b99084906125f6565b90915550506001600160a01b03821660009081526003602052604081208054600192906119e79084906125de565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61165e81611d57565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611b055760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610737565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b7d84848461187b565b611b8984848484611df2565b6114d85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610737565b6000818152600260205260409020546060906001600160a01b0316611c7d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610737565b6000611c87611f3b565b90506000815111611ca75760405180602001604052806000815250611cd2565b80611cb184611f4a565b604051602001611cc2929190612647565b6040516020818303038152906040525b9392505050565b611ce3838361207c565b611cf06000848484611df2565b6108895760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610737565b6000611d6282611013565b9050611d6f6000836116fc565b6001600160a01b0381166000908152600360205260408120805460019290611d989084906125f6565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160a01b0384163b15611f3057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e36903390899088908890600401612676565b6020604051808303816000875af1925050508015611e71575060408051601f3d908101601f19168201909252611e6e918101906126b2565b60015b611f16573d808015611e9f576040519150601f19603f3d011682016040523d82523d6000602084013e611ea4565b606091505b508051611f0e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610737565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611873565b506001949350505050565b60606007805461063f9061258d565b606081611f8a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fb45780611f9e8161260d565b9150611fad9050600a836126e5565b9150611f8e565b60008167ffffffffffffffff811115611fcf57611fcf6123b2565b6040519080825280601f01601f191660200182016040528015611ff9576020820181803683370190505b5090505b84156118735761200e6001836125f6565b915061201b600a866126f9565b6120269060306125de565b60f81b81838151811061203b5761203b61270d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612075600a866126e5565b9450611ffd565b6001600160a01b0382166120d25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610737565b6000818152600260205260409020546001600160a01b0316156121375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610737565b6001600160a01b03821660009081526003602052604081208054600192906121609084906125de565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121ca9061258d565b90600052602060002090601f0160209004810192826121ec5760008555612232565b82601f1061220557805160ff1916838001178555612232565b82800160010185558215612232579182015b82811115612232578251825591602001919060010190612217565b5061223e929150612242565b5090565b5b8082111561223e5760008155600101612243565b6001600160e01b03198116811461165e57600080fd5b60006020828403121561227f57600080fd5b8135611cd281612257565b60005b838110156122a557818101518382015260200161228d565b838111156114d85750506000910152565b600081518084526122ce81602086016020860161228a565b601f01601f19169290920160200192915050565b602081526000611cd260208301846122b6565b60006020828403121561230757600080fd5b5035919050565b80356001600160a01b038116811461232557600080fd5b919050565b6000806040838503121561233d57600080fd5b6123468361230e565b946020939093013593505050565b6000806040838503121561236757600080fd5b50508035926020909101359150565b60008060006060848603121561238b57600080fd5b6123948461230e565b92506123a26020850161230e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123e3576123e36123b2565b604051601f8501601f19908116603f0116810190828211818310171561240b5761240b6123b2565b8160405280935085815286868601111561242457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561245057600080fd5b813567ffffffffffffffff81111561246757600080fd5b8201601f8101841361247857600080fd5b611873848235602084016123c8565b60006020828403121561249957600080fd5b611cd28261230e565b600080604083850312156124b557600080fd5b6124be8361230e565b9150602083013580151581146124d357600080fd5b809150509250929050565b600080600080608085870312156124f457600080fd5b6124fd8561230e565b935061250b6020860161230e565b925060408501359150606085013567ffffffffffffffff81111561252e57600080fd5b8501601f8101871361253f57600080fd5b61254e878235602084016123c8565b91505092959194509250565b6000806040838503121561256d57600080fd5b6125768361230e565b91506125846020840161230e565b90509250929050565b600181811c908216806125a157607f821691505b602082108114156125c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156125f1576125f16125c8565b500190565b600082821015612608576126086125c8565b500390565b6000600019821415612621576126216125c8565b5060010190565b6000816000190483118215151615612642576126426125c8565b500290565b6000835161265981846020880161228a565b83519083019061266d81836020880161228a565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526126a860808301846122b6565b9695505050505050565b6000602082840312156126c457600080fd5b8151611cd281612257565b634e487b7160e01b600052601260045260246000fd5b6000826126f4576126f46126cf565b500490565b600082612708576127086126cf565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208ff10ee12aa95f97cf777d9cc0f1852877e7593a38928a0cac5e9662829819f964736f6c634300080b0033

Deployed Bytecode Sourcemap

37293:5213:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42350:153;;;;;;;;;;-1:-1:-1;42350:153:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;42350:153:0;;;;;;;;37515:34;;;;;;;;;;;;;;;;;;;784:25:1;;;772:2;757:18;37515:34:0;638:177:1;25054:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26613:221::-;;;;;;;;;;-1:-1:-1;26613:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1920:55:1;;;1902:74;;1890:2;1875:18;26613:221:0;1756:226:1;26136:411:0;;;;;;;;;;-1:-1:-1;26136:411:0;;;;;:::i;:::-;;:::i;:::-;;40809:509;;;;;;;;;;-1:-1:-1;40809:509:0;;;;;:::i;:::-;;:::i;41326:114::-;;;;;;;;;;;;;:::i;39340:1063::-;;;;;;:::i;:::-;;:::i;27363:339::-;;;;;;;;;;-1:-1:-1;27363:339:0;;;;;:::i;:::-;;:::i;37972:143::-;;;;;;;;;;;;;:::i;27773:185::-;;;;;;;;;;-1:-1:-1;27773:185:0;;;;;:::i;:::-;;:::i;40411:390::-;;;;;;;;;;-1:-1:-1;40411:390:0;;;;;:::i;:::-;;:::i;38123:92::-;;;;;;;;;;-1:-1:-1;38123:92:0;;;;;:::i;:::-;;:::i;37728:68::-;;;;;;;;;;-1:-1:-1;37728:68:0;;;;-1:-1:-1;;;;;37728:68:0;;;24748:239;;;;;;;;;;-1:-1:-1;24748:239:0;;;;;:::i;:::-;;:::i;42165:177::-;;;;;;;;;;-1:-1:-1;42165:177:0;;;;;:::i;:::-;;:::i;41568:160::-;;;;;;;;;;;;;:::i;37341:21::-;;;;;;;;;;;;;:::i;24478:208::-;;;;;;;;;;-1:-1:-1;24478:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;38551:124::-;;;;;;;;;;-1:-1:-1;38551:124:0;;;;;:::i;:::-;;:::i;38326:101::-;;;;;;;;;;-1:-1:-1;38326:101:0;;;;;:::i;:::-;;:::i;37803:31::-;;;;;;;;;;-1:-1:-1;37803:31:0;;;;-1:-1:-1;;;37803:31:0;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;25223:104;;;;;;;;;;;;;:::i;41448:112::-;;;;;;;;;;-1:-1:-1;41537:15:0;;41519;;:33;41448:112;;26906:155;;;;;;;;;;-1:-1:-1;26906:155:0;;;;;:::i;:::-;;:::i;38683:89::-;;;;;;;;;;-1:-1:-1;38683:89:0;;;;;:::i;:::-;;:::i;28029:328::-;;;;;;;;;;-1:-1:-1;28029:328:0;;;;;:::i;:::-;;:::i;41736:145::-;;;;;;;;;;-1:-1:-1;41736:145:0;;;;;:::i;:::-;;:::i;38223:95::-;;;;;;;;;;;;;:::i;27132:164::-;;;;;;;;;;-1:-1:-1;27132:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27253:25:0;;;27229:4;27253:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27132:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;42350:153::-;42435:4;42459:36;42483:11;42459:23;:36::i;:::-;42452:43;42350:153;-1:-1:-1;;42350:153:0:o;25054:100::-;25108:13;25141:5;25134:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25054:100;:::o;26613:221::-;26689:7;29956:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29956:16:0;26709:73;;;;-1:-1:-1;;;26709:73:0;;6439:2:1;26709:73:0;;;6421:21:1;6478:2;6458:18;;;6451:30;6517:34;6497:18;;;6490:62;-1:-1:-1;;;6568:18:1;;;6561:42;6620:19;;26709:73:0;;;;;;;;;-1:-1:-1;26802:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26802:24:0;;26613:221::o;26136:411::-;26217:13;26233:23;26248:7;26233:14;:23::i;:::-;26217:39;;26281:5;-1:-1:-1;;;;;26275:11:0;:2;-1:-1:-1;;;;;26275:11:0;;;26267:57;;;;-1:-1:-1;;;26267:57:0;;6852:2:1;26267:57:0;;;6834:21:1;6891:2;6871:18;;;6864:30;6930:34;6910:18;;;6903:62;7001:3;6981:18;;;6974:31;7022:19;;26267:57:0;6650:397:1;26267:57:0;2883:10;-1:-1:-1;;;;;26359:21:0;;;;:62;;-1:-1:-1;26384:37:0;26401:5;2883:10;27132:164;:::i;26384:37::-;26337:168;;;;-1:-1:-1;;;26337:168:0;;7254:2:1;26337:168:0;;;7236:21:1;7293:2;7273:18;;;7266:30;7332:34;7312:18;;;7305:62;7403:26;7383:18;;;7376:54;7447:19;;26337:168:0;7052:420:1;26337:168:0;26518:21;26527:2;26531:7;26518:8;:21::i;:::-;26206:341;26136:411;;:::o;40809:509::-;40898:10;40881:28;;;;:16;:28;;;;;;40873:36;;40865:79;;;;-1:-1:-1;;;40865:79:0;;7679:2:1;40865:79:0;;;7661:21:1;7718:2;7698:18;;;7691:30;7757:32;7737:18;;;7730:60;7807:18;;40865:79:0;7477:354:1;40865:79:0;40987:19;;40979:5;40963:13;;:21;;;;:::i;:::-;:43;40955:94;;;;-1:-1:-1;;;40955:94:0;;8360:2:1;40955:94:0;;;8342:21:1;8399:2;8379:18;;;8372:30;8438:34;8418:18;;;8411:62;-1:-1:-1;;;8489:18:1;;;8482:36;8535:19;;40955:94:0;8158:402:1;40955:94:0;41129:1;41113:117;41137:9;:5;41145:1;41137:9;:::i;:::-;41133:1;:13;41113:117;;;41163:55;41173:10;41216:1;41200:13;;41197:1;41185:10;;:13;;;;:::i;:::-;:28;;;;:::i;:::-;:32;;;;:::i;:::-;41163:9;:55::i;:::-;41148:3;;;;:::i;:::-;;;;41113:117;;;;41257:5;41240:13;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;41290:10:0;41273:28;;;;:16;:28;;;;;:37;;41305:5;;41273:28;:37;;41305:5;;41273:37;:::i;:::-;;;;-1:-1:-1;;;40809:509:0:o;41326:114::-;41372:7;41419:13;;41399:17;;:33;;;;:::i;:::-;41392:40;;41326:114;:::o;39340:1063::-;39428:11;;-1:-1:-1;;;39428:11:0;;;;39420:44;;;;-1:-1:-1;;;39420:44:0;;9037:2:1;39420:44:0;;;9019:21:1;9076:2;9056:18;;;9049:30;9115:21;9095:18;;;9088:49;9154:18;;39420:44:0;8835:343:1;39420:44:0;39475:13;39491:21;39503:9;39491;:21;:::i;:::-;39475:37;;39557:14;;39549:5;:22;39541:60;;;;-1:-1:-1;;;39541:60:0;;9385:2:1;39541:60:0;;;9367:21:1;9424:2;9404:18;;;9397:30;9463:27;9443:18;;;9436:55;9508:18;;39541:60:0;9183:349:1;39541:60:0;39656:10;39638:29;;;;:17;:29;;;;;;;;:38;;:56;;-1:-1:-1;39680:14:0;;39638:56;39629:95;;;;-1:-1:-1;;;39629:95:0;;9739:2:1;39629:95:0;;;9721:21:1;9778:2;9758:18;;;9751:30;9817:26;9797:18;;;9790:54;9861:18;;39629:95:0;9537:348:1;39629:95:0;39756:19;;39744:9;:31;39735:69;;;;-1:-1:-1;;;39735:69:0;;10092:2:1;39735:69:0;;;10074:21:1;10131:2;10111:18;;;10104:30;10170:25;10150:18;;;10143:53;10213:18;;39735:69:0;9890:347:1;39735:69:0;39853:15;;39841:9;39823:15;;:27;;;;:::i;:::-;:45;39815:83;;;;-1:-1:-1;;;39815:83:0;;10444:2:1;39815:83:0;;;10426:21:1;10483:2;10463:18;;;10456:30;10522:26;10502:18;;;10495:54;10566:18;;39815:83:0;10242:348:1;39815:83:0;39960:9;39947;39934:10;;:22;;;;:::i;:::-;:35;39926:78;;;;-1:-1:-1;;;39926:78:0;;10970:2:1;39926:78:0;;;10952:21:1;11009:2;10989:18;;;10982:30;11048:32;11028:18;;;11021:60;11098:18;;39926:78:0;10768:354:1;39926:78:0;40052:10;;40044:5;40024:17;;:25;;;;:::i;:::-;:38;40015:90;;;;-1:-1:-1;;;40015:90:0;;8360:2:1;40015:90:0;;;8342:21:1;8399:2;8379:18;;;8372:30;8438:34;8418:18;;;8411:62;-1:-1:-1;;;8489:18:1;;;8482:36;8535:19;;40015:90:0;8158:402:1;40015:90:0;40134:1;40118:106;40141:9;:5;40149:1;40141:9;:::i;:::-;40137:1;:13;40118:106;;;40168:44;40178:10;40210:1;40190:17;;:21;;;;:::i;40168:44::-;40153:3;;;;:::i;:::-;;;;40118:106;;;;40252:9;40234:15;;:27;;;;;;;:::i;:::-;;;;;;;;40292:5;40272:17;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;40340:13:0;;;;;:55;;-1:-1:-1;40375:10:0;40357:29;;;;:17;:29;;;;;;;;:38;40340:55;40326:10;40308:29;;;;:17;:29;;;;;:87;;-1:-1:-1;;40308:87:0;;;;;;;;;;-1:-1:-1;;;39340:1063:0:o;27363:339::-;27558:41;2883:10;27591:7;27558:18;:41::i;:::-;27550:103;;;;-1:-1:-1;;;27550:103:0;;11329:2:1;27550:103:0;;;11311:21:1;11368:2;11348:18;;;11341:30;11407:34;11387:18;;;11380:62;11478:19;11458:18;;;11451:47;11515:19;;27550:103:0;11127:413:1;27550:103:0;27666:28;27676:4;27682:2;27686:7;27666:9;:28::i;37972:143::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;38080:8:::1;::::0;38072:35:::1;::::0;38040:21:::1;::::0;-1:-1:-1;;;;;38080:8:0::1;::::0;38072:35;::::1;;;::::0;38040:21;;38022:15:::1;38072:35:::0;38022:15;38072:35;38040:21;38080:8;38072:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38011:104;37972:143::o:0;27773:185::-;27911:39;27928:4;27934:2;27938:7;27911:39;;;;;;;;;;;;:16;:39::i;40411:390::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;40524:19:::1;;40516:5;40500:13;;:21;;;;:::i;:::-;:43;40492:94;;;::::0;-1:-1:-1;;;40492:94:0;;8360:2:1;40492:94:0::1;::::0;::::1;8342:21:1::0;8399:2;8379:18;;;8372:30;8438:34;8418:18;;;8411:62;-1:-1:-1;;;8489:18:1;;;8482:36;8535:19;;40492:94:0::1;8158:402:1::0;40492:94:0::1;40665:1;40649:112;40672:8;:5:::0;40679:1:::1;40672:8;:::i;:::-;40668:1;:12;40649:112;;;40696:53;40706:9;40747:1;40731:13;;40728:1;40717:10;;:12;;;;:::i;40696:53::-;40681:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40649:112;;;;40788:5;40771:13;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;40411:390:0:o;38123:92::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;38193:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;24748:239::-:0;24820:7;24856:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24856:16:0;24891:19;24883:73;;;;-1:-1:-1;;;24883:73:0;;12108:2:1;24883:73:0;;;12090:21:1;12147:2;12127:18;;;12120:30;12186:34;12166:18;;;12159:62;12257:11;12237:18;;;12230:39;12286:19;;24883:73:0;11906:405:1;42165:177:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;42269:12;42253:82:::1;42287:10;42283:1;:14;42253:82;;;42316:8;42322:1;42316:5;:8::i;:::-;42300:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42253:82;;41568:160:::0;41618:4;41664:15;;41642;;41660:1;41642:19;;;;:::i;:::-;:37;:78;;;;-1:-1:-1;41701:10:0;41683:29;;;;:17;:29;;;;;;;;:37;;:29;:37;;41635:85;;41568:160;:::o;37341:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24478:208::-;24550:7;-1:-1:-1;;;;;24578:19:0;;24570:74;;;;-1:-1:-1;;;24570:74:0;;12518:2:1;24570:74:0;;;12500:21:1;12557:2;12537:18;;;12530:30;12596:34;12576:18;;;12569:62;12667:12;12647:18;;;12640:40;12697:19;;24570:74:0;12316:406:1;24570:74:0;-1:-1:-1;;;;;;24662:16:0;;;;;:9;:16;;;;;;;24478:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;38551:124::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;-1:-1:-1;;;;;38632:27:0;;::::1;;::::0;;;:16:::1;:27;::::0;;;;:35;38551:124::o;38326:101::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;38399:8:::1;:20:::0;;-1:-1:-1;;;;;;38399:20:0::1;-1:-1:-1::0;;;;;38399:20:0;;;::::1;::::0;;;::::1;::::0;;38326:101::o;25223:104::-;25279:13;25312:7;25305:14;;;;;:::i;26906:155::-;27001:52;2883:10;27034:8;27044;27001:18;:52::i;38683:89::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;38746:10:::1;:18:::0;38683:89::o;28029:328::-;28204:41;2883:10;28237:7;28204:18;:41::i;:::-;28196:103;;;;-1:-1:-1;;;28196:103:0;;11329:2:1;28196:103:0;;;11311:21:1;11368:2;11348:18;;;11341:30;11407:34;11387:18;;;11380:62;11478:19;11458:18;;;11451:47;11515:19;;28196:103:0;11127:413:1;28196:103:0;28310:39;28324:4;28330:2;28334:7;28343:5;28310:13;:39::i;:::-;28029:328;;;;:::o;41736:145::-;41817:13;41850:23;41865:7;41850:14;:23::i;38223:95::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;38299:11:::1;::::0;;38284:26;;::::1;-1:-1:-1::0;;;38299:11:0;;;::::1;;;38298:12;38284:26:::0;;::::1;;::::0;;38223:95::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;11747:2:1;4291:68:0;;;11729:21:1;;;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11877:18;;4291:68:0;11545:356:1;4291:68:0;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;12929:2:1;5069:73:0::1;::::0;::::1;12911:21:1::0;12968:2;12948:18;;;12941:30;13007:34;12987:18;;;12980:62;13078:8;13058:18;;;13051:36;13104:19;;5069:73:0::1;12727:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;24109:305::-;24211:4;-1:-1:-1;;;;;;24248:40:0;;24263:25;24248:40;;:105;;-1:-1:-1;;;;;;;24305:48:0;;24320:33;24305:48;24248:105;:158;;;-1:-1:-1;16987:25:0;-1:-1:-1;;;;;;16972:40:0;;;24370:36;16863:157;34013:174;34088:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34088:29:0;-1:-1:-1;;;;;34088:29:0;;;;;;;;:24;;34142:23;34088:24;34142:14;:23::i;:::-;-1:-1:-1;;;;;34133:46:0;;;;;;;;;;;34013:174;;:::o;30851:110::-;30927:26;30937:2;30941:7;30927:26;;;;;;;;;;;;:9;:26::i;30161:348::-;30254:4;29956:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29956:16:0;30271:73;;;;-1:-1:-1;;;30271:73:0;;13336:2:1;30271:73:0;;;13318:21:1;13375:2;13355:18;;;13348:30;13414:34;13394:18;;;13387:62;-1:-1:-1;;;13465:18:1;;;13458:42;13517:19;;30271:73:0;13134:408:1;30271:73:0;30355:13;30371:23;30386:7;30371:14;:23::i;:::-;30355:39;;30424:5;-1:-1:-1;;;;;30413:16:0;:7;-1:-1:-1;;;;;30413:16:0;;:51;;;;30457:7;-1:-1:-1;;;;;30433:31:0;:20;30445:7;30433:11;:20::i;:::-;-1:-1:-1;;;;;30433:31:0;;30413:51;:87;;;-1:-1:-1;;;;;;27253:25:0;;;27229:4;27253:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30468:32;30405:96;30161:348;-1:-1:-1;;;;30161:348:0:o;33270:625::-;33429:4;-1:-1:-1;;;;;33402:31:0;:23;33417:7;33402:14;:23::i;:::-;-1:-1:-1;;;;;33402:31:0;;33394:81;;;;-1:-1:-1;;;33394:81:0;;13749:2:1;33394:81:0;;;13731:21:1;13788:2;13768:18;;;13761:30;13827:34;13807:18;;;13800:62;13898:7;13878:18;;;13871:35;13923:19;;33394:81:0;13547:401:1;33394:81:0;-1:-1:-1;;;;;33494:16:0;;33486:65;;;;-1:-1:-1;;;33486:65:0;;14155:2:1;33486:65:0;;;14137:21:1;14194:2;14174:18;;;14167:30;14233:34;14213:18;;;14206:62;14304:6;14284:18;;;14277:34;14328:19;;33486:65:0;13953:400:1;33486:65:0;33668:29;33685:1;33689:7;33668:8;:29::i;:::-;-1:-1:-1;;;;;33710:15:0;;;;;;:9;:15;;;;;:20;;33729:1;;33710:15;:20;;33729:1;;33710:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33741:13:0;;;;;;:9;:13;;;;;:18;;33758:1;;33741:13;:18;;33758:1;;33741:18;:::i;:::-;;;;-1:-1:-1;;33770:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33770:21:0;-1:-1:-1;;;;;33770:21:0;;;;;;;;;33809:27;;33770:16;;33809:27;;;;;;;26206:341;26136:411;;:::o;42060:97::-;42129:20;42141:7;42129:11;:20::i;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;34329:315::-;34484:8;-1:-1:-1;;;;;34475:17:0;:5;-1:-1:-1;;;;;34475:17:0;;;34467:55;;;;-1:-1:-1;;;34467:55:0;;14560:2:1;34467:55:0;;;14542:21:1;14599:2;14579:18;;;14572:30;14638:27;14618:18;;;14611:55;14683:18;;34467:55:0;14358:349:1;34467:55:0;-1:-1:-1;;;;;34533:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34533:46:0;;;;;;;;;;34595:41;;586::1;;;34595::0;;559:18:1;34595:41:0;;;;;;;34329:315;;;:::o;29239:::-;29396:28;29406:4;29412:2;29416:7;29396:9;:28::i;:::-;29443:48;29466:4;29472:2;29476:7;29485:5;29443:22;:48::i;:::-;29435:111;;;;-1:-1:-1;;;29435:111:0;;14914:2:1;29435:111:0;;;14896:21:1;14953:2;14933:18;;;14926:30;14992:34;14972:18;;;14965:62;-1:-1:-1;;;15043:18:1;;;15036:48;15101:19;;29435:111:0;14712:414:1;25398:334:0;29932:4;29956:16;;;:7;:16;;;;;;25471:13;;-1:-1:-1;;;;;29956:16:0;25497:76;;;;-1:-1:-1;;;25497:76:0;;15333:2:1;25497:76:0;;;15315:21:1;15372:2;15352:18;;;15345:30;15411:34;15391:18;;;15384:62;15482:17;15462:18;;;15455:45;15517:19;;25497:76:0;15131:411:1;25497:76:0;25586:21;25610:10;:8;:10::i;:::-;25586:34;;25662:1;25644:7;25638:21;:25;:86;;;;;;;;;;;;;;;;;25690:7;25699:18;:7;:16;:18::i;:::-;25673:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25638:86;25631:93;25398:334;-1:-1:-1;;;25398:334:0:o;31188:321::-;31318:18;31324:2;31328:7;31318:5;:18::i;:::-;31369:54;31400:1;31404:2;31408:7;31417:5;31369:22;:54::i;:::-;31347:154;;;;-1:-1:-1;;;31347:154:0;;14914:2:1;31347:154:0;;;14896:21:1;14953:2;14933:18;;;14926:30;14992:34;14972:18;;;14965:62;-1:-1:-1;;;15043:18:1;;;15036:48;15101:19;;31347:154:0;14712:414:1;32513:420:0;32573:13;32589:23;32604:7;32589:14;:23::i;:::-;32573:39;;32714:29;32731:1;32735:7;32714:8;:29::i;:::-;-1:-1:-1;;;;;32756:16:0;;;;;;:9;:16;;;;;:21;;32776:1;;32756:16;:21;;32776:1;;32756:21;:::i;:::-;;;;-1:-1:-1;;32795:16:0;;;;:7;:16;;;;;;32788:23;;-1:-1:-1;;;;;;32788:23:0;;;32829:36;32803:7;;32795:16;-1:-1:-1;;;;;32829:36:0;;;;;32795:16;;32829:36;38072:35:::1;38011:104;37972:143::o:0;35209:799::-;35364:4;-1:-1:-1;;;;;35385:13:0;;7075:19;:23;35381:620;;35421:72;;-1:-1:-1;;;35421:72:0;;-1:-1:-1;;;;;35421:36:0;;;;;:72;;2883:10;;35472:4;;35478:7;;35487:5;;35421:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35421:72:0;;;;;;;;-1:-1:-1;;35421:72:0;;;;;;;;;;;;:::i;:::-;;;35417:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35663:13:0;;35659:272;;35706:60;;-1:-1:-1;;;35706:60:0;;14914:2:1;35706:60:0;;;14896:21:1;14953:2;14933:18;;;14926:30;14992:34;14972:18;;;14965:62;-1:-1:-1;;;15043:18:1;;;15036:48;15101:19;;35706:60:0;14712:414:1;35659:272:0;35881:6;35875:13;35866:6;35862:2;35858:15;35851:38;35417:529;-1:-1:-1;;;;;;35544:51:0;-1:-1:-1;;;35544:51:0;;-1:-1:-1;35537:58:0;;35381:620;-1:-1:-1;35985:4:0;35209:799;;;;;;:::o;38435:108::-;38495:13;38528:7;38521:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;;;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;31845:439;-1:-1:-1;;;;;31925:16:0;;31917:61;;;;-1:-1:-1;;;31917:61:0;;17615:2:1;31917:61:0;;;17597:21:1;;;17634:18;;;17627:30;17693:34;17673:18;;;17666:62;17745:18;;31917:61:0;17413:356:1;31917:61:0;29932:4;29956:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29956:16:0;:30;31989:58;;;;-1:-1:-1;;;31989:58:0;;17976:2:1;31989:58:0;;;17958:21:1;18015:2;17995:18;;;17988:30;18054;18034:18;;;18027:58;18102:18;;31989:58:0;17774:352:1;31989:58:0;-1:-1:-1;;;;;32118:13:0;;;;;;:9;:13;;;;;:18;;32135:1;;32118:13;:18;;32135:1;;32118:18;:::i;:::-;;;;-1:-1:-1;;32147:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32147:21:0;-1:-1:-1;;;;;32147:21:0;;;;;;;;32186:33;;32147:16;;;32186:33;;32147:16;;32186:33;38072:35:::1;38011:104;37972:143::o:0;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;820:258::-;892:1;902:113;916:6;913:1;910:13;902:113;;;992:11;;;986:18;973:11;;;966:39;938:2;931:10;902:113;;;1033:6;1030:1;1027:13;1024:48;;;-1:-1:-1;;1068:1:1;1050:16;;1043:27;820:258::o;1083:::-;1125:3;1163:5;1157:12;1190:6;1185:3;1178:19;1206:63;1262:6;1255:4;1250:3;1246:14;1239:4;1232:5;1228:16;1206:63;:::i;:::-;1323:2;1302:15;-1:-1:-1;;1298:29:1;1289:39;;;;1330:4;1285:50;;1083:258;-1:-1:-1;;1083:258:1:o;1346:220::-;1495:2;1484:9;1477:21;1458:4;1515:45;1556:2;1545:9;1541:18;1533:6;1515:45;:::i;1571:180::-;1630:6;1683:2;1671:9;1662:7;1658:23;1654:32;1651:52;;;1699:1;1696;1689:12;1651:52;-1:-1:-1;1722:23:1;;1571:180;-1:-1:-1;1571:180:1:o;1987:196::-;2055:20;;-1:-1:-1;;;;;2104:54:1;;2094:65;;2084:93;;2173:1;2170;2163:12;2084:93;1987:196;;;:::o;2188:254::-;2256:6;2264;2317:2;2305:9;2296:7;2292:23;2288:32;2285:52;;;2333:1;2330;2323:12;2285:52;2356:29;2375:9;2356:29;:::i;:::-;2346:39;2432:2;2417:18;;;;2404:32;;-1:-1:-1;;;2188:254:1:o;2447:248::-;2515:6;2523;2576:2;2564:9;2555:7;2551:23;2547:32;2544:52;;;2592:1;2589;2582:12;2544:52;-1:-1:-1;;2615:23:1;;;2685:2;2670:18;;;2657:32;;-1:-1:-1;2447:248:1:o;2700:328::-;2777:6;2785;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2885:29;2904:9;2885:29;:::i;:::-;2875:39;;2933:38;2967:2;2956:9;2952:18;2933:38;:::i;:::-;2923:48;;3018:2;3007:9;3003:18;2990:32;2980:42;;2700:328;;;;;:::o;3033:184::-;-1:-1:-1;;;3082:1:1;3075:88;3182:4;3179:1;3172:15;3206:4;3203:1;3196:15;3222:632;3287:5;3317:18;3358:2;3350:6;3347:14;3344:40;;;3364:18;;:::i;:::-;3439:2;3433:9;3407:2;3493:15;;-1:-1:-1;;3489:24:1;;;3515:2;3485:33;3481:42;3469:55;;;3539:18;;;3559:22;;;3536:46;3533:72;;;3585:18;;:::i;:::-;3625:10;3621:2;3614:22;3654:6;3645:15;;3684:6;3676;3669:22;3724:3;3715:6;3710:3;3706:16;3703:25;3700:45;;;3741:1;3738;3731:12;3700:45;3791:6;3786:3;3779:4;3771:6;3767:17;3754:44;3846:1;3839:4;3830:6;3822;3818:19;3814:30;3807:41;;;;3222:632;;;;;:::o;3859:451::-;3928:6;3981:2;3969:9;3960:7;3956:23;3952:32;3949:52;;;3997:1;3994;3987:12;3949:52;4037:9;4024:23;4070:18;4062:6;4059:30;4056:50;;;4102:1;4099;4092:12;4056:50;4125:22;;4178:4;4170:13;;4166:27;-1:-1:-1;4156:55:1;;4207:1;4204;4197:12;4156:55;4230:74;4296:7;4291:2;4278:16;4273:2;4269;4265:11;4230:74;:::i;4315:186::-;4374:6;4427:2;4415:9;4406:7;4402:23;4398:32;4395:52;;;4443:1;4440;4433:12;4395:52;4466:29;4485:9;4466:29;:::i;4506:347::-;4571:6;4579;4632:2;4620:9;4611:7;4607:23;4603:32;4600:52;;;4648:1;4645;4638:12;4600:52;4671:29;4690:9;4671:29;:::i;:::-;4661:39;;4750:2;4739:9;4735:18;4722:32;4797:5;4790:13;4783:21;4776:5;4773:32;4763:60;;4819:1;4816;4809:12;4763:60;4842:5;4832:15;;;4506:347;;;;;:::o;4858:667::-;4953:6;4961;4969;4977;5030:3;5018:9;5009:7;5005:23;5001:33;4998:53;;;5047:1;5044;5037:12;4998:53;5070:29;5089:9;5070:29;:::i;:::-;5060:39;;5118:38;5152:2;5141:9;5137:18;5118:38;:::i;:::-;5108:48;;5203:2;5192:9;5188:18;5175:32;5165:42;;5258:2;5247:9;5243:18;5230:32;5285:18;5277:6;5274:30;5271:50;;;5317:1;5314;5307:12;5271:50;5340:22;;5393:4;5385:13;;5381:27;-1:-1:-1;5371:55:1;;5422:1;5419;5412:12;5371:55;5445:74;5511:7;5506:2;5493:16;5488:2;5484;5480:11;5445:74;:::i;:::-;5435:84;;;4858:667;;;;;;;:::o;5530:260::-;5598:6;5606;5659:2;5647:9;5638:7;5634:23;5630:32;5627:52;;;5675:1;5672;5665:12;5627:52;5698:29;5717:9;5698:29;:::i;:::-;5688:39;;5746:38;5780:2;5769:9;5765:18;5746:38;:::i;:::-;5736:48;;5530:260;;;;;:::o;5795:437::-;5874:1;5870:12;;;;5917;;;5938:61;;5992:4;5984:6;5980:17;5970:27;;5938:61;6045:2;6037:6;6034:14;6014:18;6011:38;6008:218;;;-1:-1:-1;;;6079:1:1;6072:88;6183:4;6180:1;6173:15;6211:4;6208:1;6201:15;6008:218;;5795:437;;;:::o;7836:184::-;-1:-1:-1;;;7885:1:1;7878:88;7985:4;7982:1;7975:15;8009:4;8006:1;7999:15;8025:128;8065:3;8096:1;8092:6;8089:1;8086:13;8083:39;;;8102:18;;:::i;:::-;-1:-1:-1;8138:9:1;;8025:128::o;8565:125::-;8605:4;8633:1;8630;8627:8;8624:34;;;8638:18;;:::i;:::-;-1:-1:-1;8675:9:1;;8565:125::o;8695:135::-;8734:3;-1:-1:-1;;8755:17:1;;8752:43;;;8775:18;;:::i;:::-;-1:-1:-1;8822:1:1;8811:13;;8695:135::o;10595:168::-;10635:7;10701:1;10697;10693:6;10689:14;10686:1;10683:21;10678:1;10671:9;10664:17;10660:45;10657:71;;;10708:18;;:::i;:::-;-1:-1:-1;10748:9:1;;10595:168::o;15547:470::-;15726:3;15764:6;15758:13;15780:53;15826:6;15821:3;15814:4;15806:6;15802:17;15780:53;:::i;:::-;15896:13;;15855:16;;;;15918:57;15896:13;15855:16;15952:4;15940:17;;15918:57;:::i;:::-;15991:20;;15547:470;-1:-1:-1;;;;15547:470:1:o;16022:512::-;16216:4;-1:-1:-1;;;;;16326:2:1;16318:6;16314:15;16303:9;16296:34;16378:2;16370:6;16366:15;16361:2;16350:9;16346:18;16339:43;;16418:6;16413:2;16402:9;16398:18;16391:34;16461:3;16456:2;16445:9;16441:18;16434:31;16482:46;16523:3;16512:9;16508:19;16500:6;16482:46;:::i;:::-;16474:54;16022:512;-1:-1:-1;;;;;;16022:512:1:o;16539:249::-;16608:6;16661:2;16649:9;16640:7;16636:23;16632:32;16629:52;;;16677:1;16674;16667:12;16629:52;16709:9;16703:16;16728:30;16752:5;16728:30;:::i;16793:184::-;-1:-1:-1;;;16842:1:1;16835:88;16942:4;16939:1;16932:15;16966:4;16963:1;16956:15;16982:120;17022:1;17048;17038:35;;17053:18;;:::i;:::-;-1:-1:-1;17087:9:1;;16982:120::o;17107:112::-;17139:1;17165;17155:35;;17170:18;;:::i;:::-;-1:-1:-1;17204:9:1;;17107:112::o;17224:184::-;-1:-1:-1;;;17273:1:1;17266:88;17373:4;17370:1;17363:15;17397:4;17394:1;17387:15

Swarm Source

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