ETH Price: $3,521.88 (+0.45%)
Gas: 2 Gwei

Baller Bears (BEARS)
 

Overview

TokenID

24

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Baller bears is a collection of 4444 NFT’s hosted on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BallerBears

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/BallerBears.sol



pragma solidity ^0.8.9;

// @title: BallerBears.sol



contract BallerBears is ERC721, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_TOKENS = 4444;
    uint256 private constant TOKENS_RESERVED = 20;
    uint256 public price = 80000000000000000;
    uint256 public constant MAX_MINT_PER_TX = 10;

    bool public isSaleActive;
    uint256 public totalSupply;
    mapping(address => uint256) private mintedPerWallet;

    string public baseUri;
    string public baseExtension = ".json";

    constructor() ERC721("Baller Bears", "BEARS") {
        // Base IPFS URI of the Baller Bears
        baseUri = "ipfs://Qmb1WNzRZ6jcSzFpa8zSDA7bqkjGAgUPV9AE3uSdWRbMzt/";
        for (uint256 i = 1; i <= TOKENS_RESERVED; ++i) {
            _safeMint(msg.sender, i);
        }
        totalSupply = TOKENS_RESERVED;
    }

    // PUBLIC FUNCTIONS
    function mintBear(uint256 _numTokens) external payable {
        require(isSaleActive, "The sale is paused.");
        require(_numTokens <= MAX_MINT_PER_TX, "You can only mint a maximum of 10 Baller Bears per transaction.");
        require(mintedPerWallet[msg.sender] + _numTokens <= 10, "You can only mint 10 per wallet.");
        uint256 curTotalSupply = totalSupply;
        require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds `MAX_TOKENS`");
        require(_numTokens * price <= msg.value, "Insufficient funds. You need more ETH!");

        for (uint256 i = 1; i <= _numTokens; ++i) {
            _safeMint(msg.sender, curTotalSupply + i);
        }
        mintedPerWallet[msg.sender] += _numTokens;
        totalSupply += _numTokens;
    }

    // OWNER ONLY FUNCTIONS
    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function setBaseURI(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        uint256 balanceOne = balance * 80 / 100;
        uint256 balanceTwo = balance * 20 / 100;
        (bool transferOne, ) = payable(0xA477c13E0f86170F855d06EFDE32858ad9f18941).call{value: balanceOne}("");
        (bool transferTwo, ) = payable(0x233E73Ff2e0369C401661C3739849Bc98E204464).call{value: balanceTwo}("");
        require(transferOne && transferTwo, "Transfer failed.");
    }


    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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


    // INTERNAL FUNCTIONS
    function _baseURI() internal view virtual override returns (string memory) {
        return baseUri;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mintBear","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267011c37937e0800006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005d92919062000729565b503480156200006b57600080fd5b506040518060400160405280600c81526020017f42616c6c657220426561727300000000000000000000000000000000000000008152506040518060400160405280600581526020017f42454152530000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f092919062000729565b5080600190805190602001906200010992919062000729565b5050506200012c62000120620001a360201b60201c565b620001ab60201b60201c565b6040518060600160405280603681526020016200485760369139600b90805190602001906200015d92919062000729565b506000600190505b6014811162000194576200018033826200027160201b60201c565b806200018c9062000812565b905062000165565b50601460098190555062000c91565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002938282604051806020016040528060008152506200029760201b60201c565b5050565b620002a983836200030560201b60201c565b620002be6000848484620004eb60201b60201c565b62000300576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f790620008e7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000378576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036f9062000959565b60405180910390fd5b6200038981620006a560201b60201c565b15620003cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c390620009cb565b60405180910390fd5b620003e0600083836200071160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004329190620009ed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005198473ffffffffffffffffffffffffffffffffffffffff166200071660201b620018511760201c565b1562000698578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200054b620001a360201b60201c565b8786866040518563ffffffff1660e01b81526004016200056f949392919062000b44565b602060405180830381600087803b1580156200058a57600080fd5b505af1925050508015620005be57506040513d601f19601f82011682018060405250810190620005bb919062000bfa565b60015b62000647573d8060008114620005f1576040519150601f19603f3d011682016040523d82523d6000602084013e620005f6565b606091505b506000815114156200063f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063690620008e7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200069d565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620007379062000c5b565b90600052602060002090601f0160209004810192826200075b5760008555620007a7565b82601f106200077657805160ff1916838001178555620007a7565b82800160010185558215620007a7579182015b82811115620007a657825182559160200191906001019062000789565b5b509050620007b69190620007ba565b5090565b5b80821115620007d5576000816000905550600101620007bb565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b60006200081f8262000808565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620008555762000854620007d9565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000620008cf60328362000860565b9150620008dc8262000871565b604082019050919050565b600060208201905081810360008301526200090281620008c0565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006200094160208362000860565b91506200094e8262000909565b602082019050919050565b60006020820190508181036000830152620009748162000932565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000620009b3601c8362000860565b9150620009c0826200097b565b602082019050919050565b60006020820190508181036000830152620009e681620009a4565b9050919050565b6000620009fa8262000808565b915062000a078362000808565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a3f5762000a3e620007d9565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a778262000a4a565b9050919050565b62000a898162000a6a565b82525050565b62000a9a8162000808565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000adc57808201518184015260208101905062000abf565b8381111562000aec576000848401525b50505050565b6000601f19601f8301169050919050565b600062000b108262000aa0565b62000b1c818562000aab565b935062000b2e81856020860162000abc565b62000b398162000af2565b840191505092915050565b600060808201905062000b5b600083018762000a7e565b62000b6a602083018662000a7e565b62000b79604083018562000a8f565b818103606083015262000b8d818462000b03565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000bd48162000b9d565b811462000be057600080fd5b50565b60008151905062000bf48162000bc9565b92915050565b60006020828403121562000c135762000c1262000b98565b5b600062000c238482850162000be3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7457607f821691505b6020821081141562000c8b5762000c8a62000c2c565b5b50919050565b613bb68062000ca16000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063b88d4fde14610536578063c358575c1461055f578063c66828621461057b576101b7565b806395d89b41116100c657806395d89b411461048c5780639abc8320146104b7578063a035b1fe146104e2578063a22cb4651461050d576101b7565b80638da5cb5b1461040d5780638ecad7211461043857806391b7f5ed14610463576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec578063853828b614610403576101b7565b806342842e0e146102f557806355f804b31461031e578063564566a814610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061253c565b610674565b6040516101f09190612584565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b9190612638565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612690565b6107e8565b60405161025891906126fe565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612745565b61086d565b005b34801561029657600080fd5b5061029f610985565b6040516102ac9190612794565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906127af565b61098b565b005b3480156102ea57600080fd5b506102f36109eb565b005b34801561030157600080fd5b5061031c600480360381019061031791906127af565b610a93565b005b34801561032a57600080fd5b5061034560048036038101906103409190612937565b610ab3565b005b34801561035357600080fd5b5061035c610b49565b6040516103699190612584565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190612690565b610b5c565b6040516103a691906126fe565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612980565b610c0e565b6040516103e39190612794565b60405180910390f35b3480156103f857600080fd5b50610401610cc6565b005b61040b610d4e565b005b34801561041957600080fd5b50610422610f59565b60405161042f91906126fe565b60405180910390f35b34801561044457600080fd5b5061044d610f83565b60405161045a9190612794565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612690565b610f88565b005b34801561049857600080fd5b506104a161100e565b6040516104ae9190612638565b60405180910390f35b3480156104c357600080fd5b506104cc6110a0565b6040516104d99190612638565b60405180910390f35b3480156104ee57600080fd5b506104f761112e565b6040516105049190612794565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f91906129d9565b611134565b005b34801561054257600080fd5b5061055d60048036038101906105589190612aba565b6112b5565b005b61057960048036038101906105749190612690565b611317565b005b34801561058757600080fd5b50610590611587565b60405161059d9190612638565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612690565b611615565b6040516105da9190612638565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612b3d565b6116bf565b6040516106179190612584565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612980565b611753565b005b34801561065557600080fd5b5061065e61184b565b60405161066b9190612794565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e82611864565b5b9050919050565b60606000805461076590612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612bac565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826118ce565b610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612c50565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610b5c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090612ce2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090861193a565b73ffffffffffffffffffffffffffffffffffffffff16148061093757506109368161093161193a565b6116bf565b5b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612d74565b60405180910390fd5b6109808383611942565b505050565b60095481565b61099c61099661193a565b826119fb565b6109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290612e06565b60405180910390fd5b6109e6838383611ad9565b505050565b6109f361193a565b73ffffffffffffffffffffffffffffffffffffffff16610a11610f59565b73ffffffffffffffffffffffffffffffffffffffff1614610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90612e72565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b610aae838383604051806020016040528060008152506112b5565b505050565b610abb61193a565b73ffffffffffffffffffffffffffffffffffffffff16610ad9610f59565b73ffffffffffffffffffffffffffffffffffffffff1614610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690612e72565b60405180910390fd5b80600b9080519060200190610b4592919061242d565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612f04565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690612f96565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cce61193a565b73ffffffffffffffffffffffffffffffffffffffff16610cec610f59565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612e72565b60405180910390fd5b610d4c6000611d35565b565b610d5661193a565b73ffffffffffffffffffffffffffffffffffffffff16610d74610f59565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190612e72565b60405180910390fd5b600047905060006064605083610de09190612fe5565b610dea919061306e565b905060006064601484610dfd9190612fe5565b610e07919061306e565b9050600073a477c13e0f86170f855d06efde32858ad9f1894173ffffffffffffffffffffffffffffffffffffffff1683604051610e43906130d0565b60006040518083038185875af1925050503d8060008114610e80576040519150601f19603f3d011682016040523d82523d6000602084013e610e85565b606091505b50509050600073233e73ff2e0369c401661c3739849bc98e20446473ffffffffffffffffffffffffffffffffffffffff1683604051610ec3906130d0565b60006040518083038185875af1925050503d8060008114610f00576040519150601f19603f3d011682016040523d82523d6000602084013e610f05565b606091505b50509050818015610f135750805b610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613131565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b610f9061193a565b73ffffffffffffffffffffffffffffffffffffffff16610fae610f59565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90612e72565b60405180910390fd5b8060078190555050565b60606001805461101d90612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461104990612bac565b80156110965780601f1061106b57610100808354040283529160200191611096565b820191906000526020600020905b81548152906001019060200180831161107957829003601f168201915b5050505050905090565b600b80546110ad90612bac565b80601f01602080910402602001604051908101604052809291908181526020018280546110d990612bac565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b505050505081565b60075481565b61113c61193a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061319d565b60405180910390fd5b80600560006111b761193a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126461193a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112a99190612584565b60405180910390a35050565b6112c66112c061193a565b836119fb565b611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90612e06565b60405180910390fd5b61131184848484611dfb565b50505050565b600860009054906101000a900460ff16611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90613209565b60405180910390fd5b600a8111156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a19061329b565b60405180910390fd5b600a81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f791906132bb565b1115611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f9061335d565b60405180910390fd5b6000600954905061115c828261144e91906132bb565b111561148f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611486906133c9565b60405180910390fd5b346007548361149e9190612fe5565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061345b565b60405180910390fd5b6000600190505b828111611513576115023382846114fd91906132bb565b611e57565b8061150c9061347b565b90506114e6565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156391906132bb565b92505081905550816009600082825461157c91906132bb565b925050819055505050565b600c805461159490612bac565b80601f01602080910402602001604051908101604052809291908181526020018280546115c090612bac565b801561160d5780601f106115e25761010080835404028352916020019161160d565b820191906000526020600020905b8154815290600101906020018083116115f057829003601f168201915b505050505081565b6060611620826118ce565b61165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613536565b60405180910390fd5b6000611669611e75565b9050600081511161168957604051806020016040528060008152506116b7565b8061169384611f07565b600c6040516020016116a793929190613626565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61175b61193a565b73ffffffffffffffffffffffffffffffffffffffff16611779610f59565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690612e72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906136c9565b60405180910390fd5b61184881611d35565b50565b61115c81565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119b583610b5c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a06826118ce565b611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c9061375b565b60405180910390fd5b6000611a5083610b5c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611abf57508373ffffffffffffffffffffffffffffffffffffffff16611aa7846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ad05750611acf81856116bf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611af982610b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b46906137ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb69061387f565b60405180910390fd5b611bca838383612068565b611bd5600082611942565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c25919061389f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7c91906132bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e06848484611ad9565b611e128484848461206d565b611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890613945565b60405180910390fd5b50505050565b611e71828260405180602001604052806000815250612204565b5050565b6060600b8054611e8490612bac565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb090612bac565b8015611efd5780601f10611ed257610100808354040283529160200191611efd565b820191906000526020600020905b815481529060010190602001808311611ee057829003601f168201915b5050505050905090565b60606000821415611f4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612063565b600082905060005b60008214611f81578080611f6a9061347b565b915050600a82611f7a919061306e565b9150611f57565b60008167ffffffffffffffff811115611f9d57611f9c61280c565b5b6040519080825280601f01601f191660200182016040528015611fcf5781602001600182028036833780820191505090505b5090505b6000851461205c57600182611fe8919061389f565b9150600a85611ff79190613965565b603061200391906132bb565b60f81b81838151811061201957612018613996565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612055919061306e565b9450611fd3565b8093505050505b919050565b505050565b600061208e8473ffffffffffffffffffffffffffffffffffffffff16611851565b156121f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b761193a565b8786866040518563ffffffff1660e01b81526004016120d99493929190613a1a565b602060405180830381600087803b1580156120f357600080fd5b505af192505050801561212457506040513d601f19601f820116820180604052508101906121219190613a7b565b60015b6121a7573d8060008114612154576040519150601f19603f3d011682016040523d82523d6000602084013e612159565b606091505b5060008151141561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690613945565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121fc565b600190505b949350505050565b61220e838361225f565b61221b600084848461206d565b61225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613945565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690613af4565b60405180910390fd5b6122d8816118ce565b15612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90613b60565b60405180910390fd5b61232460008383612068565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461237491906132bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461243990612bac565b90600052602060002090601f01602090048101928261245b57600085556124a2565b82601f1061247457805160ff19168380011785556124a2565b828001600101855582156124a2579182015b828111156124a1578251825591602001919060010190612486565b5b5090506124af91906124b3565b5090565b5b808211156124cc5760008160009055506001016124b4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612519816124e4565b811461252457600080fd5b50565b60008135905061253681612510565b92915050565b600060208284031215612552576125516124da565b5b600061256084828501612527565b91505092915050565b60008115159050919050565b61257e81612569565b82525050565b60006020820190506125996000830184612575565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125d95780820151818401526020810190506125be565b838111156125e8576000848401525b50505050565b6000601f19601f8301169050919050565b600061260a8261259f565b61261481856125aa565b93506126248185602086016125bb565b61262d816125ee565b840191505092915050565b6000602082019050818103600083015261265281846125ff565b905092915050565b6000819050919050565b61266d8161265a565b811461267857600080fd5b50565b60008135905061268a81612664565b92915050565b6000602082840312156126a6576126a56124da565b5b60006126b48482850161267b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e8826126bd565b9050919050565b6126f8816126dd565b82525050565b600060208201905061271360008301846126ef565b92915050565b612722816126dd565b811461272d57600080fd5b50565b60008135905061273f81612719565b92915050565b6000806040838503121561275c5761275b6124da565b5b600061276a85828601612730565b925050602061277b8582860161267b565b9150509250929050565b61278e8161265a565b82525050565b60006020820190506127a96000830184612785565b92915050565b6000806000606084860312156127c8576127c76124da565b5b60006127d686828701612730565b93505060206127e786828701612730565b92505060406127f88682870161267b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612844826125ee565b810181811067ffffffffffffffff821117156128635761286261280c565b5b80604052505050565b60006128766124d0565b9050612882828261283b565b919050565b600067ffffffffffffffff8211156128a2576128a161280c565b5b6128ab826125ee565b9050602081019050919050565b82818337600083830152505050565b60006128da6128d584612887565b61286c565b9050828152602081018484840111156128f6576128f5612807565b5b6129018482856128b8565b509392505050565b600082601f83011261291e5761291d612802565b5b813561292e8482602086016128c7565b91505092915050565b60006020828403121561294d5761294c6124da565b5b600082013567ffffffffffffffff81111561296b5761296a6124df565b5b61297784828501612909565b91505092915050565b600060208284031215612996576129956124da565b5b60006129a484828501612730565b91505092915050565b6129b681612569565b81146129c157600080fd5b50565b6000813590506129d3816129ad565b92915050565b600080604083850312156129f0576129ef6124da565b5b60006129fe85828601612730565b9250506020612a0f858286016129c4565b9150509250929050565b600067ffffffffffffffff821115612a3457612a3361280c565b5b612a3d826125ee565b9050602081019050919050565b6000612a5d612a5884612a19565b61286c565b905082815260208101848484011115612a7957612a78612807565b5b612a848482856128b8565b509392505050565b600082601f830112612aa157612aa0612802565b5b8135612ab1848260208601612a4a565b91505092915050565b60008060008060808587031215612ad457612ad36124da565b5b6000612ae287828801612730565b9450506020612af387828801612730565b9350506040612b048782880161267b565b925050606085013567ffffffffffffffff811115612b2557612b246124df565b5b612b3187828801612a8c565b91505092959194509250565b60008060408385031215612b5457612b536124da565b5b6000612b6285828601612730565b9250506020612b7385828601612730565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bc457607f821691505b60208210811415612bd857612bd7612b7d565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612c3a602c836125aa565b9150612c4582612bde565b604082019050919050565b60006020820190508181036000830152612c6981612c2d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ccc6021836125aa565b9150612cd782612c70565b604082019050919050565b60006020820190508181036000830152612cfb81612cbf565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612d5e6038836125aa565b9150612d6982612d02565b604082019050919050565b60006020820190508181036000830152612d8d81612d51565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612df06031836125aa565b9150612dfb82612d94565b604082019050919050565b60006020820190508181036000830152612e1f81612de3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e5c6020836125aa565b9150612e6782612e26565b602082019050919050565b60006020820190508181036000830152612e8b81612e4f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612eee6029836125aa565b9150612ef982612e92565b604082019050919050565b60006020820190508181036000830152612f1d81612ee1565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612f80602a836125aa565b9150612f8b82612f24565b604082019050919050565b60006020820190508181036000830152612faf81612f73565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ff08261265a565b9150612ffb8361265a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561303457613033612fb6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130798261265a565b91506130848361265a565b9250826130945761309361303f565b5b828204905092915050565b600081905092915050565b50565b60006130ba60008361309f565b91506130c5826130aa565b600082019050919050565b60006130db826130ad565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061311b6010836125aa565b9150613126826130e5565b602082019050919050565b6000602082019050818103600083015261314a8161310e565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006131876019836125aa565b915061319282613151565b602082019050919050565b600060208201905081810360008301526131b68161317a565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b60006131f36013836125aa565b91506131fe826131bd565b602082019050919050565b60006020820190508181036000830152613222816131e6565b9050919050565b7f596f752063616e206f6e6c79206d696e742061206d6178696d756d206f66203160008201527f302042616c6c657220426561727320706572207472616e73616374696f6e2e00602082015250565b6000613285603f836125aa565b915061329082613229565b604082019050919050565b600060208201905081810360008301526132b481613278565b9050919050565b60006132c68261265a565b91506132d18361265a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330657613305612fb6565b5b828201905092915050565b7f596f752063616e206f6e6c79206d696e74203130207065722077616c6c65742e600082015250565b60006133476020836125aa565b915061335282613311565b602082019050919050565b600060208201905081810360008301526133768161333a565b9050919050565b7f4578636565647320604d41585f544f4b454e5360000000000000000000000000600082015250565b60006133b36014836125aa565b91506133be8261337d565b602082019050919050565b600060208201905081810360008301526133e2816133a6565b9050919050565b7f496e73756666696369656e742066756e64732e20596f75206e656564206d6f7260008201527f6520455448210000000000000000000000000000000000000000000000000000602082015250565b60006134456026836125aa565b9150613450826133e9565b604082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b60006134868261265a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134b9576134b8612fb6565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613520602f836125aa565b915061352b826134c4565b604082019050919050565b6000602082019050818103600083015261354f81613513565b9050919050565b600081905092915050565b600061356c8261259f565b6135768185613556565b93506135868185602086016125bb565b80840191505092915050565b60008190508160005260206000209050919050565b600081546135b481612bac565b6135be8186613556565b945060018216600081146135d957600181146135ea5761361d565b60ff1983168652818601935061361d565b6135f385613592565b60005b83811015613615578154818901526001820191506020810190506135f6565b838801955050505b50505092915050565b60006136328286613561565b915061363e8285613561565b915061364a82846135a7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136b36026836125aa565b91506136be82613657565b604082019050919050565b600060208201905081810360008301526136e2816136a6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613745602c836125aa565b9150613750826136e9565b604082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006137d76029836125aa565b91506137e28261377b565b604082019050919050565b60006020820190508181036000830152613806816137ca565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138696024836125aa565b91506138748261380d565b604082019050919050565b600060208201905081810360008301526138988161385c565b9050919050565b60006138aa8261265a565b91506138b58361265a565b9250828210156138c8576138c7612fb6565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061392f6032836125aa565b915061393a826138d3565b604082019050919050565b6000602082019050818103600083015261395e81613922565b9050919050565b60006139708261265a565b915061397b8361265a565b92508261398b5761398a61303f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006139ec826139c5565b6139f681856139d0565b9350613a068185602086016125bb565b613a0f816125ee565b840191505092915050565b6000608082019050613a2f60008301876126ef565b613a3c60208301866126ef565b613a496040830185612785565b8181036060830152613a5b81846139e1565b905095945050505050565b600081519050613a7581612510565b92915050565b600060208284031215613a9157613a906124da565b5b6000613a9f84828501613a66565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ade6020836125aa565b9150613ae982613aa8565b602082019050919050565b60006020820190508181036000830152613b0d81613ad1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b4a601c836125aa565b9150613b5582613b14565b602082019050919050565b60006020820190508181036000830152613b7981613b3d565b905091905056fea2646970667358221220ce06c9f5f1f952aa221cffaef00356f53aaf452f67e9ffb1985599f20cc60e2d64736f6c63430008090033697066733a2f2f516d6231574e7a525a366a63537a467061387a5344413762716b6a474167555056394145337553645752624d7a742f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063c87b56dd11610064578063c87b56dd146105a6578063e985e9c5146105e3578063f2fde38b14610620578063f47c84c514610649576101b7565b8063b88d4fde14610536578063c358575c1461055f578063c66828621461057b576101b7565b806395d89b41116100c657806395d89b411461048c5780639abc8320146104b7578063a035b1fe146104e2578063a22cb4651461050d576101b7565b80638da5cb5b1461040d5780638ecad7211461043857806391b7f5ed14610463576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec578063853828b614610403576101b7565b806342842e0e146102f557806355f804b31461031e578063564566a814610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806334918dfd146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061253c565b610674565b6040516101f09190612584565b60405180910390f35b34801561020557600080fd5b5061020e610756565b60405161021b9190612638565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612690565b6107e8565b60405161025891906126fe565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612745565b61086d565b005b34801561029657600080fd5b5061029f610985565b6040516102ac9190612794565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906127af565b61098b565b005b3480156102ea57600080fd5b506102f36109eb565b005b34801561030157600080fd5b5061031c600480360381019061031791906127af565b610a93565b005b34801561032a57600080fd5b5061034560048036038101906103409190612937565b610ab3565b005b34801561035357600080fd5b5061035c610b49565b6040516103699190612584565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190612690565b610b5c565b6040516103a691906126fe565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612980565b610c0e565b6040516103e39190612794565b60405180910390f35b3480156103f857600080fd5b50610401610cc6565b005b61040b610d4e565b005b34801561041957600080fd5b50610422610f59565b60405161042f91906126fe565b60405180910390f35b34801561044457600080fd5b5061044d610f83565b60405161045a9190612794565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612690565b610f88565b005b34801561049857600080fd5b506104a161100e565b6040516104ae9190612638565b60405180910390f35b3480156104c357600080fd5b506104cc6110a0565b6040516104d99190612638565b60405180910390f35b3480156104ee57600080fd5b506104f761112e565b6040516105049190612794565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f91906129d9565b611134565b005b34801561054257600080fd5b5061055d60048036038101906105589190612aba565b6112b5565b005b61057960048036038101906105749190612690565b611317565b005b34801561058757600080fd5b50610590611587565b60405161059d9190612638565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612690565b611615565b6040516105da9190612638565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190612b3d565b6116bf565b6040516106179190612584565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612980565b611753565b005b34801561065557600080fd5b5061065e61184b565b60405161066b9190612794565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e82611864565b5b9050919050565b60606000805461076590612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612bac565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826118ce565b610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612c50565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087882610b5c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090612ce2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090861193a565b73ffffffffffffffffffffffffffffffffffffffff16148061093757506109368161093161193a565b6116bf565b5b610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612d74565b60405180910390fd5b6109808383611942565b505050565b60095481565b61099c61099661193a565b826119fb565b6109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290612e06565b60405180910390fd5b6109e6838383611ad9565b505050565b6109f361193a565b73ffffffffffffffffffffffffffffffffffffffff16610a11610f59565b73ffffffffffffffffffffffffffffffffffffffff1614610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90612e72565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b610aae838383604051806020016040528060008152506112b5565b505050565b610abb61193a565b73ffffffffffffffffffffffffffffffffffffffff16610ad9610f59565b73ffffffffffffffffffffffffffffffffffffffff1614610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690612e72565b60405180910390fd5b80600b9080519060200190610b4592919061242d565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612f04565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690612f96565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cce61193a565b73ffffffffffffffffffffffffffffffffffffffff16610cec610f59565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612e72565b60405180910390fd5b610d4c6000611d35565b565b610d5661193a565b73ffffffffffffffffffffffffffffffffffffffff16610d74610f59565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190612e72565b60405180910390fd5b600047905060006064605083610de09190612fe5565b610dea919061306e565b905060006064601484610dfd9190612fe5565b610e07919061306e565b9050600073a477c13e0f86170f855d06efde32858ad9f1894173ffffffffffffffffffffffffffffffffffffffff1683604051610e43906130d0565b60006040518083038185875af1925050503d8060008114610e80576040519150601f19603f3d011682016040523d82523d6000602084013e610e85565b606091505b50509050600073233e73ff2e0369c401661c3739849bc98e20446473ffffffffffffffffffffffffffffffffffffffff1683604051610ec3906130d0565b60006040518083038185875af1925050503d8060008114610f00576040519150601f19603f3d011682016040523d82523d6000602084013e610f05565b606091505b50509050818015610f135750805b610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613131565b60405180910390fd5b5050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b610f9061193a565b73ffffffffffffffffffffffffffffffffffffffff16610fae610f59565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90612e72565b60405180910390fd5b8060078190555050565b60606001805461101d90612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461104990612bac565b80156110965780601f1061106b57610100808354040283529160200191611096565b820191906000526020600020905b81548152906001019060200180831161107957829003601f168201915b5050505050905090565b600b80546110ad90612bac565b80601f01602080910402602001604051908101604052809291908181526020018280546110d990612bac565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b505050505081565b60075481565b61113c61193a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061319d565b60405180910390fd5b80600560006111b761193a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126461193a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112a99190612584565b60405180910390a35050565b6112c66112c061193a565b836119fb565b611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90612e06565b60405180910390fd5b61131184848484611dfb565b50505050565b600860009054906101000a900460ff16611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90613209565b60405180910390fd5b600a8111156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a19061329b565b60405180910390fd5b600a81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f791906132bb565b1115611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f9061335d565b60405180910390fd5b6000600954905061115c828261144e91906132bb565b111561148f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611486906133c9565b60405180910390fd5b346007548361149e9190612fe5565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061345b565b60405180910390fd5b6000600190505b828111611513576115023382846114fd91906132bb565b611e57565b8061150c9061347b565b90506114e6565b5081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156391906132bb565b92505081905550816009600082825461157c91906132bb565b925050819055505050565b600c805461159490612bac565b80601f01602080910402602001604051908101604052809291908181526020018280546115c090612bac565b801561160d5780601f106115e25761010080835404028352916020019161160d565b820191906000526020600020905b8154815290600101906020018083116115f057829003601f168201915b505050505081565b6060611620826118ce565b61165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613536565b60405180910390fd5b6000611669611e75565b9050600081511161168957604051806020016040528060008152506116b7565b8061169384611f07565b600c6040516020016116a793929190613626565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61175b61193a565b73ffffffffffffffffffffffffffffffffffffffff16611779610f59565b73ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690612e72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561183f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611836906136c9565b60405180910390fd5b61184881611d35565b50565b61115c81565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119b583610b5c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a06826118ce565b611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c9061375b565b60405180910390fd5b6000611a5083610b5c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611abf57508373ffffffffffffffffffffffffffffffffffffffff16611aa7846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ad05750611acf81856116bf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611af982610b5c565b73ffffffffffffffffffffffffffffffffffffffff1614611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b46906137ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb69061387f565b60405180910390fd5b611bca838383612068565b611bd5600082611942565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c25919061389f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7c91906132bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e06848484611ad9565b611e128484848461206d565b611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890613945565b60405180910390fd5b50505050565b611e71828260405180602001604052806000815250612204565b5050565b6060600b8054611e8490612bac565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb090612bac565b8015611efd5780601f10611ed257610100808354040283529160200191611efd565b820191906000526020600020905b815481529060010190602001808311611ee057829003601f168201915b5050505050905090565b60606000821415611f4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612063565b600082905060005b60008214611f81578080611f6a9061347b565b915050600a82611f7a919061306e565b9150611f57565b60008167ffffffffffffffff811115611f9d57611f9c61280c565b5b6040519080825280601f01601f191660200182016040528015611fcf5781602001600182028036833780820191505090505b5090505b6000851461205c57600182611fe8919061389f565b9150600a85611ff79190613965565b603061200391906132bb565b60f81b81838151811061201957612018613996565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612055919061306e565b9450611fd3565b8093505050505b919050565b505050565b600061208e8473ffffffffffffffffffffffffffffffffffffffff16611851565b156121f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b761193a565b8786866040518563ffffffff1660e01b81526004016120d99493929190613a1a565b602060405180830381600087803b1580156120f357600080fd5b505af192505050801561212457506040513d601f19601f820116820180604052508101906121219190613a7b565b60015b6121a7573d8060008114612154576040519150601f19603f3d011682016040523d82523d6000602084013e612159565b606091505b5060008151141561219f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219690613945565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121fc565b600190505b949350505050565b61220e838361225f565b61221b600084848461206d565b61225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613945565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690613af4565b60405180910390fd5b6122d8816118ce565b15612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90613b60565b60405180910390fd5b61232460008383612068565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461237491906132bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461243990612bac565b90600052602060002090601f01602090048101928261245b57600085556124a2565b82601f1061247457805160ff19168380011785556124a2565b828001600101855582156124a2579182015b828111156124a1578251825591602001919060010190612486565b5b5090506124af91906124b3565b5090565b5b808211156124cc5760008160009055506001016124b4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612519816124e4565b811461252457600080fd5b50565b60008135905061253681612510565b92915050565b600060208284031215612552576125516124da565b5b600061256084828501612527565b91505092915050565b60008115159050919050565b61257e81612569565b82525050565b60006020820190506125996000830184612575565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125d95780820151818401526020810190506125be565b838111156125e8576000848401525b50505050565b6000601f19601f8301169050919050565b600061260a8261259f565b61261481856125aa565b93506126248185602086016125bb565b61262d816125ee565b840191505092915050565b6000602082019050818103600083015261265281846125ff565b905092915050565b6000819050919050565b61266d8161265a565b811461267857600080fd5b50565b60008135905061268a81612664565b92915050565b6000602082840312156126a6576126a56124da565b5b60006126b48482850161267b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e8826126bd565b9050919050565b6126f8816126dd565b82525050565b600060208201905061271360008301846126ef565b92915050565b612722816126dd565b811461272d57600080fd5b50565b60008135905061273f81612719565b92915050565b6000806040838503121561275c5761275b6124da565b5b600061276a85828601612730565b925050602061277b8582860161267b565b9150509250929050565b61278e8161265a565b82525050565b60006020820190506127a96000830184612785565b92915050565b6000806000606084860312156127c8576127c76124da565b5b60006127d686828701612730565b93505060206127e786828701612730565b92505060406127f88682870161267b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612844826125ee565b810181811067ffffffffffffffff821117156128635761286261280c565b5b80604052505050565b60006128766124d0565b9050612882828261283b565b919050565b600067ffffffffffffffff8211156128a2576128a161280c565b5b6128ab826125ee565b9050602081019050919050565b82818337600083830152505050565b60006128da6128d584612887565b61286c565b9050828152602081018484840111156128f6576128f5612807565b5b6129018482856128b8565b509392505050565b600082601f83011261291e5761291d612802565b5b813561292e8482602086016128c7565b91505092915050565b60006020828403121561294d5761294c6124da565b5b600082013567ffffffffffffffff81111561296b5761296a6124df565b5b61297784828501612909565b91505092915050565b600060208284031215612996576129956124da565b5b60006129a484828501612730565b91505092915050565b6129b681612569565b81146129c157600080fd5b50565b6000813590506129d3816129ad565b92915050565b600080604083850312156129f0576129ef6124da565b5b60006129fe85828601612730565b9250506020612a0f858286016129c4565b9150509250929050565b600067ffffffffffffffff821115612a3457612a3361280c565b5b612a3d826125ee565b9050602081019050919050565b6000612a5d612a5884612a19565b61286c565b905082815260208101848484011115612a7957612a78612807565b5b612a848482856128b8565b509392505050565b600082601f830112612aa157612aa0612802565b5b8135612ab1848260208601612a4a565b91505092915050565b60008060008060808587031215612ad457612ad36124da565b5b6000612ae287828801612730565b9450506020612af387828801612730565b9350506040612b048782880161267b565b925050606085013567ffffffffffffffff811115612b2557612b246124df565b5b612b3187828801612a8c565b91505092959194509250565b60008060408385031215612b5457612b536124da565b5b6000612b6285828601612730565b9250506020612b7385828601612730565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bc457607f821691505b60208210811415612bd857612bd7612b7d565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612c3a602c836125aa565b9150612c4582612bde565b604082019050919050565b60006020820190508181036000830152612c6981612c2d565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ccc6021836125aa565b9150612cd782612c70565b604082019050919050565b60006020820190508181036000830152612cfb81612cbf565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612d5e6038836125aa565b9150612d6982612d02565b604082019050919050565b60006020820190508181036000830152612d8d81612d51565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612df06031836125aa565b9150612dfb82612d94565b604082019050919050565b60006020820190508181036000830152612e1f81612de3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e5c6020836125aa565b9150612e6782612e26565b602082019050919050565b60006020820190508181036000830152612e8b81612e4f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612eee6029836125aa565b9150612ef982612e92565b604082019050919050565b60006020820190508181036000830152612f1d81612ee1565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612f80602a836125aa565b9150612f8b82612f24565b604082019050919050565b60006020820190508181036000830152612faf81612f73565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ff08261265a565b9150612ffb8361265a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561303457613033612fb6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130798261265a565b91506130848361265a565b9250826130945761309361303f565b5b828204905092915050565b600081905092915050565b50565b60006130ba60008361309f565b91506130c5826130aa565b600082019050919050565b60006130db826130ad565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061311b6010836125aa565b9150613126826130e5565b602082019050919050565b6000602082019050818103600083015261314a8161310e565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006131876019836125aa565b915061319282613151565b602082019050919050565b600060208201905081810360008301526131b68161317a565b9050919050565b7f5468652073616c65206973207061757365642e00000000000000000000000000600082015250565b60006131f36013836125aa565b91506131fe826131bd565b602082019050919050565b60006020820190508181036000830152613222816131e6565b9050919050565b7f596f752063616e206f6e6c79206d696e742061206d6178696d756d206f66203160008201527f302042616c6c657220426561727320706572207472616e73616374696f6e2e00602082015250565b6000613285603f836125aa565b915061329082613229565b604082019050919050565b600060208201905081810360008301526132b481613278565b9050919050565b60006132c68261265a565b91506132d18361265a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330657613305612fb6565b5b828201905092915050565b7f596f752063616e206f6e6c79206d696e74203130207065722077616c6c65742e600082015250565b60006133476020836125aa565b915061335282613311565b602082019050919050565b600060208201905081810360008301526133768161333a565b9050919050565b7f4578636565647320604d41585f544f4b454e5360000000000000000000000000600082015250565b60006133b36014836125aa565b91506133be8261337d565b602082019050919050565b600060208201905081810360008301526133e2816133a6565b9050919050565b7f496e73756666696369656e742066756e64732e20596f75206e656564206d6f7260008201527f6520455448210000000000000000000000000000000000000000000000000000602082015250565b60006134456026836125aa565b9150613450826133e9565b604082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b60006134868261265a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134b9576134b8612fb6565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613520602f836125aa565b915061352b826134c4565b604082019050919050565b6000602082019050818103600083015261354f81613513565b9050919050565b600081905092915050565b600061356c8261259f565b6135768185613556565b93506135868185602086016125bb565b80840191505092915050565b60008190508160005260206000209050919050565b600081546135b481612bac565b6135be8186613556565b945060018216600081146135d957600181146135ea5761361d565b60ff1983168652818601935061361d565b6135f385613592565b60005b83811015613615578154818901526001820191506020810190506135f6565b838801955050505b50505092915050565b60006136328286613561565b915061363e8285613561565b915061364a82846135a7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136b36026836125aa565b91506136be82613657565b604082019050919050565b600060208201905081810360008301526136e2816136a6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613745602c836125aa565b9150613750826136e9565b604082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006137d76029836125aa565b91506137e28261377b565b604082019050919050565b60006020820190508181036000830152613806816137ca565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138696024836125aa565b91506138748261380d565b604082019050919050565b600060208201905081810360008301526138988161385c565b9050919050565b60006138aa8261265a565b91506138b58361265a565b9250828210156138c8576138c7612fb6565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061392f6032836125aa565b915061393a826138d3565b604082019050919050565b6000602082019050818103600083015261395e81613922565b9050919050565b60006139708261265a565b915061397b8361265a565b92508261398b5761398a61303f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006139ec826139c5565b6139f681856139d0565b9350613a068185602086016125bb565b613a0f816125ee565b840191505092915050565b6000608082019050613a2f60008301876126ef565b613a3c60208301866126ef565b613a496040830185612785565b8181036060830152613a5b81846139e1565b905095945050505050565b600081519050613a7581612510565b92915050565b600060208284031215613a9157613a906124da565b5b6000613a9f84828501613a66565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ade6020836125aa565b9150613ae982613aa8565b602082019050919050565b60006020820190508181036000830152613b0d81613ad1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b4a601c836125aa565b9150613b5582613b14565b602082019050919050565b60006020820190508181036000830152613b7981613b3d565b905091905056fea2646970667358221220ce06c9f5f1f952aa221cffaef00356f53aaf452f67e9ffb1985599f20cc60e2d64736f6c63430008090033

Deployed Bytecode Sourcemap

35149:3087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20645:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23149:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22672:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35461:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24039:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36794:91;;;;;;;;;;;;;:::i;:::-;;24449:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36893:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35430:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21284:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21014:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34417:94;;;;;;;;;;;;;:::i;:::-;;37095:500;;;:::i;:::-;;33766:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35377:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37001:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21759:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35554:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35330:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23442:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24705:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35986:771;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35582:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37605:481;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23808:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34666:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35230:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20645:305;20747:4;20799:25;20784:40;;;:11;:40;;;;:105;;;;20856:33;20841:48;;;:11;:48;;;;20784:105;:158;;;;20906:36;20930:11;20906:23;:36::i;:::-;20784:158;20764:178;;20645:305;;;:::o;21590:100::-;21644:13;21677:5;21670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21590:100;:::o;23149:221::-;23225:7;23253:16;23261:7;23253;:16::i;:::-;23245:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23338:15;:24;23354:7;23338:24;;;;;;;;;;;;;;;;;;;;;23331:31;;23149:221;;;:::o;22672:411::-;22753:13;22769:23;22784:7;22769:14;:23::i;:::-;22753:39;;22817:5;22811:11;;:2;:11;;;;22803:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22911:5;22895:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22920:37;22937:5;22944:12;:10;:12::i;:::-;22920:16;:37::i;:::-;22895:62;22873:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23054:21;23063:2;23067:7;23054:8;:21::i;:::-;22742:341;22672:411;;:::o;35461:26::-;;;;:::o;24039:339::-;24234:41;24253:12;:10;:12::i;:::-;24267:7;24234:18;:41::i;:::-;24226:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24342:28;24352:4;24358:2;24362:7;24342:9;:28::i;:::-;24039:339;;;:::o;36794:91::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36865:12:::1;;;;;;;;;;;36864:13;36849:12;;:28;;;;;;;;;;;;;;;;;;36794:91::o:0;24449:185::-;24587:39;24604:4;24610:2;24614:7;24587:39;;;;;;;;;;;;:16;:39::i;:::-;24449:185;;;:::o;36893:100::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36977:8:::1;36967:7;:18;;;;;;;;;;;;:::i;:::-;;36893:100:::0;:::o;35430:24::-;;;;;;;;;;;;;:::o;21284:239::-;21356:7;21376:13;21392:7;:16;21400:7;21392:16;;;;;;;;;;;;;;;;;;;;;21376:32;;21444:1;21427:19;;:5;:19;;;;21419:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21510:5;21503:12;;;21284:239;;;:::o;21014:208::-;21086:7;21131:1;21114:19;;:5;:19;;;;21106:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21198:9;:16;21208:5;21198:16;;;;;;;;;;;;;;;;21191:23;;21014:208;;;:::o;34417:94::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34482:21:::1;34500:1;34482:9;:21::i;:::-;34417:94::o:0;37095:500::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37156:15:::1;37174:21;37156:39;;37206:18;37242:3;37237:2;37227:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;37206:39;;37256:18;37292:3;37287:2;37277:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;37256:39;;37307:16;37337:42;37329:56;;37393:10;37329:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37306:102;;;37420:16;37450:42;37442:56;;37506:10;37442:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37419:102;;;37540:11;:26;;;;;37555:11;37540:26;37532:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37145:450;;;;;37095:500::o:0;33766:87::-;33812:7;33839:6;;;;;;;;;;;33832:13;;33766:87;:::o;35377:44::-;35419:2;35377:44;:::o;37001:86::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37073:6:::1;37065:5;:14;;;;37001:86:::0;:::o;21759:104::-;21815:13;21848:7;21841:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21759:104;:::o;35554:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35330:40::-;;;;:::o;23442:295::-;23557:12;:10;:12::i;:::-;23545:24;;:8;:24;;;;23537:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23657:8;23612:18;:32;23631:12;:10;:12::i;:::-;23612:32;;;;;;;;;;;;;;;:42;23645:8;23612:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23710:8;23681:48;;23696:12;:10;:12::i;:::-;23681:48;;;23720:8;23681:48;;;;;;:::i;:::-;;;;;;;;23442:295;;:::o;24705:328::-;24880:41;24899:12;:10;:12::i;:::-;24913:7;24880:18;:41::i;:::-;24872:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24986:39;25000:4;25006:2;25010:7;25019:5;24986:13;:39::i;:::-;24705:328;;;;:::o;35986:771::-;36060:12;;;;;;;;;;;36052:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;35419:2;36115:10;:29;;36107:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;36275:2;36261:10;36231:15;:27;36247:10;36231:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:46;;36223:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;36325:22;36350:11;;36325:36;;35267:4;36397:10;36380:14;:27;;;;:::i;:::-;:41;;36372:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;36487:9;36478:5;;36465:10;:18;;;;:::i;:::-;:31;;36457:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;36557:9;36569:1;36557:13;;36552:110;36577:10;36572:1;:15;36552:110;;36609:41;36619:10;36648:1;36631:14;:18;;;;:::i;:::-;36609:9;:41::i;:::-;36589:3;;;;:::i;:::-;;;36552:110;;;;36703:10;36672:15;:27;36688:10;36672:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;36739:10;36724:11;;:25;;;;;;;:::i;:::-;;;;;;;;36041:716;35986:771;:::o;35582:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37605:481::-;37723:13;37776:16;37784:7;37776;:16::i;:::-;37754:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;37880:28;37911:10;:8;:10::i;:::-;37880:41;;37970:1;37945:14;37939:28;:32;:141;;;;;;;;;;;;;;;;;38011:14;38027:18;:7;:16;:18::i;:::-;38047:13;37994:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37939:141;37932:148;;;37605:481;;;:::o;23808:164::-;23905:4;23929:18;:25;23948:5;23929:25;;;;;;;;;;;;;;;:35;23955:8;23929:35;;;;;;;;;;;;;;;;;;;;;;;;;23922:42;;23808:164;;;;:::o;34666:192::-;33997:12;:10;:12::i;:::-;33986:23;;:7;:5;:7::i;:::-;:23;;;33978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34775:1:::1;34755:22;;:8;:22;;;;34747:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34831:19;34841:8;34831:9;:19::i;:::-;34666:192:::0;:::o;35230:41::-;35267:4;35230:41;:::o;2836:387::-;2896:4;3104:12;3171:7;3159:20;3151:28;;3214:1;3207:4;:8;3200:15;;;2836:387;;;:::o;12776:157::-;12861:4;12900:25;12885:40;;;:11;:40;;;;12878:47;;12776:157;;;:::o;26543:127::-;26608:4;26660:1;26632:30;;:7;:16;26640:7;26632:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26625:37;;26543:127;;;:::o;19099:98::-;19152:7;19179:10;19172:17;;19099:98;:::o;30525:174::-;30627:2;30600:15;:24;30616:7;30600:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30683:7;30679:2;30645:46;;30654:23;30669:7;30654:14;:23::i;:::-;30645:46;;;;;;;;;;;;30525:174;;:::o;26837:348::-;26930:4;26955:16;26963:7;26955;:16::i;:::-;26947:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27031:13;27047:23;27062:7;27047:14;:23::i;:::-;27031:39;;27100:5;27089:16;;:7;:16;;;:51;;;;27133:7;27109:31;;:20;27121:7;27109:11;:20::i;:::-;:31;;;27089:51;:87;;;;27144:32;27161:5;27168:7;27144:16;:32::i;:::-;27089:87;27081:96;;;26837:348;;;;:::o;29829:578::-;29988:4;29961:31;;:23;29976:7;29961:14;:23::i;:::-;:31;;;29953:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30071:1;30057:16;;:2;:16;;;;30049:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30127:39;30148:4;30154:2;30158:7;30127:20;:39::i;:::-;30231:29;30248:1;30252:7;30231:8;:29::i;:::-;30292:1;30273:9;:15;30283:4;30273:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30321:1;30304:9;:13;30314:2;30304:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30352:2;30333:7;:16;30341:7;30333:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30391:7;30387:2;30372:27;;30381:4;30372:27;;;;;;;;;;;;29829:578;;;:::o;34866:173::-;34922:16;34941:6;;;;;;;;;;;34922:25;;34967:8;34958:6;;:17;;;;;;;;;;;;;;;;;;35022:8;34991:40;;35012:8;34991:40;;;;;;;;;;;;34911:128;34866:173;:::o;25915:315::-;26072:28;26082:4;26088:2;26092:7;26072:9;:28::i;:::-;26119:48;26142:4;26148:2;26152:7;26161:5;26119:22;:48::i;:::-;26111:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25915:315;;;;:::o;27527:110::-;27603:26;27613:2;27617:7;27603:26;;;;;;;;;;;;:9;:26::i;:::-;27527:110;;:::o;38123:108::-;38183:13;38216:7;38209:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38123:108;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;32635:126::-;;;;:::o;31264:799::-;31419:4;31440:15;:2;:13;;;:15::i;:::-;31436:620;;;31492:2;31476:36;;;31513:12;:10;:12::i;:::-;31527:4;31533:7;31542:5;31476:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31472:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31735:1;31718:6;:13;:18;31714:272;;;31761:60;;;;;;;;;;:::i;:::-;;;;;;;;31714:272;31936:6;31930:13;31921:6;31917:2;31913:15;31906:38;31472:529;31609:41;;;31599:51;;;:6;:51;;;;31592:58;;;;;31436:620;32040:4;32033:11;;31264:799;;;;;;;:::o;27864:321::-;27994:18;28000:2;28004:7;27994:5;:18::i;:::-;28045:54;28076:1;28080:2;28084:7;28093:5;28045:22;:54::i;:::-;28023:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27864:321;;;:::o;28521:382::-;28615:1;28601:16;;:2;:16;;;;28593:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28674:16;28682:7;28674;:16::i;:::-;28673:17;28665:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28736:45;28765:1;28769:2;28773:7;28736:20;:45::i;:::-;28811:1;28794:9;:13;28804:2;28794:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28842:2;28823:7;:16;28831:7;28823:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28887:7;28883:2;28862:33;;28879:1;28862:33;;;;;;;;;;;;28521:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:231::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:14;12837:2;12829:6;12825:15;12818:39;12633:231;:::o;12870:366::-;13012:3;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13109:93;13198:3;13109:93;:::i;:::-;13227:2;13222:3;13218:12;13211:19;;12870:366;;;:::o;13242:419::-;13408:4;13446:2;13435:9;13431:18;13423:26;;13495:9;13489:4;13485:20;13481:1;13470:9;13466:17;13459:47;13523:131;13649:4;13523:131;:::i;:::-;13515:139;;13242:419;;;:::o;13667:220::-;13807:34;13803:1;13795:6;13791:14;13784:58;13876:3;13871:2;13863:6;13859:15;13852:28;13667:220;:::o;13893:366::-;14035:3;14056:67;14120:2;14115:3;14056:67;:::i;:::-;14049:74;;14132:93;14221:3;14132:93;:::i;:::-;14250:2;14245:3;14241:12;14234:19;;13893:366;;;:::o;14265:419::-;14431:4;14469:2;14458:9;14454:18;14446:26;;14518:9;14512:4;14508:20;14504:1;14493:9;14489:17;14482:47;14546:131;14672:4;14546:131;:::i;:::-;14538:139;;14265:419;;;:::o;14690:243::-;14830:34;14826:1;14818:6;14814:14;14807:58;14899:26;14894:2;14886:6;14882:15;14875:51;14690:243;:::o;14939:366::-;15081:3;15102:67;15166:2;15161:3;15102:67;:::i;:::-;15095:74;;15178:93;15267:3;15178:93;:::i;:::-;15296:2;15291:3;15287:12;15280:19;;14939:366;;;:::o;15311:419::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15564:9;15558:4;15554:20;15550:1;15539:9;15535:17;15528:47;15592:131;15718:4;15592:131;:::i;:::-;15584:139;;15311:419;;;:::o;15736:236::-;15876:34;15872:1;15864:6;15860:14;15853:58;15945:19;15940:2;15932:6;15928:15;15921:44;15736:236;:::o;15978:366::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:419::-;16516:4;16554:2;16543:9;16539:18;16531:26;;16603:9;16597:4;16593:20;16589:1;16578:9;16574:17;16567:47;16631:131;16757:4;16631:131;:::i;:::-;16623:139;;16350:419;;;:::o;16775:182::-;16915:34;16911:1;16903:6;16899:14;16892:58;16775:182;:::o;16963:366::-;17105:3;17126:67;17190:2;17185:3;17126:67;:::i;:::-;17119:74;;17202:93;17291:3;17202:93;:::i;:::-;17320:2;17315:3;17311:12;17304:19;;16963:366;;;:::o;17335:419::-;17501:4;17539:2;17528:9;17524:18;17516:26;;17588:9;17582:4;17578:20;17574:1;17563:9;17559:17;17552:47;17616:131;17742:4;17616:131;:::i;:::-;17608:139;;17335:419;;;:::o;17760:228::-;17900:34;17896:1;17888:6;17884:14;17877:58;17969:11;17964:2;17956:6;17952:15;17945:36;17760:228;:::o;17994:366::-;18136:3;18157:67;18221:2;18216:3;18157:67;:::i;:::-;18150:74;;18233:93;18322:3;18233:93;:::i;:::-;18351:2;18346:3;18342:12;18335:19;;17994:366;;;:::o;18366:419::-;18532:4;18570:2;18559:9;18555:18;18547:26;;18619:9;18613:4;18609:20;18605:1;18594:9;18590:17;18583:47;18647:131;18773:4;18647:131;:::i;:::-;18639:139;;18366:419;;;:::o;18791:229::-;18931:34;18927:1;18919:6;18915:14;18908:58;19000:12;18995:2;18987:6;18983:15;18976:37;18791:229;:::o;19026:366::-;19168:3;19189:67;19253:2;19248:3;19189:67;:::i;:::-;19182:74;;19265:93;19354:3;19265:93;:::i;:::-;19383:2;19378:3;19374:12;19367:19;;19026:366;;;:::o;19398:419::-;19564:4;19602:2;19591:9;19587:18;19579:26;;19651:9;19645:4;19641:20;19637:1;19626:9;19622:17;19615:47;19679:131;19805:4;19679:131;:::i;:::-;19671:139;;19398:419;;;:::o;19823:180::-;19871:77;19868:1;19861:88;19968:4;19965:1;19958:15;19992:4;19989:1;19982:15;20009:348;20049:7;20072:20;20090:1;20072:20;:::i;:::-;20067:25;;20106:20;20124:1;20106:20;:::i;:::-;20101:25;;20294:1;20226:66;20222:74;20219:1;20216:81;20211:1;20204:9;20197:17;20193:105;20190:131;;;20301:18;;:::i;:::-;20190:131;20349:1;20346;20342:9;20331:20;;20009:348;;;;:::o;20363:180::-;20411:77;20408:1;20401:88;20508:4;20505:1;20498:15;20532:4;20529:1;20522:15;20549:185;20589:1;20606:20;20624:1;20606:20;:::i;:::-;20601:25;;20640:20;20658:1;20640:20;:::i;:::-;20635:25;;20679:1;20669:35;;20684:18;;:::i;:::-;20669:35;20726:1;20723;20719:9;20714:14;;20549:185;;;;:::o;20740:147::-;20841:11;20878:3;20863:18;;20740:147;;;;:::o;20893:114::-;;:::o;21013:398::-;21172:3;21193:83;21274:1;21269:3;21193:83;:::i;:::-;21186:90;;21285:93;21374:3;21285:93;:::i;:::-;21403:1;21398:3;21394:11;21387:18;;21013:398;;;:::o;21417:379::-;21601:3;21623:147;21766:3;21623:147;:::i;:::-;21616:154;;21787:3;21780:10;;21417:379;;;:::o;21802:166::-;21942:18;21938:1;21930:6;21926:14;21919:42;21802:166;:::o;21974:366::-;22116:3;22137:67;22201:2;22196:3;22137:67;:::i;:::-;22130:74;;22213:93;22302:3;22213:93;:::i;:::-;22331:2;22326:3;22322:12;22315:19;;21974:366;;;:::o;22346:419::-;22512:4;22550:2;22539:9;22535:18;22527:26;;22599:9;22593:4;22589:20;22585:1;22574:9;22570:17;22563:47;22627:131;22753:4;22627:131;:::i;:::-;22619:139;;22346:419;;;:::o;22771:175::-;22911:27;22907:1;22899:6;22895:14;22888:51;22771:175;:::o;22952:366::-;23094:3;23115:67;23179:2;23174:3;23115:67;:::i;:::-;23108:74;;23191:93;23280:3;23191:93;:::i;:::-;23309:2;23304:3;23300:12;23293:19;;22952:366;;;:::o;23324:419::-;23490:4;23528:2;23517:9;23513:18;23505:26;;23577:9;23571:4;23567:20;23563:1;23552:9;23548:17;23541:47;23605:131;23731:4;23605:131;:::i;:::-;23597:139;;23324:419;;;:::o;23749:169::-;23889:21;23885:1;23877:6;23873:14;23866:45;23749:169;:::o;23924:366::-;24066:3;24087:67;24151:2;24146:3;24087:67;:::i;:::-;24080:74;;24163:93;24252:3;24163:93;:::i;:::-;24281:2;24276:3;24272:12;24265:19;;23924:366;;;:::o;24296:419::-;24462:4;24500:2;24489:9;24485:18;24477:26;;24549:9;24543:4;24539:20;24535:1;24524:9;24520:17;24513:47;24577:131;24703:4;24577:131;:::i;:::-;24569:139;;24296:419;;;:::o;24721:250::-;24861:34;24857:1;24849:6;24845:14;24838:58;24930:33;24925:2;24917:6;24913:15;24906:58;24721:250;:::o;24977:366::-;25119:3;25140:67;25204:2;25199:3;25140:67;:::i;:::-;25133:74;;25216:93;25305:3;25216:93;:::i;:::-;25334:2;25329:3;25325:12;25318:19;;24977:366;;;:::o;25349:419::-;25515:4;25553:2;25542:9;25538:18;25530:26;;25602:9;25596:4;25592:20;25588:1;25577:9;25573:17;25566:47;25630:131;25756:4;25630:131;:::i;:::-;25622:139;;25349:419;;;:::o;25774:305::-;25814:3;25833:20;25851:1;25833:20;:::i;:::-;25828:25;;25867:20;25885:1;25867:20;:::i;:::-;25862:25;;26021:1;25953:66;25949:74;25946:1;25943:81;25940:107;;;26027:18;;:::i;:::-;25940:107;26071:1;26068;26064:9;26057:16;;25774:305;;;;:::o;26085:182::-;26225:34;26221:1;26213:6;26209:14;26202:58;26085:182;:::o;26273:366::-;26415:3;26436:67;26500:2;26495:3;26436:67;:::i;:::-;26429:74;;26512:93;26601:3;26512:93;:::i;:::-;26630:2;26625:3;26621:12;26614:19;;26273:366;;;:::o;26645:419::-;26811:4;26849:2;26838:9;26834:18;26826:26;;26898:9;26892:4;26888:20;26884:1;26873:9;26869:17;26862:47;26926:131;27052:4;26926:131;:::i;:::-;26918:139;;26645:419;;;:::o;27070:170::-;27210:22;27206:1;27198:6;27194:14;27187:46;27070:170;:::o;27246:366::-;27388:3;27409:67;27473:2;27468:3;27409:67;:::i;:::-;27402:74;;27485:93;27574:3;27485:93;:::i;:::-;27603:2;27598:3;27594:12;27587:19;;27246:366;;;:::o;27618:419::-;27784:4;27822:2;27811:9;27807:18;27799:26;;27871:9;27865:4;27861:20;27857:1;27846:9;27842:17;27835:47;27899:131;28025:4;27899:131;:::i;:::-;27891:139;;27618:419;;;:::o;28043:225::-;28183:34;28179:1;28171:6;28167:14;28160:58;28252:8;28247:2;28239:6;28235:15;28228:33;28043:225;:::o;28274:366::-;28416:3;28437:67;28501:2;28496:3;28437:67;:::i;:::-;28430:74;;28513:93;28602:3;28513:93;:::i;:::-;28631:2;28626:3;28622:12;28615:19;;28274:366;;;:::o;28646:419::-;28812:4;28850:2;28839:9;28835:18;28827:26;;28899:9;28893:4;28889:20;28885:1;28874:9;28870:17;28863:47;28927:131;29053:4;28927:131;:::i;:::-;28919:139;;28646:419;;;:::o;29071:233::-;29110:3;29133:24;29151:5;29133:24;:::i;:::-;29124:33;;29179:66;29172:5;29169:77;29166:103;;;29249:18;;:::i;:::-;29166:103;29296:1;29289:5;29285:13;29278:20;;29071:233;;;:::o;29310:234::-;29450:34;29446:1;29438:6;29434:14;29427:58;29519:17;29514:2;29506:6;29502:15;29495:42;29310:234;:::o;29550:366::-;29692:3;29713:67;29777:2;29772:3;29713:67;:::i;:::-;29706:74;;29789:93;29878:3;29789:93;:::i;:::-;29907:2;29902:3;29898:12;29891:19;;29550:366;;;:::o;29922:419::-;30088:4;30126:2;30115:9;30111:18;30103:26;;30175:9;30169:4;30165:20;30161:1;30150:9;30146:17;30139:47;30203:131;30329:4;30203:131;:::i;:::-;30195:139;;29922:419;;;:::o;30347:148::-;30449:11;30486:3;30471:18;;30347:148;;;;:::o;30501:377::-;30607:3;30635:39;30668:5;30635:39;:::i;:::-;30690:89;30772:6;30767:3;30690:89;:::i;:::-;30683:96;;30788:52;30833:6;30828:3;30821:4;30814:5;30810:16;30788:52;:::i;:::-;30865:6;30860:3;30856:16;30849:23;;30611:267;30501:377;;;;:::o;30884:141::-;30933:4;30956:3;30948:11;;30979:3;30976:1;30969:14;31013:4;31010:1;31000:18;30992:26;;30884:141;;;:::o;31055:845::-;31158:3;31195:5;31189:12;31224:36;31250:9;31224:36;:::i;:::-;31276:89;31358:6;31353:3;31276:89;:::i;:::-;31269:96;;31396:1;31385:9;31381:17;31412:1;31407:137;;;;31558:1;31553:341;;;;31374:520;;31407:137;31491:4;31487:9;31476;31472:25;31467:3;31460:38;31527:6;31522:3;31518:16;31511:23;;31407:137;;31553:341;31620:38;31652:5;31620:38;:::i;:::-;31680:1;31694:154;31708:6;31705:1;31702:13;31694:154;;;31782:7;31776:14;31772:1;31767:3;31763:11;31756:35;31832:1;31823:7;31819:15;31808:26;;31730:4;31727:1;31723:12;31718:17;;31694:154;;;31877:6;31872:3;31868:16;31861:23;;31560:334;;31374:520;;31162:738;;31055:845;;;;:::o;31906:589::-;32131:3;32153:95;32244:3;32235:6;32153:95;:::i;:::-;32146:102;;32265:95;32356:3;32347:6;32265:95;:::i;:::-;32258:102;;32377:92;32465:3;32456:6;32377:92;:::i;:::-;32370:99;;32486:3;32479:10;;31906:589;;;;;;:::o;32501:225::-;32641:34;32637:1;32629:6;32625:14;32618:58;32710:8;32705:2;32697:6;32693:15;32686:33;32501:225;:::o;32732:366::-;32874:3;32895:67;32959:2;32954:3;32895:67;:::i;:::-;32888:74;;32971:93;33060:3;32971:93;:::i;:::-;33089:2;33084:3;33080:12;33073:19;;32732:366;;;:::o;33104:419::-;33270:4;33308:2;33297:9;33293:18;33285:26;;33357:9;33351:4;33347:20;33343:1;33332:9;33328:17;33321:47;33385:131;33511:4;33385:131;:::i;:::-;33377:139;;33104:419;;;:::o;33529:231::-;33669:34;33665:1;33657:6;33653:14;33646:58;33738:14;33733:2;33725:6;33721:15;33714:39;33529:231;:::o;33766:366::-;33908:3;33929:67;33993:2;33988:3;33929:67;:::i;:::-;33922:74;;34005:93;34094:3;34005:93;:::i;:::-;34123:2;34118:3;34114:12;34107:19;;33766:366;;;:::o;34138:419::-;34304:4;34342:2;34331:9;34327:18;34319:26;;34391:9;34385:4;34381:20;34377:1;34366:9;34362:17;34355:47;34419:131;34545:4;34419:131;:::i;:::-;34411:139;;34138:419;;;:::o;34563:228::-;34703:34;34699:1;34691:6;34687:14;34680:58;34772:11;34767:2;34759:6;34755:15;34748:36;34563:228;:::o;34797:366::-;34939:3;34960:67;35024:2;35019:3;34960:67;:::i;:::-;34953:74;;35036:93;35125:3;35036:93;:::i;:::-;35154:2;35149:3;35145:12;35138:19;;34797:366;;;:::o;35169:419::-;35335:4;35373:2;35362:9;35358:18;35350:26;;35422:9;35416:4;35412:20;35408:1;35397:9;35393:17;35386:47;35450:131;35576:4;35450:131;:::i;:::-;35442:139;;35169:419;;;:::o;35594:223::-;35734:34;35730:1;35722:6;35718:14;35711:58;35803:6;35798:2;35790:6;35786:15;35779:31;35594:223;:::o;35823:366::-;35965:3;35986:67;36050:2;36045:3;35986:67;:::i;:::-;35979:74;;36062:93;36151:3;36062:93;:::i;:::-;36180:2;36175:3;36171:12;36164:19;;35823:366;;;:::o;36195:419::-;36361:4;36399:2;36388:9;36384:18;36376:26;;36448:9;36442:4;36438:20;36434:1;36423:9;36419:17;36412:47;36476:131;36602:4;36476:131;:::i;:::-;36468:139;;36195:419;;;:::o;36620:191::-;36660:4;36680:20;36698:1;36680:20;:::i;:::-;36675:25;;36714:20;36732:1;36714:20;:::i;:::-;36709:25;;36753:1;36750;36747:8;36744:34;;;36758:18;;:::i;:::-;36744:34;36803:1;36800;36796:9;36788:17;;36620:191;;;;:::o;36817:237::-;36957:34;36953:1;36945:6;36941:14;36934:58;37026:20;37021:2;37013:6;37009:15;37002:45;36817:237;:::o;37060:366::-;37202:3;37223:67;37287:2;37282:3;37223:67;:::i;:::-;37216:74;;37299:93;37388:3;37299:93;:::i;:::-;37417:2;37412:3;37408:12;37401:19;;37060:366;;;:::o;37432:419::-;37598:4;37636:2;37625:9;37621:18;37613:26;;37685:9;37679:4;37675:20;37671:1;37660:9;37656:17;37649:47;37713:131;37839:4;37713:131;:::i;:::-;37705:139;;37432:419;;;:::o;37857:176::-;37889:1;37906:20;37924:1;37906:20;:::i;:::-;37901:25;;37940:20;37958:1;37940:20;:::i;:::-;37935:25;;37979:1;37969:35;;37984:18;;:::i;:::-;37969:35;38025:1;38022;38018:9;38013:14;;37857:176;;;;:::o;38039:180::-;38087:77;38084:1;38077:88;38184:4;38181:1;38174:15;38208:4;38205:1;38198:15;38225:98;38276:6;38310:5;38304:12;38294:22;;38225:98;;;:::o;38329:168::-;38412:11;38446:6;38441:3;38434:19;38486:4;38481:3;38477:14;38462:29;;38329:168;;;;:::o;38503:360::-;38589:3;38617:38;38649:5;38617:38;:::i;:::-;38671:70;38734:6;38729:3;38671:70;:::i;:::-;38664:77;;38750:52;38795:6;38790:3;38783:4;38776:5;38772:16;38750:52;:::i;:::-;38827:29;38849:6;38827:29;:::i;:::-;38822:3;38818:39;38811:46;;38593:270;38503:360;;;;:::o;38869:640::-;39064:4;39102:3;39091:9;39087:19;39079:27;;39116:71;39184:1;39173:9;39169:17;39160:6;39116:71;:::i;:::-;39197:72;39265:2;39254:9;39250:18;39241:6;39197:72;:::i;:::-;39279;39347:2;39336:9;39332:18;39323:6;39279:72;:::i;:::-;39398:9;39392:4;39388:20;39383:2;39372:9;39368:18;39361:48;39426:76;39497:4;39488:6;39426:76;:::i;:::-;39418:84;;38869:640;;;;;;;:::o;39515:141::-;39571:5;39602:6;39596:13;39587:22;;39618:32;39644:5;39618:32;:::i;:::-;39515:141;;;;:::o;39662:349::-;39731:6;39780:2;39768:9;39759:7;39755:23;39751:32;39748:119;;;39786:79;;:::i;:::-;39748:119;39906:1;39931:63;39986:7;39977:6;39966:9;39962:22;39931:63;:::i;:::-;39921:73;;39877:127;39662:349;;;;:::o;40017:182::-;40157:34;40153:1;40145:6;40141:14;40134:58;40017:182;:::o;40205:366::-;40347:3;40368:67;40432:2;40427:3;40368:67;:::i;:::-;40361:74;;40444:93;40533:3;40444:93;:::i;:::-;40562:2;40557:3;40553:12;40546:19;;40205:366;;;:::o;40577:419::-;40743:4;40781:2;40770:9;40766:18;40758:26;;40830:9;40824:4;40820:20;40816:1;40805:9;40801:17;40794:47;40858:131;40984:4;40858:131;:::i;:::-;40850:139;;40577:419;;;:::o;41002:178::-;41142:30;41138:1;41130:6;41126:14;41119:54;41002:178;:::o;41186:366::-;41328:3;41349:67;41413:2;41408:3;41349:67;:::i;:::-;41342:74;;41425:93;41514:3;41425:93;:::i;:::-;41543:2;41538:3;41534:12;41527:19;;41186:366;;;:::o;41558:419::-;41724:4;41762:2;41751:9;41747:18;41739:26;;41811:9;41805:4;41801:20;41797:1;41786:9;41782:17;41775:47;41839:131;41965:4;41839:131;:::i;:::-;41831:139;;41558:419;;;:::o

Swarm Source

ipfs://ce06c9f5f1f952aa221cffaef00356f53aaf452f67e9ffb1985599f20cc60e2d
Loading...
Loading
Loading...
Loading
[ 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.