ETH Price: $3,387.27 (-2.69%)
Gas: 1 Gwei

Token

Guracorp (GURA)
 

Overview

Max Total Supply

100 GURA

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 GURA
0x5d0abbd188fddb20ca2b0e0da901759c61e017a0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

GURA® NFT is a Limited Edition collection of 100 GURA® Droids designed to celebrate a bespoke vision from the future. Where passion for Science Fiction fuses with Aesthetics and a new wave of mechanical sophistication enters the world.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Guracorp

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity 0.8.5;

// SPDX-License-Identifier: MIT

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

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

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);
}

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);
}

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);
            }
        }
    }
}

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

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);
    }
}


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

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

interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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);
    }
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}


contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;
    uint256 public currentTokenId = 0;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }

    /**
     * @dev calculates the next token ID based on value of currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() internal view returns (uint256) {
        return currentTokenId.add(1);
    }

    /**
     * @dev increments the value of currentTokenId
     */
    function _incrementTokenId() internal {
        currentTokenId++;
    }

    function baseTokenURI() virtual public view returns (string memory);

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        virtual
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        virtual
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

contract Guracorp is ERC721Tradable {
    string baseURI;
    uint256 public MAX_SUPPLY = 100;
    uint256 public basePrice = 1 ether;
    bool public paused;
    
    constructor()
        ERC721Tradable("Guracorp", "GURA", address(0))
    {
        baseURI = "https://guranft.com/json/";
        proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
        paused = true;
    }

    function mint() external payable {
        require(paused == false, "Mint isn't running");
        uint256 newTokenId = _getNextTokenId();
        require(msg.value == basePrice, "Incorrect ETH Amount");
        require(newTokenId <= MAX_SUPPLY, "Sold out");
        _incrementTokenId();
        _mint(_msgSender(), newTokenId);
        payable(owner()).transfer(msg.value);
    }

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

        return
            string(abi.encodePacked(baseTokenURI(), Strings.toString(tokenId)));
    }

    function setProxyRegistry(address proxyRegistryAddress_)
        external
        onlyOwner
    {
        proxyRegistryAddress = proxyRegistryAddress_;
    }
    
    function setPrice(uint256 basePrice_) external onlyOwner {
        basePrice = basePrice_;
    }

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

    function unpause() external onlyOwner {
        paused = false;
    }
    
    function baseTokenURI() public view override returns (string memory) {
        return _baseURI();
    }

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

    function _msgSender()
        internal
        view
        virtual
        override
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }

}

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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"basePrice_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyRegistryAddress_","type":"address"}],"name":"setProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600f556064601155670de0b6b3a76400006012553480156200004257600080fd5b506040518060400160405280600881526020017f47757261636f72700000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4755524100000000000000000000000000000000000000000000000000000000815250600082828160009080519060200190620000cb929190620004f3565b508060019080519060200190620000e4929190620004f3565b50505062000107620000fb6200022060201b60201c565b6200023c60201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000159836200030260201b60201c565b5050506040518060400160405280601981526020017f68747470733a2f2f677572616e66742e636f6d2f6a736f6e2f0000000000000081525060109080519060200190620001a9929190620004f3565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601360006101000a81548160ff02191690831515021790555062000748565b6000620002376200038460201b62001b331760201c565b905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60009054906101000a900460ff161562000355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034c9062000649565b60405180910390fd5b62000366816200043760201b60201c565b6001600a60006101000a81548160ff02191690831515021790555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156200043057600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff81830151169250505062000434565b3390505b90565b6040518060800160405280604f815260200162005227604f91398051906020012081805190602001206040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152508051906020012030620004ae620004e660201b60201c565b60001b604051602001620004c7959493929190620005ec565b60405160208183030381529060405280519060200120600b8190555050565b6000804690508091505090565b8280546200050190620006ba565b90600052602060002090601f01602090048101928262000525576000855562000571565b82601f106200054057805160ff191683800117855562000571565b8280016001018555821562000571579182015b828111156200057057825182559160200191906001019062000553565b5b50905062000580919062000584565b5090565b5b808211156200059f57600081600090555060010162000585565b5090565b620005ae816200067c565b82525050565b620005bf8162000690565b82525050565b6000620005d4600e836200066b565b9150620005e1826200071f565b602082019050919050565b600060a082019050620006036000830188620005b4565b620006126020830187620005b4565b620006216040830186620005b4565b620006306060830185620005a3565b6200063f6080830184620005b4565b9695505050505050565b600060208201905081810360008301526200066481620005c5565b9050919050565b600082825260208201905092915050565b600062000689826200069a565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620006d357607f821691505b60208210811415620006ea57620006e9620006f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f616c726561647920696e69746564000000000000000000000000000000000000600082015250565b614acf80620007586000396000f3fe6080604052600436106102035760003560e01c80634f6ccce71161011857806395d89b41116100a0578063c7876ea41161006f578063c7876ea41461073a578063c87b56dd14610765578063d547cfb7146107a2578063e985e9c5146107cd578063f2fde38b1461080a57610203565b806395d89b4114610694578063a22cb465146106bf578063adfdeef9146106e8578063b88d4fde1461071157610203565b806370a08231116100e757806370a08231146105c3578063715018a614610600578063755edd17146106175780638da5cb5b1461064057806391b7f5ed1461066b57610203565b80634f6ccce7146104f557806355f804b3146105325780635c975abb1461055b5780636352211e1461058657610203565b806318160ddd1161019b5780632f745c591161016a5780632f745c591461042257806332cb6b0c1461045f5780633408e4701461048a5780633f4ba83a146104b557806342842e0e146104cc57610203565b806318160ddd1461036657806320379ee51461039157806323b872dd146103bc5780632d0335ab146103e557610203565b8063095ea7b3116101d7578063095ea7b3146102d85780630c53c51c146103015780630f7e5970146103315780631249c58b1461035c57610203565b80629a9b7b1461020857806301ffc9a71461023357806306fdde0314610270578063081812fc1461029b575b600080fd5b34801561021457600080fd5b5061021d610833565b60405161022a9190613e61565b60405180910390f35b34801561023f57600080fd5b5061025a6004803603810190610255919061335a565b610839565b6040516102679190613a5d565b60405180910390f35b34801561027c57600080fd5b506102856108b3565b6040516102929190613b3f565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd919061342a565b610945565b6040516102cf91906139b8565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa919061331a565b6109ca565b005b61031b60048036038101906103169190613283565b610ae2565b6040516103289190613b1d565b60405180910390f35b34801561033d57600080fd5b50610346610d54565b6040516103539190613b3f565b60405180910390f35b610364610d8d565b005b34801561037257600080fd5b5061037b610ee2565b6040516103889190613e61565b60405180910390f35b34801561039d57600080fd5b506103a6610eef565b6040516103b39190613a78565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de919061316d565b610ef9565b005b3480156103f157600080fd5b5061040c60048036038101906104079190613100565b610f59565b6040516104199190613e61565b60405180910390f35b34801561042e57600080fd5b506104496004803603810190610444919061331a565b610fa2565b6040516104569190613e61565b60405180910390f35b34801561046b57600080fd5b50610474611047565b6040516104819190613e61565b60405180910390f35b34801561049657600080fd5b5061049f61104d565b6040516104ac9190613e61565b60405180910390f35b3480156104c157600080fd5b506104ca61105a565b005b3480156104d857600080fd5b506104f360048036038101906104ee919061316d565b6110f3565b005b34801561050157600080fd5b5061051c6004803603810190610517919061342a565b611113565b6040516105299190613e61565b60405180910390f35b34801561053e57600080fd5b50610559600480360381019061055491906133e1565b611184565b005b34801561056757600080fd5b5061057061121a565b60405161057d9190613a5d565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a8919061342a565b61122d565b6040516105ba91906139b8565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613100565b6112df565b6040516105f79190613e61565b60405180910390f35b34801561060c57600080fd5b50610615611397565b005b34801561062357600080fd5b5061063e60048036038101906106399190613100565b61141f565b005b34801561064c57600080fd5b506106556114bd565b60405161066291906139b8565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d919061342a565b6114e7565b005b3480156106a057600080fd5b506106a961156d565b6040516106b69190613b3f565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613243565b6115ff565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190613100565b611780565b005b34801561071d57600080fd5b50610738600480360381019061073391906131c0565b611840565b005b34801561074657600080fd5b5061074f6118a2565b60405161075c9190613e61565b60405180910390f35b34801561077157600080fd5b5061078c6004803603810190610787919061342a565b6118a8565b6040516107999190613b3f565b60405180910390f35b3480156107ae57600080fd5b506107b761192a565b6040516107c49190613b3f565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef919061312d565b611939565b6040516108019190613a5d565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190613100565b611a3b565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57506108ab82611be4565b5b9050919050565b6060600080546108c2906140fd565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee906140fd565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b600061095082611cc6565b61098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613d41565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d58261122d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90613de1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611d32565b73ffffffffffffffffffffffffffffffffffffffff161480610a945750610a9381610a8e611d32565b611939565b5b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90613cc1565b60405180910390fd5b610add8383611d41565b505050565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610b658782878787611dfa565b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90613da1565b60405180910390fd5b610bf76001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f0390919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610c6d939291906139d3565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610ca2929190613935565b604051602081830303815290604052604051610cbe919061391e565b6000604051808303816000865af19150503d8060008114610cfb576040519150601f19603f3d011682016040523d82523d6000602084013e610d00565b606091505b509150915081610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613be1565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b60001515601360009054906101000a900460ff16151514610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90613c41565b60405180910390fd5b6000610ded611f19565b90506012543414610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90613b61565b60405180910390fd5b601154811115610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613e21565b60405180910390fd5b610e80611f36565b610e91610e8b611d32565b82611f50565b610e996114bd565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610ede573d6000803e3d6000fd5b5050565b6000600880549050905090565b6000600b54905090565b610f0a610f04611d32565b8261211e565b610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090613e01565b60405180910390fd5b610f548383836121fc565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610fad836112df565b8210610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590613b81565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60115481565b6000804690508091505090565b611062611d32565b73ffffffffffffffffffffffffffffffffffffffff166110806114bd565b73ffffffffffffffffffffffffffffffffffffffff16146110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613d61565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550565b61110e83838360405180602001604052806000815250611840565b505050565b600061111d610ee2565b821061115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613e41565b60405180910390fd5b60088281548110611172576111716142c4565b5b90600052602060002001549050919050565b61118c611d32565b73ffffffffffffffffffffffffffffffffffffffff166111aa6114bd565b73ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790613d61565b60405180910390fd5b8060109080519060200190611216929190612ed5565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90613d01565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613ce1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61139f611d32565b73ffffffffffffffffffffffffffffffffffffffff166113bd6114bd565b73ffffffffffffffffffffffffffffffffffffffff1614611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90613d61565b60405180910390fd5b61141d6000612458565b565b611427611d32565b73ffffffffffffffffffffffffffffffffffffffff166114456114bd565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290613d61565b60405180910390fd5b60006114a5611f19565b90506114b18282611f50565b6114b9611f36565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114ef611d32565b73ffffffffffffffffffffffffffffffffffffffff1661150d6114bd565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90613d61565b60405180910390fd5b8060128190555050565b60606001805461157c906140fd565b80601f01602080910402602001604051908101604052809291908181526020018280546115a8906140fd565b80156115f55780601f106115ca576101008083540402835291602001916115f5565b820191906000526020600020905b8154815290600101906020018083116115d857829003601f168201915b5050505050905090565b611607611d32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613c61565b60405180910390fd5b8060056000611682611d32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661172f611d32565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117749190613a5d565b60405180910390a35050565b611788611d32565b73ffffffffffffffffffffffffffffffffffffffff166117a66114bd565b73ffffffffffffffffffffffffffffffffffffffff16146117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390613d61565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61185161184b611d32565b8361211e565b611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790613e01565b60405180910390fd5b61189c8484848461251e565b50505050565b60125481565b60606118b382611cc6565b6118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990613dc1565b60405180910390fd5b6118fa61192a565b6119038361257a565b60405160200161191492919061395d565b6040516020818303038152906040529050919050565b60606119346126db565b905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119b191906139b8565b60206040518083038186803b1580156119c957600080fd5b505afa1580156119dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0191906133b4565b73ffffffffffffffffffffffffffffffffffffffff161415611a27576001915050611a35565b611a31848461276d565b9150505b92915050565b611a43611d32565b73ffffffffffffffffffffffffffffffffffffffff16611a616114bd565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90613d61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613bc1565b60405180910390fd5b611b3081612458565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611bdd57600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611be1565b3390505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611caf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cbf5750611cbe82612801565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611d3c611b33565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611db48361122d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290613ca1565b60405180910390fd5b6001611e7e611e798761286b565b6128d3565b83868660405160008152602001604052604051611e9e9493929190613ad8565b6020604051602081039080840390855afa158015611ec0573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611f119190613f51565b905092915050565b6000611f316001600f54611f0390919063ffffffff16565b905090565b600f6000815480929190611f4990614160565b9190505550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790613d21565b60405180910390fd5b611fc981611cc6565b15612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090613c01565b60405180910390fd5b6120156000838361290c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120659190613f51565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061212982611cc6565b612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90613c81565b60405180910390fd5b60006121738361122d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121e257508373ffffffffffffffffffffffffffffffffffffffff166121ca84610945565b73ffffffffffffffffffffffffffffffffffffffff16145b806121f357506121f28185611939565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661221c8261122d565b73ffffffffffffffffffffffffffffffffffffffff1614612272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226990613d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990613c21565b60405180910390fd5b6122ed83838361290c565b6122f8600082611d41565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123489190613fd8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239f9190613f51565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125298484846121fc565b61253584848484612a20565b612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90613ba1565b60405180910390fd5b50505050565b606060008214156125c2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126d6565b600082905060005b600082146125f45780806125dd90614160565b915050600a826125ed9190613fa7565b91506125ca565b60008167ffffffffffffffff8111156126105761260f6142f3565b5b6040519080825280601f01601f1916602001820160405280156126425781602001600182028036833780820191505090505b5090505b600085146126cf5760018261265b9190613fd8565b9150600a8561266a91906141d7565b60306126769190613f51565b60f81b81838151811061268c5761268b6142c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126c89190613fa7565b9450612646565b8093505050505b919050565b6060601080546126ea906140fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612716906140fd565b80156127635780601f1061273857610100808354040283529160200191612763565b820191906000526020600020905b81548152906001019060200180831161274657829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604051806080016040528060438152602001614a576043913980519060200120826000015183602001518460400151805190602001206040516020016128b69493929190613a93565b604051602081830303815290604052805190602001209050919050565b60006128dd610eef565b826040516020016128ef929190613981565b604051602081830303815290604052805190602001209050919050565b612917838383612bb7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295a5761295581612bbc565b612999565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612998576129978382612c05565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dc576129d781612d72565b612a1b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a1a57612a198282612e43565b5b5b505050565b6000612a418473ffffffffffffffffffffffffffffffffffffffff16612ec2565b15612baa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a6a611d32565b8786866040518563ffffffff1660e01b8152600401612a8c9493929190613a11565b602060405180830381600087803b158015612aa657600080fd5b505af1925050508015612ad757506040513d601f19601f82011682018060405250810190612ad49190613387565b60015b612b5a573d8060008114612b07576040519150601f19603f3d011682016040523d82523d6000602084013e612b0c565b606091505b50600081511415612b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4990613ba1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612baf565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c12846112df565b612c1c9190613fd8565b9050600060076000848152602001908152602001600020549050818114612d01576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d869190613fd8565b9050600060096000848152602001908152602001600020549050600060088381548110612db657612db56142c4565b5b906000526020600020015490508060088381548110612dd857612dd76142c4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e2757612e26614295565b5b6001900381819060005260206000200160009055905550505050565b6000612e4e836112df565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612ee1906140fd565b90600052602060002090601f016020900481019282612f035760008555612f4a565b82601f10612f1c57805160ff1916838001178555612f4a565b82800160010185558215612f4a579182015b82811115612f49578251825591602001919060010190612f2e565b5b509050612f579190612f5b565b5090565b5b80821115612f74576000816000905550600101612f5c565b5090565b6000612f8b612f8684613ea1565b613e7c565b905082815260208101848484011115612fa757612fa6614327565b5b612fb28482856140bb565b509392505050565b6000612fcd612fc884613ed2565b613e7c565b905082815260208101848484011115612fe957612fe8614327565b5b612ff48482856140bb565b509392505050565b60008135905061300b816149b5565b92915050565b600081359050613020816149cc565b92915050565b600081359050613035816149e3565b92915050565b60008135905061304a816149fa565b92915050565b60008151905061305f816149fa565b92915050565b600082601f83011261307a57613079614322565b5b813561308a848260208601612f78565b91505092915050565b6000815190506130a281614a11565b92915050565b600082601f8301126130bd576130bc614322565b5b81356130cd848260208601612fba565b91505092915050565b6000813590506130e581614a28565b92915050565b6000813590506130fa81614a3f565b92915050565b60006020828403121561311657613115614331565b5b600061312484828501612ffc565b91505092915050565b6000806040838503121561314457613143614331565b5b600061315285828601612ffc565b925050602061316385828601612ffc565b9150509250929050565b60008060006060848603121561318657613185614331565b5b600061319486828701612ffc565b93505060206131a586828701612ffc565b92505060406131b6868287016130d6565b9150509250925092565b600080600080608085870312156131da576131d9614331565b5b60006131e887828801612ffc565b94505060206131f987828801612ffc565b935050604061320a878288016130d6565b925050606085013567ffffffffffffffff81111561322b5761322a61432c565b5b61323787828801613065565b91505092959194509250565b6000806040838503121561325a57613259614331565b5b600061326885828601612ffc565b925050602061327985828601613011565b9150509250929050565b600080600080600060a0868803121561329f5761329e614331565b5b60006132ad88828901612ffc565b955050602086013567ffffffffffffffff8111156132ce576132cd61432c565b5b6132da88828901613065565b94505060406132eb88828901613026565b93505060606132fc88828901613026565b925050608061330d888289016130eb565b9150509295509295909350565b6000806040838503121561333157613330614331565b5b600061333f85828601612ffc565b9250506020613350858286016130d6565b9150509250929050565b6000602082840312156133705761336f614331565b5b600061337e8482850161303b565b91505092915050565b60006020828403121561339d5761339c614331565b5b60006133ab84828501613050565b91505092915050565b6000602082840312156133ca576133c9614331565b5b60006133d884828501613093565b91505092915050565b6000602082840312156133f7576133f6614331565b5b600082013567ffffffffffffffff8111156134155761341461432c565b5b613421848285016130a8565b91505092915050565b6000602082840312156134405761343f614331565b5b600061344e848285016130d6565b91505092915050565b6134608161401e565b82525050565b61346f8161400c565b82525050565b6134866134818261400c565b6141a9565b82525050565b61349581614030565b82525050565b6134a48161403c565b82525050565b6134bb6134b68261403c565b6141bb565b82525050565b60006134cc82613f03565b6134d68185613f19565b93506134e68185602086016140ca565b6134ef81614336565b840191505092915050565b600061350582613f03565b61350f8185613f2a565b935061351f8185602086016140ca565b80840191505092915050565b600061353682613f0e565b6135408185613f35565b93506135508185602086016140ca565b61355981614336565b840191505092915050565b600061356f82613f0e565b6135798185613f46565b93506135898185602086016140ca565b80840191505092915050565b60006135a2601483613f35565b91506135ad82614354565b602082019050919050565b60006135c5602b83613f35565b91506135d08261437d565b604082019050919050565b60006135e8603283613f35565b91506135f3826143cc565b604082019050919050565b600061360b602683613f35565b91506136168261441b565b604082019050919050565b600061362e601c83613f35565b91506136398261446a565b602082019050919050565b6000613651601c83613f35565b915061365c82614493565b602082019050919050565b6000613674600283613f46565b915061367f826144bc565b600282019050919050565b6000613697602483613f35565b91506136a2826144e5565b604082019050919050565b60006136ba601283613f35565b91506136c582614534565b602082019050919050565b60006136dd601983613f35565b91506136e88261455d565b602082019050919050565b6000613700602c83613f35565b915061370b82614586565b604082019050919050565b6000613723602583613f35565b915061372e826145d5565b604082019050919050565b6000613746603883613f35565b915061375182614624565b604082019050919050565b6000613769602a83613f35565b915061377482614673565b604082019050919050565b600061378c602983613f35565b9150613797826146c2565b604082019050919050565b60006137af602083613f35565b91506137ba82614711565b602082019050919050565b60006137d2602c83613f35565b91506137dd8261473a565b604082019050919050565b60006137f5602083613f35565b915061380082614789565b602082019050919050565b6000613818602983613f35565b9150613823826147b2565b604082019050919050565b600061383b602183613f35565b915061384682614801565b604082019050919050565b600061385e602f83613f35565b915061386982614850565b604082019050919050565b6000613881602183613f35565b915061388c8261489f565b604082019050919050565b60006138a4603183613f35565b91506138af826148ee565b604082019050919050565b60006138c7600883613f35565b91506138d28261493d565b602082019050919050565b60006138ea602c83613f35565b91506138f582614966565b604082019050919050565b613909816140a4565b82525050565b613918816140ae565b82525050565b600061392a82846134fa565b915081905092915050565b600061394182856134fa565b915061394d8284613475565b6014820191508190509392505050565b60006139698285613564565b91506139758284613564565b91508190509392505050565b600061398c82613667565b915061399882856134aa565b6020820191506139a882846134aa565b6020820191508190509392505050565b60006020820190506139cd6000830184613466565b92915050565b60006060820190506139e86000830186613466565b6139f56020830185613457565b8181036040830152613a0781846134c1565b9050949350505050565b6000608082019050613a266000830187613466565b613a336020830186613466565b613a406040830185613900565b8181036060830152613a5281846134c1565b905095945050505050565b6000602082019050613a72600083018461348c565b92915050565b6000602082019050613a8d600083018461349b565b92915050565b6000608082019050613aa8600083018761349b565b613ab56020830186613900565b613ac26040830185613466565b613acf606083018461349b565b95945050505050565b6000608082019050613aed600083018761349b565b613afa602083018661390f565b613b07604083018561349b565b613b14606083018461349b565b95945050505050565b60006020820190508181036000830152613b3781846134c1565b905092915050565b60006020820190508181036000830152613b59818461352b565b905092915050565b60006020820190508181036000830152613b7a81613595565b9050919050565b60006020820190508181036000830152613b9a816135b8565b9050919050565b60006020820190508181036000830152613bba816135db565b9050919050565b60006020820190508181036000830152613bda816135fe565b9050919050565b60006020820190508181036000830152613bfa81613621565b9050919050565b60006020820190508181036000830152613c1a81613644565b9050919050565b60006020820190508181036000830152613c3a8161368a565b9050919050565b60006020820190508181036000830152613c5a816136ad565b9050919050565b60006020820190508181036000830152613c7a816136d0565b9050919050565b60006020820190508181036000830152613c9a816136f3565b9050919050565b60006020820190508181036000830152613cba81613716565b9050919050565b60006020820190508181036000830152613cda81613739565b9050919050565b60006020820190508181036000830152613cfa8161375c565b9050919050565b60006020820190508181036000830152613d1a8161377f565b9050919050565b60006020820190508181036000830152613d3a816137a2565b9050919050565b60006020820190508181036000830152613d5a816137c5565b9050919050565b60006020820190508181036000830152613d7a816137e8565b9050919050565b60006020820190508181036000830152613d9a8161380b565b9050919050565b60006020820190508181036000830152613dba8161382e565b9050919050565b60006020820190508181036000830152613dda81613851565b9050919050565b60006020820190508181036000830152613dfa81613874565b9050919050565b60006020820190508181036000830152613e1a81613897565b9050919050565b60006020820190508181036000830152613e3a816138ba565b9050919050565b60006020820190508181036000830152613e5a816138dd565b9050919050565b6000602082019050613e766000830184613900565b92915050565b6000613e86613e97565b9050613e92828261412f565b919050565b6000604051905090565b600067ffffffffffffffff821115613ebc57613ebb6142f3565b5b613ec582614336565b9050602081019050919050565b600067ffffffffffffffff821115613eed57613eec6142f3565b5b613ef682614336565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5c826140a4565b9150613f67836140a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9c57613f9b614208565b5b828201905092915050565b6000613fb2826140a4565b9150613fbd836140a4565b925082613fcd57613fcc614237565b5b828204905092915050565b6000613fe3826140a4565b9150613fee836140a4565b92508282101561400157614000614208565b5b828203905092915050565b600061401782614084565b9050919050565b600061402982614084565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061407d8261400c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156140e85780820151818401526020810190506140cd565b838111156140f7576000848401525b50505050565b6000600282049050600182168061411557607f821691505b6020821081141561412957614128614266565b5b50919050565b61413882614336565b810181811067ffffffffffffffff82111715614157576141566142f3565b5b80604052505050565b600061416b826140a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419e5761419d614208565b5b600182019050919050565b60006141b4826141c5565b9050919050565b6000819050919050565b60006141d082614347565b9050919050565b60006141e2826140a4565b91506141ed836140a4565b9250826141fd576141fc614237565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f72726563742045544820416d6f756e74000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742069736e27742072756e6e696e670000000000000000000000000000600082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6149be8161400c565b81146149c957600080fd5b50565b6149d581614030565b81146149e057600080fd5b50565b6149ec8161403c565b81146149f757600080fd5b50565b614a0381614046565b8114614a0e57600080fd5b50565b614a1a81614072565b8114614a2557600080fd5b50565b614a31816140a4565b8114614a3c57600080fd5b50565b614a48816140ae565b8114614a5357600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220f1bb8a4ca039eb9f4a8cc57c07e00087dfac2101459e42a0756ce64fc28f6db264736f6c63430008050033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429

Deployed Bytecode

0x6080604052600436106102035760003560e01c80634f6ccce71161011857806395d89b41116100a0578063c7876ea41161006f578063c7876ea41461073a578063c87b56dd14610765578063d547cfb7146107a2578063e985e9c5146107cd578063f2fde38b1461080a57610203565b806395d89b4114610694578063a22cb465146106bf578063adfdeef9146106e8578063b88d4fde1461071157610203565b806370a08231116100e757806370a08231146105c3578063715018a614610600578063755edd17146106175780638da5cb5b1461064057806391b7f5ed1461066b57610203565b80634f6ccce7146104f557806355f804b3146105325780635c975abb1461055b5780636352211e1461058657610203565b806318160ddd1161019b5780632f745c591161016a5780632f745c591461042257806332cb6b0c1461045f5780633408e4701461048a5780633f4ba83a146104b557806342842e0e146104cc57610203565b806318160ddd1461036657806320379ee51461039157806323b872dd146103bc5780632d0335ab146103e557610203565b8063095ea7b3116101d7578063095ea7b3146102d85780630c53c51c146103015780630f7e5970146103315780631249c58b1461035c57610203565b80629a9b7b1461020857806301ffc9a71461023357806306fdde0314610270578063081812fc1461029b575b600080fd5b34801561021457600080fd5b5061021d610833565b60405161022a9190613e61565b60405180910390f35b34801561023f57600080fd5b5061025a6004803603810190610255919061335a565b610839565b6040516102679190613a5d565b60405180910390f35b34801561027c57600080fd5b506102856108b3565b6040516102929190613b3f565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd919061342a565b610945565b6040516102cf91906139b8565b60405180910390f35b3480156102e457600080fd5b506102ff60048036038101906102fa919061331a565b6109ca565b005b61031b60048036038101906103169190613283565b610ae2565b6040516103289190613b1d565b60405180910390f35b34801561033d57600080fd5b50610346610d54565b6040516103539190613b3f565b60405180910390f35b610364610d8d565b005b34801561037257600080fd5b5061037b610ee2565b6040516103889190613e61565b60405180910390f35b34801561039d57600080fd5b506103a6610eef565b6040516103b39190613a78565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de919061316d565b610ef9565b005b3480156103f157600080fd5b5061040c60048036038101906104079190613100565b610f59565b6040516104199190613e61565b60405180910390f35b34801561042e57600080fd5b506104496004803603810190610444919061331a565b610fa2565b6040516104569190613e61565b60405180910390f35b34801561046b57600080fd5b50610474611047565b6040516104819190613e61565b60405180910390f35b34801561049657600080fd5b5061049f61104d565b6040516104ac9190613e61565b60405180910390f35b3480156104c157600080fd5b506104ca61105a565b005b3480156104d857600080fd5b506104f360048036038101906104ee919061316d565b6110f3565b005b34801561050157600080fd5b5061051c6004803603810190610517919061342a565b611113565b6040516105299190613e61565b60405180910390f35b34801561053e57600080fd5b50610559600480360381019061055491906133e1565b611184565b005b34801561056757600080fd5b5061057061121a565b60405161057d9190613a5d565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a8919061342a565b61122d565b6040516105ba91906139b8565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613100565b6112df565b6040516105f79190613e61565b60405180910390f35b34801561060c57600080fd5b50610615611397565b005b34801561062357600080fd5b5061063e60048036038101906106399190613100565b61141f565b005b34801561064c57600080fd5b506106556114bd565b60405161066291906139b8565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d919061342a565b6114e7565b005b3480156106a057600080fd5b506106a961156d565b6040516106b69190613b3f565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613243565b6115ff565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190613100565b611780565b005b34801561071d57600080fd5b50610738600480360381019061073391906131c0565b611840565b005b34801561074657600080fd5b5061074f6118a2565b60405161075c9190613e61565b60405180910390f35b34801561077157600080fd5b5061078c6004803603810190610787919061342a565b6118a8565b6040516107999190613b3f565b60405180910390f35b3480156107ae57600080fd5b506107b761192a565b6040516107c49190613b3f565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef919061312d565b611939565b6040516108019190613a5d565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190613100565b611a3b565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57506108ab82611be4565b5b9050919050565b6060600080546108c2906140fd565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee906140fd565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b600061095082611cc6565b61098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613d41565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d58261122d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d90613de1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611d32565b73ffffffffffffffffffffffffffffffffffffffff161480610a945750610a9381610a8e611d32565b611939565b5b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90613cc1565b60405180910390fd5b610add8383611d41565b505050565b606060006040518060600160405280600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610b658782878787611dfa565b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90613da1565b60405180910390fd5b610bf76001600c60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f0390919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610c6d939291906139d3565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610ca2929190613935565b604051602081830303815290604052604051610cbe919061391e565b6000604051808303816000865af19150503d8060008114610cfb576040519150601f19603f3d011682016040523d82523d6000602084013e610d00565b606091505b509150915081610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613be1565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b60001515601360009054906101000a900460ff16151514610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90613c41565b60405180910390fd5b6000610ded611f19565b90506012543414610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90613b61565b60405180910390fd5b601154811115610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90613e21565b60405180910390fd5b610e80611f36565b610e91610e8b611d32565b82611f50565b610e996114bd565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610ede573d6000803e3d6000fd5b5050565b6000600880549050905090565b6000600b54905090565b610f0a610f04611d32565b8261211e565b610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090613e01565b60405180910390fd5b610f548383836121fc565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610fad836112df565b8210610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590613b81565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60115481565b6000804690508091505090565b611062611d32565b73ffffffffffffffffffffffffffffffffffffffff166110806114bd565b73ffffffffffffffffffffffffffffffffffffffff16146110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613d61565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550565b61110e83838360405180602001604052806000815250611840565b505050565b600061111d610ee2565b821061115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613e41565b60405180910390fd5b60088281548110611172576111716142c4565b5b90600052602060002001549050919050565b61118c611d32565b73ffffffffffffffffffffffffffffffffffffffff166111aa6114bd565b73ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790613d61565b60405180910390fd5b8060109080519060200190611216929190612ed5565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90613d01565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613ce1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61139f611d32565b73ffffffffffffffffffffffffffffffffffffffff166113bd6114bd565b73ffffffffffffffffffffffffffffffffffffffff1614611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90613d61565b60405180910390fd5b61141d6000612458565b565b611427611d32565b73ffffffffffffffffffffffffffffffffffffffff166114456114bd565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290613d61565b60405180910390fd5b60006114a5611f19565b90506114b18282611f50565b6114b9611f36565b5050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114ef611d32565b73ffffffffffffffffffffffffffffffffffffffff1661150d6114bd565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90613d61565b60405180910390fd5b8060128190555050565b60606001805461157c906140fd565b80601f01602080910402602001604051908101604052809291908181526020018280546115a8906140fd565b80156115f55780601f106115ca576101008083540402835291602001916115f5565b820191906000526020600020905b8154815290600101906020018083116115d857829003601f168201915b5050505050905090565b611607611d32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613c61565b60405180910390fd5b8060056000611682611d32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661172f611d32565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117749190613a5d565b60405180910390a35050565b611788611d32565b73ffffffffffffffffffffffffffffffffffffffff166117a66114bd565b73ffffffffffffffffffffffffffffffffffffffff16146117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390613d61565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61185161184b611d32565b8361211e565b611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790613e01565b60405180910390fd5b61189c8484848461251e565b50505050565b60125481565b60606118b382611cc6565b6118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990613dc1565b60405180910390fd5b6118fa61192a565b6119038361257a565b60405160200161191492919061395d565b6040516020818303038152906040529050919050565b60606119346126db565b905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119b191906139b8565b60206040518083038186803b1580156119c957600080fd5b505afa1580156119dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0191906133b4565b73ffffffffffffffffffffffffffffffffffffffff161415611a27576001915050611a35565b611a31848461276d565b9150505b92915050565b611a43611d32565b73ffffffffffffffffffffffffffffffffffffffff16611a616114bd565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90613d61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613bc1565b60405180910390fd5b611b3081612458565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611bdd57600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611be1565b3390505b90565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611caf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cbf5750611cbe82612801565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000611d3c611b33565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611db48361122d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6290613ca1565b60405180910390fd5b6001611e7e611e798761286b565b6128d3565b83868660405160008152602001604052604051611e9e9493929190613ad8565b6020604051602081039080840390855afa158015611ec0573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60008183611f119190613f51565b905092915050565b6000611f316001600f54611f0390919063ffffffff16565b905090565b600f6000815480929190611f4990614160565b9190505550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790613d21565b60405180910390fd5b611fc981611cc6565b15612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090613c01565b60405180910390fd5b6120156000838361290c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120659190613f51565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061212982611cc6565b612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90613c81565b60405180910390fd5b60006121738361122d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121e257508373ffffffffffffffffffffffffffffffffffffffff166121ca84610945565b73ffffffffffffffffffffffffffffffffffffffff16145b806121f357506121f28185611939565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661221c8261122d565b73ffffffffffffffffffffffffffffffffffffffff1614612272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226990613d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990613c21565b60405180910390fd5b6122ed83838361290c565b6122f8600082611d41565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123489190613fd8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239f9190613f51565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125298484846121fc565b61253584848484612a20565b612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b90613ba1565b60405180910390fd5b50505050565b606060008214156125c2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126d6565b600082905060005b600082146125f45780806125dd90614160565b915050600a826125ed9190613fa7565b91506125ca565b60008167ffffffffffffffff8111156126105761260f6142f3565b5b6040519080825280601f01601f1916602001820160405280156126425781602001600182028036833780820191505090505b5090505b600085146126cf5760018261265b9190613fd8565b9150600a8561266a91906141d7565b60306126769190613f51565b60f81b81838151811061268c5761268b6142c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126c89190613fa7565b9450612646565b8093505050505b919050565b6060601080546126ea906140fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612716906140fd565b80156127635780601f1061273857610100808354040283529160200191612763565b820191906000526020600020905b81548152906001019060200180831161274657829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000604051806080016040528060438152602001614a576043913980519060200120826000015183602001518460400151805190602001206040516020016128b69493929190613a93565b604051602081830303815290604052805190602001209050919050565b60006128dd610eef565b826040516020016128ef929190613981565b604051602081830303815290604052805190602001209050919050565b612917838383612bb7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295a5761295581612bbc565b612999565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612998576129978382612c05565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dc576129d781612d72565b612a1b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a1a57612a198282612e43565b5b5b505050565b6000612a418473ffffffffffffffffffffffffffffffffffffffff16612ec2565b15612baa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a6a611d32565b8786866040518563ffffffff1660e01b8152600401612a8c9493929190613a11565b602060405180830381600087803b158015612aa657600080fd5b505af1925050508015612ad757506040513d601f19601f82011682018060405250810190612ad49190613387565b60015b612b5a573d8060008114612b07576040519150601f19603f3d011682016040523d82523d6000602084013e612b0c565b606091505b50600081511415612b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4990613ba1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612baf565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c12846112df565b612c1c9190613fd8565b9050600060076000848152602001908152602001600020549050818114612d01576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d869190613fd8565b9050600060096000848152602001908152602001600020549050600060088381548110612db657612db56142c4565b5b906000526020600020015490508060088381548110612dd857612dd76142c4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e2757612e26614295565b5b6001900381819060005260206000200160009055905550505050565b6000612e4e836112df565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612ee1906140fd565b90600052602060002090601f016020900481019282612f035760008555612f4a565b82601f10612f1c57805160ff1916838001178555612f4a565b82800160010185558215612f4a579182015b82811115612f49578251825591602001919060010190612f2e565b5b509050612f579190612f5b565b5090565b5b80821115612f74576000816000905550600101612f5c565b5090565b6000612f8b612f8684613ea1565b613e7c565b905082815260208101848484011115612fa757612fa6614327565b5b612fb28482856140bb565b509392505050565b6000612fcd612fc884613ed2565b613e7c565b905082815260208101848484011115612fe957612fe8614327565b5b612ff48482856140bb565b509392505050565b60008135905061300b816149b5565b92915050565b600081359050613020816149cc565b92915050565b600081359050613035816149e3565b92915050565b60008135905061304a816149fa565b92915050565b60008151905061305f816149fa565b92915050565b600082601f83011261307a57613079614322565b5b813561308a848260208601612f78565b91505092915050565b6000815190506130a281614a11565b92915050565b600082601f8301126130bd576130bc614322565b5b81356130cd848260208601612fba565b91505092915050565b6000813590506130e581614a28565b92915050565b6000813590506130fa81614a3f565b92915050565b60006020828403121561311657613115614331565b5b600061312484828501612ffc565b91505092915050565b6000806040838503121561314457613143614331565b5b600061315285828601612ffc565b925050602061316385828601612ffc565b9150509250929050565b60008060006060848603121561318657613185614331565b5b600061319486828701612ffc565b93505060206131a586828701612ffc565b92505060406131b6868287016130d6565b9150509250925092565b600080600080608085870312156131da576131d9614331565b5b60006131e887828801612ffc565b94505060206131f987828801612ffc565b935050604061320a878288016130d6565b925050606085013567ffffffffffffffff81111561322b5761322a61432c565b5b61323787828801613065565b91505092959194509250565b6000806040838503121561325a57613259614331565b5b600061326885828601612ffc565b925050602061327985828601613011565b9150509250929050565b600080600080600060a0868803121561329f5761329e614331565b5b60006132ad88828901612ffc565b955050602086013567ffffffffffffffff8111156132ce576132cd61432c565b5b6132da88828901613065565b94505060406132eb88828901613026565b93505060606132fc88828901613026565b925050608061330d888289016130eb565b9150509295509295909350565b6000806040838503121561333157613330614331565b5b600061333f85828601612ffc565b9250506020613350858286016130d6565b9150509250929050565b6000602082840312156133705761336f614331565b5b600061337e8482850161303b565b91505092915050565b60006020828403121561339d5761339c614331565b5b60006133ab84828501613050565b91505092915050565b6000602082840312156133ca576133c9614331565b5b60006133d884828501613093565b91505092915050565b6000602082840312156133f7576133f6614331565b5b600082013567ffffffffffffffff8111156134155761341461432c565b5b613421848285016130a8565b91505092915050565b6000602082840312156134405761343f614331565b5b600061344e848285016130d6565b91505092915050565b6134608161401e565b82525050565b61346f8161400c565b82525050565b6134866134818261400c565b6141a9565b82525050565b61349581614030565b82525050565b6134a48161403c565b82525050565b6134bb6134b68261403c565b6141bb565b82525050565b60006134cc82613f03565b6134d68185613f19565b93506134e68185602086016140ca565b6134ef81614336565b840191505092915050565b600061350582613f03565b61350f8185613f2a565b935061351f8185602086016140ca565b80840191505092915050565b600061353682613f0e565b6135408185613f35565b93506135508185602086016140ca565b61355981614336565b840191505092915050565b600061356f82613f0e565b6135798185613f46565b93506135898185602086016140ca565b80840191505092915050565b60006135a2601483613f35565b91506135ad82614354565b602082019050919050565b60006135c5602b83613f35565b91506135d08261437d565b604082019050919050565b60006135e8603283613f35565b91506135f3826143cc565b604082019050919050565b600061360b602683613f35565b91506136168261441b565b604082019050919050565b600061362e601c83613f35565b91506136398261446a565b602082019050919050565b6000613651601c83613f35565b915061365c82614493565b602082019050919050565b6000613674600283613f46565b915061367f826144bc565b600282019050919050565b6000613697602483613f35565b91506136a2826144e5565b604082019050919050565b60006136ba601283613f35565b91506136c582614534565b602082019050919050565b60006136dd601983613f35565b91506136e88261455d565b602082019050919050565b6000613700602c83613f35565b915061370b82614586565b604082019050919050565b6000613723602583613f35565b915061372e826145d5565b604082019050919050565b6000613746603883613f35565b915061375182614624565b604082019050919050565b6000613769602a83613f35565b915061377482614673565b604082019050919050565b600061378c602983613f35565b9150613797826146c2565b604082019050919050565b60006137af602083613f35565b91506137ba82614711565b602082019050919050565b60006137d2602c83613f35565b91506137dd8261473a565b604082019050919050565b60006137f5602083613f35565b915061380082614789565b602082019050919050565b6000613818602983613f35565b9150613823826147b2565b604082019050919050565b600061383b602183613f35565b915061384682614801565b604082019050919050565b600061385e602f83613f35565b915061386982614850565b604082019050919050565b6000613881602183613f35565b915061388c8261489f565b604082019050919050565b60006138a4603183613f35565b91506138af826148ee565b604082019050919050565b60006138c7600883613f35565b91506138d28261493d565b602082019050919050565b60006138ea602c83613f35565b91506138f582614966565b604082019050919050565b613909816140a4565b82525050565b613918816140ae565b82525050565b600061392a82846134fa565b915081905092915050565b600061394182856134fa565b915061394d8284613475565b6014820191508190509392505050565b60006139698285613564565b91506139758284613564565b91508190509392505050565b600061398c82613667565b915061399882856134aa565b6020820191506139a882846134aa565b6020820191508190509392505050565b60006020820190506139cd6000830184613466565b92915050565b60006060820190506139e86000830186613466565b6139f56020830185613457565b8181036040830152613a0781846134c1565b9050949350505050565b6000608082019050613a266000830187613466565b613a336020830186613466565b613a406040830185613900565b8181036060830152613a5281846134c1565b905095945050505050565b6000602082019050613a72600083018461348c565b92915050565b6000602082019050613a8d600083018461349b565b92915050565b6000608082019050613aa8600083018761349b565b613ab56020830186613900565b613ac26040830185613466565b613acf606083018461349b565b95945050505050565b6000608082019050613aed600083018761349b565b613afa602083018661390f565b613b07604083018561349b565b613b14606083018461349b565b95945050505050565b60006020820190508181036000830152613b3781846134c1565b905092915050565b60006020820190508181036000830152613b59818461352b565b905092915050565b60006020820190508181036000830152613b7a81613595565b9050919050565b60006020820190508181036000830152613b9a816135b8565b9050919050565b60006020820190508181036000830152613bba816135db565b9050919050565b60006020820190508181036000830152613bda816135fe565b9050919050565b60006020820190508181036000830152613bfa81613621565b9050919050565b60006020820190508181036000830152613c1a81613644565b9050919050565b60006020820190508181036000830152613c3a8161368a565b9050919050565b60006020820190508181036000830152613c5a816136ad565b9050919050565b60006020820190508181036000830152613c7a816136d0565b9050919050565b60006020820190508181036000830152613c9a816136f3565b9050919050565b60006020820190508181036000830152613cba81613716565b9050919050565b60006020820190508181036000830152613cda81613739565b9050919050565b60006020820190508181036000830152613cfa8161375c565b9050919050565b60006020820190508181036000830152613d1a8161377f565b9050919050565b60006020820190508181036000830152613d3a816137a2565b9050919050565b60006020820190508181036000830152613d5a816137c5565b9050919050565b60006020820190508181036000830152613d7a816137e8565b9050919050565b60006020820190508181036000830152613d9a8161380b565b9050919050565b60006020820190508181036000830152613dba8161382e565b9050919050565b60006020820190508181036000830152613dda81613851565b9050919050565b60006020820190508181036000830152613dfa81613874565b9050919050565b60006020820190508181036000830152613e1a81613897565b9050919050565b60006020820190508181036000830152613e3a816138ba565b9050919050565b60006020820190508181036000830152613e5a816138dd565b9050919050565b6000602082019050613e766000830184613900565b92915050565b6000613e86613e97565b9050613e92828261412f565b919050565b6000604051905090565b600067ffffffffffffffff821115613ebc57613ebb6142f3565b5b613ec582614336565b9050602081019050919050565b600067ffffffffffffffff821115613eed57613eec6142f3565b5b613ef682614336565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f5c826140a4565b9150613f67836140a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9c57613f9b614208565b5b828201905092915050565b6000613fb2826140a4565b9150613fbd836140a4565b925082613fcd57613fcc614237565b5b828204905092915050565b6000613fe3826140a4565b9150613fee836140a4565b92508282101561400157614000614208565b5b828203905092915050565b600061401782614084565b9050919050565b600061402982614084565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061407d8261400c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156140e85780820151818401526020810190506140cd565b838111156140f7576000848401525b50505050565b6000600282049050600182168061411557607f821691505b6020821081141561412957614128614266565b5b50919050565b61413882614336565b810181811067ffffffffffffffff82111715614157576141566142f3565b5b80604052505050565b600061416b826140a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419e5761419d614208565b5b600182019050919050565b60006141b4826141c5565b9050919050565b6000819050919050565b60006141d082614347565b9050919050565b60006141e2826140a4565b91506141ed836140a4565b9250826141fd576141fc614237565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e636f72726563742045544820416d6f756e74000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742069736e27742072756e6e696e670000000000000000000000000000600082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008201527f49474e4552000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6149be8161400c565b81146149c957600080fd5b50565b6149d581614030565b81146149e057600080fd5b50565b6149ec8161403c565b81146149f757600080fd5b50565b614a0381614046565b8114614a0e57600080fd5b50565b614a1a81614072565b8114614a2557600080fd5b50565b614a31816140a4565b8114614a3c57600080fd5b50565b614a48816140ae565b8114614a5357600080fd5b5056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220f1bb8a4ca039eb9f4a8cc57c07e00087dfac2101459e42a0756ce64fc28f6db264736f6c63430008050033

Deployed Bytecode Sourcemap

55819:2070:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53631:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32860:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20338:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21897:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21420:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51000:1151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48265:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56232:388;;;:::i;:::-;;33500:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49274:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22787:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52577:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33168:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55883:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49383:161;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57394:71;;;;;;;;;;;;;:::i;:::-;;23197:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33690:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57286:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55962:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20032:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19762:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40062:94;;;;;;;;;;;;;:::i;:::-;;54059:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39411:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57180:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20507:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22190:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57006:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23453:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55921:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56628:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57477:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55028:462;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40311:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53631:33;;;;:::o;32860:224::-;32962:4;33001:35;32986:50;;;:11;:50;;;;:90;;;;33040:36;33064:11;33040:23;:36::i;:::-;32986:90;32979:97;;32860:224;;;:::o;20338:100::-;20392:13;20425:5;20418:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20338:100;:::o;21897:221::-;21973:7;22001:16;22009:7;22001;:16::i;:::-;21993:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22086:15;:24;22102:7;22086:24;;;;;;;;;;;;;;;;;;;;;22079:31;;21897:221;;;:::o;21420:411::-;21501:13;21517:23;21532:7;21517:14;:23::i;:::-;21501:39;;21565:5;21559:11;;:2;:11;;;;21551:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21659:5;21643:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21668:37;21685:5;21692:12;:10;:12::i;:::-;21668:16;:37::i;:::-;21643:62;21621:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;21802:21;21811:2;21815:7;21802:8;:21::i;:::-;21490:341;21420:411;;:::o;51000:1151::-;51201:12;51226:29;51258:152;;;;;;;;51296:6;:19;51303:11;51296:19;;;;;;;;;;;;;;;;51258:152;;;;51336:11;51258:152;;;;;;51381:17;51258:152;;;51226:184;;51445:45;51452:11;51465:6;51473:4;51479;51485;51445:6;:45::i;:::-;51423:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;51640:26;51664:1;51640:6;:19;51647:11;51640:19;;;;;;;;;;;;;;;;:23;;:26;;;;:::i;:::-;51618:6;:19;51625:11;51618:19;;;;;;;;;;;;;;;:48;;;;51684:126;51722:11;51756:10;51782:17;51684:126;;;;;;;;:::i;:::-;;;;;;;;51921:12;51935:23;51970:4;51962:18;;52012:17;52031:11;51995:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51962:92;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51920:134;;;;52073:7;52065:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;52133:10;52126:17;;;;;51000:1151;;;;;;;:::o;48265:43::-;;;;;;;;;;;;;;;;;;;:::o;56232:388::-;56294:5;56284:15;;:6;;;;;;;;;;;:15;;;56276:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;56333:18;56354:17;:15;:17::i;:::-;56333:38;;56403:9;;56390;:22;56382:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56470:10;;56456;:24;;56448:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;56504:19;:17;:19::i;:::-;56534:31;56540:12;:10;:12::i;:::-;56554:10;56534:5;:31::i;:::-;56584:7;:5;:7::i;:::-;56576:25;;:36;56602:9;56576:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56265:355;56232:388::o;33500:113::-;33561:7;33588:10;:17;;;;33581:24;;33500:113;:::o;49274:101::-;49325:7;49352:15;;49345:22;;49274:101;:::o;22787:339::-;22982:41;23001:12;:10;:12::i;:::-;23015:7;22982:18;:41::i;:::-;22974:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23090:28;23100:4;23106:2;23110:7;23090:9;:28::i;:::-;22787:339;;;:::o;52577:107::-;52630:13;52664:6;:12;52671:4;52664:12;;;;;;;;;;;;;;;;52656:20;;52577:107;;;:::o;33168:256::-;33265:7;33301:23;33318:5;33301:16;:23::i;:::-;33293:5;:31;33285:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33390:12;:19;33403:5;33390:19;;;;;;;;;;;;;;;:26;33410:5;33390:26;;;;;;;;;;;;33383:33;;33168:256;;;;:::o;55883:31::-;;;;:::o;49383:161::-;49426:7;49446:10;49497:9;49491:15;;49534:2;49527:9;;;49383:161;:::o;57394:71::-;39642:12;:10;:12::i;:::-;39631:23;;:7;:5;:7::i;:::-;:23;;;39623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57452:5:::1;57443:6;;:14;;;;;;;;;;;;;;;;;;57394:71::o:0;23197:185::-;23335:39;23352:4;23358:2;23362:7;23335:39;;;;;;;;;;;;:16;:39::i;:::-;23197:185;;;:::o;33690:233::-;33765:7;33801:30;:28;:30::i;:::-;33793:5;:38;33785:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;33898:10;33909:5;33898:17;;;;;;;;:::i;:::-;;;;;;;;;;33891:24;;33690:233;;;:::o;57286:100::-;39642:12;:10;:12::i;:::-;39631:23;;:7;:5;:7::i;:::-;:23;;;39623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57370:8:::1;57360:7;:18;;;;;;;;;;;;:::i;:::-;;57286:100:::0;:::o;55962:18::-;;;;;;;;;;;;;:::o;20032:239::-;20104:7;20124:13;20140:7;:16;20148:7;20140:16;;;;;;;;;;;;;;;;;;;;;20124:32;;20192:1;20175:19;;:5;:19;;;;20167:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20258:5;20251:12;;;20032:239;;;:::o;19762:208::-;19834:7;19879:1;19862:19;;:5;:19;;;;19854:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19946:9;:16;19956:5;19946:16;;;;;;;;;;;;;;;;19939:23;;19762:208;;;:::o;40062:94::-;39642:12;:10;:12::i;:::-;39631:23;;:7;:5;:7::i;:::-;:23;;;39623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40127:21:::1;40145:1;40127:9;:21::i;:::-;40062:94::o:0;54059:166::-;39642:12;:10;:12::i;:::-;39631:23;;:7;:5;:7::i;:::-;:23;;;39623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54116:18:::1;54137:17;:15;:17::i;:::-;54116:38;;54165:22;54171:3;54176:10;54165:5;:22::i;:::-;54198:19;:17;:19::i;:::-;54105:120;54059:166:::0;:::o;39411:87::-;39457:7;39484:6;;;;;;;;;;;39477:13;;39411:87;:::o;57180:98::-;39642:12;:10;:12::i;:::-;39631:23;;:7;:5;:7::i;:::-;:23;;;39623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57260:10:::1;57248:9;:22;;;;57180:98:::0;:::o;20507:104::-;20563:13;20596:7;20589:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20507:104;:::o;22190:295::-;22305:12;:10;:12::i;:::-;22293:24;;:8;:24;;;;22285:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22405:8;22360:18;:32;22379:12;:10;:12::i;:::-;22360:32;;;;;;;;;;;;;;;:42;22393:8;22360:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22458:8;22429:48;;22444:12;:10;:12::i;:::-;22429:48;;;22468:8;22429:48;;;;;;:::i;:::-;;;;;;;;22190:295;;:::o;57006:162::-;39642:12;:10;:12::i;:::-;39631:23;;:7;:5;:7::i;:::-;:23;;;39623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57139:21:::1;57116:20;;:44;;;;;;;;;;;;;;;;;;57006:162:::0;:::o;23453:328::-;23628:41;23647:12;:10;:12::i;:::-;23661:7;23628:18;:41::i;:::-;23620:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23734:39;23748:4;23754:2;23758:7;23767:5;23734:13;:39::i;:::-;23453:328;;;;:::o;55921:34::-;;;;:::o;56628:370::-;56746:13;56799:16;56807:7;56799;:16::i;:::-;56777:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;56947:14;:12;:14::i;:::-;56963:25;56980:7;56963:16;:25::i;:::-;56930:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56903:87;;56628:370;;;:::o;57477:105::-;57531:13;57564:10;:8;:10::i;:::-;57557:17;;57477:105;:::o;55028:462::-;55170:4;55255:27;55299:20;;;;;;;;;;;55255:65;;55376:8;55335:49;;55343:13;:21;;;55365:5;55343:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55335:49;;;55331:93;;;55408:4;55401:11;;;;;55331:93;55443:39;55466:5;55473:8;55443:22;:39::i;:::-;55436:46;;;55028:462;;;;;:::o;40311:192::-;39642:12;:10;:12::i;:::-;39631:23;;:7;:5;:7::i;:::-;:23;;;39623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40420:1:::1;40400:22;;:8;:22;;;;40392:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40476:19;40486:8;40476:9;:19::i;:::-;40311:192:::0;:::o;47245:650::-;47316:22;47382:4;47360:27;;:10;:27;;;47356:508;;;47404:18;47425:8;;47404:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47448:13;47464:8;;:15;;47448:31;;47716:42;47686:5;47679;47675:17;47669:24;47643:134;47633:144;;47503:289;;47356:508;;;47841:10;47824:28;;47356:508;47245:650;:::o;19393:305::-;19495:4;19547:25;19532:40;;;:11;:40;;;;:105;;;;19604:33;19589:48;;;:11;:48;;;;19532:105;:158;;;;19654:36;19678:11;19654:23;:36::i;:::-;19532:158;19512:178;;19393:305;;;:::o;25291:127::-;25356:4;25408:1;25380:30;;:7;:16;25388:7;25380:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25373:37;;25291:127;;;:::o;57706:178::-;57813:14;57852:24;:22;:24::i;:::-;57845:31;;57706:178;:::o;29273:174::-;29375:2;29348:15;:24;29364:7;29348:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29431:7;29427:2;29393:46;;29402:23;29417:7;29402:14;:23::i;:::-;29393:46;;;;;;;;;;;;29273:174;;:::o;52692:486::-;52870:4;52913:1;52895:20;;:6;:20;;;;52887:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;53011:159;53039:47;53058:27;53078:6;53058:19;:27::i;:::-;53039:18;:47::i;:::-;53105:4;53128;53151;53011:159;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52988:182;;:6;:182;;;52968:202;;52692:486;;;;;;;:::o;43042:98::-;43100:7;43131:1;43127;:5;;;;:::i;:::-;43120:12;;43042:98;;;;:::o;54372:106::-;54422:7;54449:21;54468:1;54449:14;;:18;;:21;;;;:::i;:::-;54442:28;;54372:106;:::o;54556:73::-;54605:14;;:16;;;;;;;;;:::i;:::-;;;;;;54556:73::o;27269:382::-;27363:1;27349:16;;:2;:16;;;;27341:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27422:16;27430:7;27422;:16::i;:::-;27421:17;27413:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27484:45;27513:1;27517:2;27521:7;27484:20;:45::i;:::-;27559:1;27542:9;:13;27552:2;27542:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27590:2;27571:7;:16;27579:7;27571:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27635:7;27631:2;27610:33;;27627:1;27610:33;;;;;;;;;;;;27269:382;;:::o;25585:348::-;25678:4;25703:16;25711:7;25703;:16::i;:::-;25695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25779:13;25795:23;25810:7;25795:14;:23::i;:::-;25779:39;;25848:5;25837:16;;:7;:16;;;:51;;;;25881:7;25857:31;;:20;25869:7;25857:11;:20::i;:::-;:31;;;25837:51;:87;;;;25892:32;25909:5;25916:7;25892:16;:32::i;:::-;25837:87;25829:96;;;25585:348;;;;:::o;28577:578::-;28736:4;28709:31;;:23;28724:7;28709:14;:23::i;:::-;:31;;;28701:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28819:1;28805:16;;:2;:16;;;;28797:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28875:39;28896:4;28902:2;28906:7;28875:20;:39::i;:::-;28979:29;28996:1;29000:7;28979:8;:29::i;:::-;29040:1;29021:9;:15;29031:4;29021:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29069:1;29052:9;:13;29062:2;29052:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29100:2;29081:7;:16;29089:7;29081:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29139:7;29135:2;29120:27;;29129:4;29120:27;;;;;;;;;;;;28577:578;;;:::o;40511:173::-;40567:16;40586:6;;;;;;;;;;;40567:25;;40612:8;40603:6;;:17;;;;;;;;;;;;;;;;;;40667:8;40636:40;;40657:8;40636:40;;;;;;;;;;;;40556:128;40511:173;:::o;24663:315::-;24820:28;24830:4;24836:2;24840:7;24820:9;:28::i;:::-;24867:48;24890:4;24896:2;24900:7;24909:5;24867:22;:48::i;:::-;24859:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24663:315;;;;:::o;15516:723::-;15572:13;15802:1;15793:5;:10;15789:53;;;15820:10;;;;;;;;;;;;;;;;;;;;;15789:53;15852:12;15867:5;15852:20;;15883:14;15908:78;15923:1;15915:4;:9;15908:78;;15941:8;;;;;:::i;:::-;;;;15972:2;15964:10;;;;;:::i;:::-;;;15908:78;;;15996:19;16028:6;16018:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15996:39;;16046:154;16062:1;16053:5;:10;16046:154;;16090:1;16080:11;;;;;:::i;:::-;;;16157:2;16149:5;:10;;;;:::i;:::-;16136:2;:24;;;;:::i;:::-;16123:39;;16106:6;16113;16106:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16186:2;16177:11;;;;;:::i;:::-;;;16046:154;;;16224:6;16210:21;;;;;15516:723;;;;:::o;57590:108::-;57650:13;57683:7;57676:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57590:108;:::o;22556:164::-;22653:4;22677:18;:25;22696:5;22677:25;;;;;;;;;;;;;;;:35;22703:8;22677:35;;;;;;;;;;;;;;;;;;;;;;;;;22670:42;;22556:164;;;;:::o;18002:157::-;18087:4;18126:25;18111:40;;;:11;:40;;;;18104:47;;18002:157;;;:::o;52159:410::-;52269:7;50336:100;;;;;;;;;;;;;;;;;50316:127;;;;;;52423:6;:12;;;52458:6;:11;;;52502:6;:24;;;52492:35;;;;;;52342:204;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52314:247;;;;;;52294:267;;52159:410;;;:::o;49913:258::-;50012:7;50114:20;:18;:20::i;:::-;50136:11;50085:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50057:106;;;;;;50037:126;;49913:258;;;:::o;34536:589::-;34680:45;34707:4;34713:2;34717:7;34680:26;:45::i;:::-;34758:1;34742:18;;:4;:18;;;34738:187;;;34777:40;34809:7;34777:31;:40::i;:::-;34738:187;;;34847:2;34839:10;;:4;:10;;;34835:90;;34866:47;34899:4;34905:7;34866:32;:47::i;:::-;34835:90;34738:187;34953:1;34939:16;;:2;:16;;;34935:183;;;34972:45;35009:7;34972:36;:45::i;:::-;34935:183;;;35045:4;35039:10;;:2;:10;;;35035:83;;35066:40;35094:2;35098:7;35066:27;:40::i;:::-;35035:83;34935:183;34536:589;;;:::o;30012:799::-;30167:4;30188:15;:2;:13;;;:15::i;:::-;30184:620;;;30240:2;30224:36;;;30261:12;:10;:12::i;:::-;30275:4;30281:7;30290:5;30224:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30220:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30483:1;30466:6;:13;:18;30462:272;;;30509:60;;;;;;;;;;:::i;:::-;;;;;;;;30462:272;30684:6;30678:13;30669:6;30665:2;30661:15;30654:38;30220:529;30357:41;;;30347:51;;;:6;:51;;;;30340:58;;;;;30184:620;30788:4;30781:11;;30012:799;;;;;;;:::o;31383:126::-;;;;:::o;35848:164::-;35952:10;:17;;;;35925:15;:24;35941:7;35925:24;;;;;;;;;;;:44;;;;35980:10;35996:7;35980:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35848:164;:::o;36639:988::-;36905:22;36955:1;36930:22;36947:4;36930:16;:22::i;:::-;:26;;;;:::i;:::-;36905:51;;36967:18;36988:17;:26;37006:7;36988:26;;;;;;;;;;;;36967:47;;37135:14;37121:10;:28;37117:328;;37166:19;37188:12;:18;37201:4;37188:18;;;;;;;;;;;;;;;:34;37207:14;37188:34;;;;;;;;;;;;37166:56;;37272:11;37239:12;:18;37252:4;37239:18;;;;;;;;;;;;;;;:30;37258:10;37239:30;;;;;;;;;;;:44;;;;37389:10;37356:17;:30;37374:11;37356:30;;;;;;;;;;;:43;;;;37151:294;37117:328;37541:17;:26;37559:7;37541:26;;;;;;;;;;;37534:33;;;37585:12;:18;37598:4;37585:18;;;;;;;;;;;;;;;:34;37604:14;37585:34;;;;;;;;;;;37578:41;;;36720:907;;36639:988;;:::o;37922:1079::-;38175:22;38220:1;38200:10;:17;;;;:21;;;;:::i;:::-;38175:46;;38232:18;38253:15;:24;38269:7;38253:24;;;;;;;;;;;;38232:45;;38604:19;38626:10;38637:14;38626:26;;;;;;;;:::i;:::-;;;;;;;;;;38604:48;;38690:11;38665:10;38676;38665:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;38801:10;38770:15;:28;38786:11;38770:28;;;;;;;;;;;:41;;;;38942:15;:24;38958:7;38942:24;;;;;;;;;;;38935:31;;;38977:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37993:1008;;;37922:1079;:::o;35426:221::-;35511:14;35528:20;35545:2;35528:16;:20::i;:::-;35511:37;;35586:7;35559:12;:16;35572:2;35559:16;;;;;;;;;;;;;;;:24;35576:6;35559:24;;;;;;;;;;;:34;;;;35633:6;35604:17;:26;35622:7;35604:26;;;;;;;;;;;:35;;;;35500:147;35426:221;;:::o;7243:387::-;7303:4;7511:12;7578:7;7566:20;7558:28;;7621:1;7614:4;:8;7607:15;;;7243:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;1035:84;;;;:::o;1125:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1177:87;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1321:86;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1475:79;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:2;;1685:79;;:::i;:::-;1644:2;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;;;;;:::o;1917:201::-;2003:5;2034:6;2028:13;2019:22;;2050:62;2106:5;2050:62;:::i;:::-;2009:109;;;;:::o;2138:340::-;2194:5;2243:3;2236:4;2228:6;2224:17;2220:27;2210:2;;2251:79;;:::i;:::-;2210:2;2368:6;2355:20;2393:79;2468:3;2460:6;2453:4;2445:6;2441:17;2393:79;:::i;:::-;2384:88;;2200:278;;;;;:::o;2484:139::-;2530:5;2568:6;2555:20;2546:29;;2584:33;2611:5;2584:33;:::i;:::-;2536:87;;;;:::o;2629:135::-;2673:5;2711:6;2698:20;2689:29;;2727:31;2752:5;2727:31;:::i;:::-;2679:85;;;;:::o;2770:329::-;2829:6;2878:2;2866:9;2857:7;2853:23;2849:32;2846:2;;;2884:79;;:::i;:::-;2846:2;3004:1;3029:53;3074:7;3065:6;3054:9;3050:22;3029:53;:::i;:::-;3019:63;;2975:117;2836:263;;;;:::o;3105:474::-;3173:6;3181;3230:2;3218:9;3209:7;3205:23;3201:32;3198:2;;;3236:79;;:::i;:::-;3198:2;3356:1;3381:53;3426:7;3417:6;3406:9;3402:22;3381:53;:::i;:::-;3371:63;;3327:117;3483:2;3509:53;3554:7;3545:6;3534:9;3530:22;3509:53;:::i;:::-;3499:63;;3454:118;3188:391;;;;;:::o;3585:619::-;3662:6;3670;3678;3727:2;3715:9;3706:7;3702:23;3698:32;3695:2;;;3733:79;;:::i;:::-;3695:2;3853:1;3878:53;3923:7;3914:6;3903:9;3899:22;3878:53;:::i;:::-;3868:63;;3824:117;3980:2;4006:53;4051:7;4042:6;4031:9;4027:22;4006:53;:::i;:::-;3996:63;;3951:118;4108:2;4134:53;4179:7;4170:6;4159:9;4155:22;4134:53;:::i;:::-;4124:63;;4079:118;3685:519;;;;;:::o;4210:943::-;4305:6;4313;4321;4329;4378:3;4366:9;4357:7;4353:23;4349:33;4346:2;;;4385:79;;:::i;:::-;4346:2;4505:1;4530:53;4575:7;4566:6;4555:9;4551:22;4530:53;:::i;:::-;4520:63;;4476:117;4632:2;4658:53;4703:7;4694:6;4683:9;4679:22;4658:53;:::i;:::-;4648:63;;4603:118;4760:2;4786:53;4831:7;4822:6;4811:9;4807:22;4786:53;:::i;:::-;4776:63;;4731:118;4916:2;4905:9;4901:18;4888:32;4947:18;4939:6;4936:30;4933:2;;;4969:79;;:::i;:::-;4933:2;5074:62;5128:7;5119:6;5108:9;5104:22;5074:62;:::i;:::-;5064:72;;4859:287;4336:817;;;;;;;:::o;5159:468::-;5224:6;5232;5281:2;5269:9;5260:7;5256:23;5252:32;5249:2;;;5287:79;;:::i;:::-;5249:2;5407:1;5432:53;5477:7;5468:6;5457:9;5453:22;5432:53;:::i;:::-;5422:63;;5378:117;5534:2;5560:50;5602:7;5593:6;5582:9;5578:22;5560:50;:::i;:::-;5550:60;;5505:115;5239:388;;;;;:::o;5633:1085::-;5735:6;5743;5751;5759;5767;5816:3;5804:9;5795:7;5791:23;5787:33;5784:2;;;5823:79;;:::i;:::-;5784:2;5943:1;5968:53;6013:7;6004:6;5993:9;5989:22;5968:53;:::i;:::-;5958:63;;5914:117;6098:2;6087:9;6083:18;6070:32;6129:18;6121:6;6118:30;6115:2;;;6151:79;;:::i;:::-;6115:2;6256:62;6310:7;6301:6;6290:9;6286:22;6256:62;:::i;:::-;6246:72;;6041:287;6367:2;6393:53;6438:7;6429:6;6418:9;6414:22;6393:53;:::i;:::-;6383:63;;6338:118;6495:2;6521:53;6566:7;6557:6;6546:9;6542:22;6521:53;:::i;:::-;6511:63;;6466:118;6623:3;6650:51;6693:7;6684:6;6673:9;6669:22;6650:51;:::i;:::-;6640:61;;6594:117;5774:944;;;;;;;;:::o;6724:474::-;6792:6;6800;6849:2;6837:9;6828:7;6824:23;6820:32;6817:2;;;6855:79;;:::i;:::-;6817:2;6975:1;7000:53;7045:7;7036:6;7025:9;7021:22;7000:53;:::i;:::-;6990:63;;6946:117;7102:2;7128:53;7173:7;7164:6;7153:9;7149:22;7128:53;:::i;:::-;7118:63;;7073:118;6807:391;;;;;:::o;7204:327::-;7262:6;7311:2;7299:9;7290:7;7286:23;7282:32;7279:2;;;7317:79;;:::i;:::-;7279:2;7437:1;7462:52;7506:7;7497:6;7486:9;7482:22;7462:52;:::i;:::-;7452:62;;7408:116;7269:262;;;;:::o;7537:349::-;7606:6;7655:2;7643:9;7634:7;7630:23;7626:32;7623:2;;;7661:79;;:::i;:::-;7623:2;7781:1;7806:63;7861:7;7852:6;7841:9;7837:22;7806:63;:::i;:::-;7796:73;;7752:127;7613:273;;;;:::o;7892:409::-;7991:6;8040:2;8028:9;8019:7;8015:23;8011:32;8008:2;;;8046:79;;:::i;:::-;8008:2;8166:1;8191:93;8276:7;8267:6;8256:9;8252:22;8191:93;:::i;:::-;8181:103;;8137:157;7998:303;;;;:::o;8307:509::-;8376:6;8425:2;8413:9;8404:7;8400:23;8396:32;8393:2;;;8431:79;;:::i;:::-;8393:2;8579:1;8568:9;8564:17;8551:31;8609:18;8601:6;8598:30;8595:2;;;8631:79;;:::i;:::-;8595:2;8736:63;8791:7;8782:6;8771:9;8767:22;8736:63;:::i;:::-;8726:73;;8522:287;8383:433;;;;:::o;8822:329::-;8881:6;8930:2;8918:9;8909:7;8905:23;8901:32;8898:2;;;8936:79;;:::i;:::-;8898:2;9056:1;9081:53;9126:7;9117:6;9106:9;9102:22;9081:53;:::i;:::-;9071:63;;9027:117;8888:263;;;;:::o;9157:142::-;9260:32;9286:5;9260:32;:::i;:::-;9255:3;9248:45;9238:61;;:::o;9305:118::-;9392:24;9410:5;9392:24;:::i;:::-;9387:3;9380:37;9370:53;;:::o;9429:157::-;9534:45;9554:24;9572:5;9554:24;:::i;:::-;9534:45;:::i;:::-;9529:3;9522:58;9512:74;;:::o;9592:109::-;9673:21;9688:5;9673:21;:::i;:::-;9668:3;9661:34;9651:50;;:::o;9707:118::-;9794:24;9812:5;9794:24;:::i;:::-;9789:3;9782:37;9772:53;;:::o;9831:157::-;9936:45;9956:24;9974:5;9956:24;:::i;:::-;9936:45;:::i;:::-;9931:3;9924:58;9914:74;;:::o;9994:360::-;10080:3;10108:38;10140:5;10108:38;:::i;:::-;10162:70;10225:6;10220:3;10162:70;:::i;:::-;10155:77;;10241:52;10286:6;10281:3;10274:4;10267:5;10263:16;10241:52;:::i;:::-;10318:29;10340:6;10318:29;:::i;:::-;10313:3;10309:39;10302:46;;10084:270;;;;;:::o;10360:373::-;10464:3;10492:38;10524:5;10492:38;:::i;:::-;10546:88;10627:6;10622:3;10546:88;:::i;:::-;10539:95;;10643:52;10688:6;10683:3;10676:4;10669:5;10665:16;10643:52;:::i;:::-;10720:6;10715:3;10711:16;10704:23;;10468:265;;;;;:::o;10739:364::-;10827:3;10855:39;10888:5;10855:39;:::i;:::-;10910:71;10974:6;10969:3;10910:71;:::i;:::-;10903:78;;10990:52;11035:6;11030:3;11023:4;11016:5;11012:16;10990:52;:::i;:::-;11067:29;11089:6;11067:29;:::i;:::-;11062:3;11058:39;11051:46;;10831:272;;;;;:::o;11109:377::-;11215:3;11243:39;11276:5;11243:39;:::i;:::-;11298:89;11380:6;11375:3;11298:89;:::i;:::-;11291:96;;11396:52;11441:6;11436:3;11429:4;11422:5;11418:16;11396:52;:::i;:::-;11473:6;11468:3;11464:16;11457:23;;11219:267;;;;;:::o;11492:366::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11638:220;;;:::o;11864:366::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;12010:220;;;:::o;12236:366::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12382:220;;;:::o;12608:366::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12754:220;;;:::o;12980:366::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;13126:220;;;:::o;13352:366::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13498:220;;;:::o;13724:400::-;13884:3;13905:84;13987:1;13982:3;13905:84;:::i;:::-;13898:91;;13998:93;14087:3;13998:93;:::i;:::-;14116:1;14111:3;14107:11;14100:18;;13888:236;;;:::o;14130:366::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14276:220;;;:::o;14502:366::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14648:220;;;:::o;14874:366::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;15020:220;;;:::o;15246:366::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15392:220;;;:::o;15618:366::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15764:220;;;:::o;15990:366::-;16132:3;16153:67;16217:2;16212:3;16153:67;:::i;:::-;16146:74;;16229:93;16318:3;16229:93;:::i;:::-;16347:2;16342:3;16338:12;16331:19;;16136:220;;;:::o;16362:366::-;16504:3;16525:67;16589:2;16584:3;16525:67;:::i;:::-;16518:74;;16601:93;16690:3;16601:93;:::i;:::-;16719:2;16714:3;16710:12;16703:19;;16508:220;;;:::o;16734:366::-;16876:3;16897:67;16961:2;16956:3;16897:67;:::i;:::-;16890:74;;16973:93;17062:3;16973:93;:::i;:::-;17091:2;17086:3;17082:12;17075:19;;16880:220;;;:::o;17106:366::-;17248:3;17269:67;17333:2;17328:3;17269:67;:::i;:::-;17262:74;;17345:93;17434:3;17345:93;:::i;:::-;17463:2;17458:3;17454:12;17447:19;;17252:220;;;:::o;17478:366::-;17620:3;17641:67;17705:2;17700:3;17641:67;:::i;:::-;17634:74;;17717:93;17806:3;17717:93;:::i;:::-;17835:2;17830:3;17826:12;17819:19;;17624:220;;;:::o;17850:366::-;17992:3;18013:67;18077:2;18072:3;18013:67;:::i;:::-;18006:74;;18089:93;18178:3;18089:93;:::i;:::-;18207:2;18202:3;18198:12;18191:19;;17996:220;;;:::o;18222:366::-;18364:3;18385:67;18449:2;18444:3;18385:67;:::i;:::-;18378:74;;18461:93;18550:3;18461:93;:::i;:::-;18579:2;18574:3;18570:12;18563:19;;18368:220;;;:::o;18594:366::-;18736:3;18757:67;18821:2;18816:3;18757:67;:::i;:::-;18750:74;;18833:93;18922:3;18833:93;:::i;:::-;18951:2;18946:3;18942:12;18935:19;;18740:220;;;:::o;18966:366::-;19108:3;19129:67;19193:2;19188:3;19129:67;:::i;:::-;19122:74;;19205:93;19294:3;19205:93;:::i;:::-;19323:2;19318:3;19314:12;19307:19;;19112:220;;;:::o;19338:366::-;19480:3;19501:67;19565:2;19560:3;19501:67;:::i;:::-;19494:74;;19577:93;19666:3;19577:93;:::i;:::-;19695:2;19690:3;19686:12;19679:19;;19484:220;;;:::o;19710:366::-;19852:3;19873:67;19937:2;19932:3;19873:67;:::i;:::-;19866:74;;19949:93;20038:3;19949:93;:::i;:::-;20067:2;20062:3;20058:12;20051:19;;19856:220;;;:::o;20082:365::-;20224:3;20245:66;20309:1;20304:3;20245:66;:::i;:::-;20238:73;;20320:93;20409:3;20320:93;:::i;:::-;20438:2;20433:3;20429:12;20422:19;;20228:219;;;:::o;20453:366::-;20595:3;20616:67;20680:2;20675:3;20616:67;:::i;:::-;20609:74;;20692:93;20781:3;20692:93;:::i;:::-;20810:2;20805:3;20801:12;20794:19;;20599:220;;;:::o;20825:118::-;20912:24;20930:5;20912:24;:::i;:::-;20907:3;20900:37;20890:53;;:::o;20949:112::-;21032:22;21048:5;21032:22;:::i;:::-;21027:3;21020:35;21010:51;;:::o;21067:271::-;21197:3;21219:93;21308:3;21299:6;21219:93;:::i;:::-;21212:100;;21329:3;21322:10;;21201:137;;;;:::o;21344:412::-;21502:3;21524:93;21613:3;21604:6;21524:93;:::i;:::-;21517:100;;21627:75;21698:3;21689:6;21627:75;:::i;:::-;21727:2;21722:3;21718:12;21711:19;;21747:3;21740:10;;21506:250;;;;;:::o;21762:435::-;21942:3;21964:95;22055:3;22046:6;21964:95;:::i;:::-;21957:102;;22076:95;22167:3;22158:6;22076:95;:::i;:::-;22069:102;;22188:3;22181:10;;21946:251;;;;;:::o;22203:663::-;22444:3;22466:148;22610:3;22466:148;:::i;:::-;22459:155;;22624:75;22695:3;22686:6;22624:75;:::i;:::-;22724:2;22719:3;22715:12;22708:19;;22737:75;22808:3;22799:6;22737:75;:::i;:::-;22837:2;22832:3;22828:12;22821:19;;22857:3;22850:10;;22448:418;;;;;:::o;22872:222::-;22965:4;23003:2;22992:9;22988:18;22980:26;;23016:71;23084:1;23073:9;23069:17;23060:6;23016:71;:::i;:::-;22970:124;;;;:::o;23100:561::-;23283:4;23321:2;23310:9;23306:18;23298:26;;23334:71;23402:1;23391:9;23387:17;23378:6;23334:71;:::i;:::-;23415:88;23499:2;23488:9;23484:18;23475:6;23415:88;:::i;:::-;23550:9;23544:4;23540:20;23535:2;23524:9;23520:18;23513:48;23578:76;23649:4;23640:6;23578:76;:::i;:::-;23570:84;;23288:373;;;;;;:::o;23667:640::-;23862:4;23900:3;23889:9;23885:19;23877:27;;23914:71;23982:1;23971:9;23967:17;23958:6;23914:71;:::i;:::-;23995:72;24063:2;24052:9;24048:18;24039:6;23995:72;:::i;:::-;24077;24145:2;24134:9;24130:18;24121:6;24077:72;:::i;:::-;24196:9;24190:4;24186:20;24181:2;24170:9;24166:18;24159:48;24224:76;24295:4;24286:6;24224:76;:::i;:::-;24216:84;;23867:440;;;;;;;:::o;24313:210::-;24400:4;24438:2;24427:9;24423:18;24415:26;;24451:65;24513:1;24502:9;24498:17;24489:6;24451:65;:::i;:::-;24405:118;;;;:::o;24529:222::-;24622:4;24660:2;24649:9;24645:18;24637:26;;24673:71;24741:1;24730:9;24726:17;24717:6;24673:71;:::i;:::-;24627:124;;;;:::o;24757:553::-;24934:4;24972:3;24961:9;24957:19;24949:27;;24986:71;25054:1;25043:9;25039:17;25030:6;24986:71;:::i;:::-;25067:72;25135:2;25124:9;25120:18;25111:6;25067:72;:::i;:::-;25149;25217:2;25206:9;25202:18;25193:6;25149:72;:::i;:::-;25231;25299:2;25288:9;25284:18;25275:6;25231:72;:::i;:::-;24939:371;;;;;;;:::o;25316:545::-;25489:4;25527:3;25516:9;25512:19;25504:27;;25541:71;25609:1;25598:9;25594:17;25585:6;25541:71;:::i;:::-;25622:68;25686:2;25675:9;25671:18;25662:6;25622:68;:::i;:::-;25700:72;25768:2;25757:9;25753:18;25744:6;25700:72;:::i;:::-;25782;25850:2;25839:9;25835:18;25826:6;25782:72;:::i;:::-;25494:367;;;;;;;:::o;25867:309::-;25978:4;26016:2;26005:9;26001:18;25993:26;;26065:9;26059:4;26055:20;26051:1;26040:9;26036:17;26029:47;26093:76;26164:4;26155:6;26093:76;:::i;:::-;26085:84;;25983:193;;;;:::o;26182:313::-;26295:4;26333:2;26322:9;26318:18;26310:26;;26382:9;26376:4;26372:20;26368:1;26357:9;26353:17;26346:47;26410:78;26483:4;26474:6;26410:78;:::i;:::-;26402:86;;26300:195;;;;:::o;26501:419::-;26667:4;26705:2;26694:9;26690:18;26682:26;;26754:9;26748:4;26744:20;26740:1;26729:9;26725:17;26718:47;26782:131;26908:4;26782:131;:::i;:::-;26774:139;;26672:248;;;:::o;26926:419::-;27092:4;27130:2;27119:9;27115:18;27107:26;;27179:9;27173:4;27169:20;27165:1;27154:9;27150:17;27143:47;27207:131;27333:4;27207:131;:::i;:::-;27199:139;;27097:248;;;:::o;27351:419::-;27517:4;27555:2;27544:9;27540:18;27532:26;;27604:9;27598:4;27594:20;27590:1;27579:9;27575:17;27568:47;27632:131;27758:4;27632:131;:::i;:::-;27624:139;;27522:248;;;:::o;27776:419::-;27942:4;27980:2;27969:9;27965:18;27957:26;;28029:9;28023:4;28019:20;28015:1;28004:9;28000:17;27993:47;28057:131;28183:4;28057:131;:::i;:::-;28049:139;;27947:248;;;:::o;28201:419::-;28367:4;28405:2;28394:9;28390:18;28382:26;;28454:9;28448:4;28444:20;28440:1;28429:9;28425:17;28418:47;28482:131;28608:4;28482:131;:::i;:::-;28474:139;;28372:248;;;:::o;28626:419::-;28792:4;28830:2;28819:9;28815:18;28807:26;;28879:9;28873:4;28869:20;28865:1;28854:9;28850:17;28843:47;28907:131;29033:4;28907:131;:::i;:::-;28899:139;;28797:248;;;:::o;29051:419::-;29217:4;29255:2;29244:9;29240:18;29232:26;;29304:9;29298:4;29294:20;29290:1;29279:9;29275:17;29268:47;29332:131;29458:4;29332:131;:::i;:::-;29324:139;;29222:248;;;:::o;29476:419::-;29642:4;29680:2;29669:9;29665:18;29657:26;;29729:9;29723:4;29719:20;29715:1;29704:9;29700:17;29693:47;29757:131;29883:4;29757:131;:::i;:::-;29749:139;;29647:248;;;:::o;29901:419::-;30067:4;30105:2;30094:9;30090:18;30082:26;;30154:9;30148:4;30144:20;30140:1;30129:9;30125:17;30118:47;30182:131;30308:4;30182:131;:::i;:::-;30174:139;;30072:248;;;:::o;30326:419::-;30492:4;30530:2;30519:9;30515:18;30507:26;;30579:9;30573:4;30569:20;30565:1;30554:9;30550:17;30543:47;30607:131;30733:4;30607:131;:::i;:::-;30599:139;;30497:248;;;:::o;30751:419::-;30917:4;30955:2;30944:9;30940:18;30932:26;;31004:9;30998:4;30994:20;30990:1;30979:9;30975:17;30968:47;31032:131;31158:4;31032:131;:::i;:::-;31024:139;;30922:248;;;:::o;31176:419::-;31342:4;31380:2;31369:9;31365:18;31357:26;;31429:9;31423:4;31419:20;31415:1;31404:9;31400:17;31393:47;31457:131;31583:4;31457:131;:::i;:::-;31449:139;;31347:248;;;:::o;31601:419::-;31767:4;31805:2;31794:9;31790:18;31782:26;;31854:9;31848:4;31844:20;31840:1;31829:9;31825:17;31818:47;31882:131;32008:4;31882:131;:::i;:::-;31874:139;;31772:248;;;:::o;32026:419::-;32192:4;32230:2;32219:9;32215:18;32207:26;;32279:9;32273:4;32269:20;32265:1;32254:9;32250:17;32243:47;32307:131;32433:4;32307:131;:::i;:::-;32299:139;;32197:248;;;:::o;32451:419::-;32617:4;32655:2;32644:9;32640:18;32632:26;;32704:9;32698:4;32694:20;32690:1;32679:9;32675:17;32668:47;32732:131;32858:4;32732:131;:::i;:::-;32724:139;;32622:248;;;:::o;32876:419::-;33042:4;33080:2;33069:9;33065:18;33057:26;;33129:9;33123:4;33119:20;33115:1;33104:9;33100:17;33093:47;33157:131;33283:4;33157:131;:::i;:::-;33149:139;;33047:248;;;:::o;33301:419::-;33467:4;33505:2;33494:9;33490:18;33482:26;;33554:9;33548:4;33544:20;33540:1;33529:9;33525:17;33518:47;33582:131;33708:4;33582:131;:::i;:::-;33574:139;;33472:248;;;:::o;33726:419::-;33892:4;33930:2;33919:9;33915:18;33907:26;;33979:9;33973:4;33969:20;33965:1;33954:9;33950:17;33943:47;34007:131;34133:4;34007:131;:::i;:::-;33999:139;;33897:248;;;:::o;34151:419::-;34317:4;34355:2;34344:9;34340:18;34332:26;;34404:9;34398:4;34394:20;34390:1;34379:9;34375:17;34368:47;34432:131;34558:4;34432:131;:::i;:::-;34424:139;;34322:248;;;:::o;34576:419::-;34742:4;34780:2;34769:9;34765:18;34757:26;;34829:9;34823:4;34819:20;34815:1;34804:9;34800:17;34793:47;34857:131;34983:4;34857:131;:::i;:::-;34849:139;;34747:248;;;:::o;35001:419::-;35167:4;35205:2;35194:9;35190:18;35182:26;;35254:9;35248:4;35244:20;35240:1;35229:9;35225:17;35218:47;35282:131;35408:4;35282:131;:::i;:::-;35274:139;;35172:248;;;:::o;35426:419::-;35592:4;35630:2;35619:9;35615:18;35607:26;;35679:9;35673:4;35669:20;35665:1;35654:9;35650:17;35643:47;35707:131;35833:4;35707:131;:::i;:::-;35699:139;;35597:248;;;:::o;35851:419::-;36017:4;36055:2;36044:9;36040:18;36032:26;;36104:9;36098:4;36094:20;36090:1;36079:9;36075:17;36068:47;36132:131;36258:4;36132:131;:::i;:::-;36124:139;;36022:248;;;:::o;36276:419::-;36442:4;36480:2;36469:9;36465:18;36457:26;;36529:9;36523:4;36519:20;36515:1;36504:9;36500:17;36493:47;36557:131;36683:4;36557:131;:::i;:::-;36549:139;;36447:248;;;:::o;36701:222::-;36794:4;36832:2;36821:9;36817:18;36809:26;;36845:71;36913:1;36902:9;36898:17;36889:6;36845:71;:::i;:::-;36799:124;;;;:::o;36929:129::-;36963:6;36990:20;;:::i;:::-;36980:30;;37019:33;37047:4;37039:6;37019:33;:::i;:::-;36970:88;;;:::o;37064:75::-;37097:6;37130:2;37124:9;37114:19;;37104:35;:::o;37145:307::-;37206:4;37296:18;37288:6;37285:30;37282:2;;;37318:18;;:::i;:::-;37282:2;37356:29;37378:6;37356:29;:::i;:::-;37348:37;;37440:4;37434;37430:15;37422:23;;37211:241;;;:::o;37458:308::-;37520:4;37610:18;37602:6;37599:30;37596:2;;;37632:18;;:::i;:::-;37596:2;37670:29;37692:6;37670:29;:::i;:::-;37662:37;;37754:4;37748;37744:15;37736:23;;37525:241;;;:::o;37772:98::-;37823:6;37857:5;37851:12;37841:22;;37830:40;;;:::o;37876:99::-;37928:6;37962:5;37956:12;37946:22;;37935:40;;;:::o;37981:168::-;38064:11;38098:6;38093:3;38086:19;38138:4;38133:3;38129:14;38114:29;;38076:73;;;;:::o;38155:147::-;38256:11;38293:3;38278:18;;38268:34;;;;:::o;38308:169::-;38392:11;38426:6;38421:3;38414:19;38466:4;38461:3;38457:14;38442:29;;38404:73;;;;:::o;38483:148::-;38585:11;38622:3;38607:18;;38597:34;;;;:::o;38637:305::-;38677:3;38696:20;38714:1;38696:20;:::i;:::-;38691:25;;38730:20;38748:1;38730:20;:::i;:::-;38725:25;;38884:1;38816:66;38812:74;38809:1;38806:81;38803:2;;;38890:18;;:::i;:::-;38803:2;38934:1;38931;38927:9;38920:16;;38681:261;;;;:::o;38948:185::-;38988:1;39005:20;39023:1;39005:20;:::i;:::-;39000:25;;39039:20;39057:1;39039:20;:::i;:::-;39034:25;;39078:1;39068:2;;39083:18;;:::i;:::-;39068:2;39125:1;39122;39118:9;39113:14;;38990:143;;;;:::o;39139:191::-;39179:4;39199:20;39217:1;39199:20;:::i;:::-;39194:25;;39233:20;39251:1;39233:20;:::i;:::-;39228:25;;39272:1;39269;39266:8;39263:2;;;39277:18;;:::i;:::-;39263:2;39322:1;39319;39315:9;39307:17;;39184:146;;;;:::o;39336:96::-;39373:7;39402:24;39420:5;39402:24;:::i;:::-;39391:35;;39381:51;;;:::o;39438:104::-;39483:7;39512:24;39530:5;39512:24;:::i;:::-;39501:35;;39491:51;;;:::o;39548:90::-;39582:7;39625:5;39618:13;39611:21;39600:32;;39590:48;;;:::o;39644:77::-;39681:7;39710:5;39699:16;;39689:32;;;:::o;39727:149::-;39763:7;39803:66;39796:5;39792:78;39781:89;;39771:105;;;:::o;39882:125::-;39948:7;39977:24;39995:5;39977:24;:::i;:::-;39966:35;;39956:51;;;:::o;40013:126::-;40050:7;40090:42;40083:5;40079:54;40068:65;;40058:81;;;:::o;40145:77::-;40182:7;40211:5;40200:16;;40190:32;;;:::o;40228:86::-;40263:7;40303:4;40296:5;40292:16;40281:27;;40271:43;;;:::o;40320:154::-;40404:6;40399:3;40394;40381:30;40466:1;40457:6;40452:3;40448:16;40441:27;40371:103;;;:::o;40480:307::-;40548:1;40558:113;40572:6;40569:1;40566:13;40558:113;;;40657:1;40652:3;40648:11;40642:18;40638:1;40633:3;40629:11;40622:39;40594:2;40591:1;40587:10;40582:15;;40558:113;;;40689:6;40686:1;40683:13;40680:2;;;40769:1;40760:6;40755:3;40751:16;40744:27;40680:2;40529:258;;;;:::o;40793:320::-;40837:6;40874:1;40868:4;40864:12;40854:22;;40921:1;40915:4;40911:12;40942:18;40932:2;;40998:4;40990:6;40986:17;40976:27;;40932:2;41060;41052:6;41049:14;41029:18;41026:38;41023:2;;;41079:18;;:::i;:::-;41023:2;40844:269;;;;:::o;41119:281::-;41202:27;41224:4;41202:27;:::i;:::-;41194:6;41190:40;41332:6;41320:10;41317:22;41296:18;41284:10;41281:34;41278:62;41275:2;;;41343:18;;:::i;:::-;41275:2;41383:10;41379:2;41372:22;41162:238;;;:::o;41406:233::-;41445:3;41468:24;41486:5;41468:24;:::i;:::-;41459:33;;41514:66;41507:5;41504:77;41501:2;;;41584:18;;:::i;:::-;41501:2;41631:1;41624:5;41620:13;41613:20;;41449:190;;;:::o;41645:100::-;41684:7;41713:26;41733:5;41713:26;:::i;:::-;41702:37;;41692:53;;;:::o;41751:79::-;41790:7;41819:5;41808:16;;41798:32;;;:::o;41836:94::-;41875:7;41904:20;41918:5;41904:20;:::i;:::-;41893:31;;41883:47;;;:::o;41936:176::-;41968:1;41985:20;42003:1;41985:20;:::i;:::-;41980:25;;42019:20;42037:1;42019:20;:::i;:::-;42014:25;;42058:1;42048:2;;42063:18;;:::i;:::-;42048:2;42104:1;42101;42097:9;42092:14;;41970:142;;;;:::o;42118:180::-;42166:77;42163:1;42156:88;42263:4;42260:1;42253:15;42287:4;42284:1;42277:15;42304:180;42352:77;42349:1;42342:88;42449:4;42446:1;42439:15;42473:4;42470:1;42463:15;42490:180;42538:77;42535:1;42528:88;42635:4;42632:1;42625:15;42659:4;42656:1;42649:15;42676:180;42724:77;42721:1;42714:88;42821:4;42818:1;42811:15;42845:4;42842:1;42835:15;42862:180;42910:77;42907:1;42900:88;43007:4;43004:1;42997:15;43031:4;43028:1;43021:15;43048:180;43096:77;43093:1;43086:88;43193:4;43190:1;43183:15;43217:4;43214:1;43207:15;43234:117;43343:1;43340;43333:12;43357:117;43466:1;43463;43456:12;43480:117;43589:1;43586;43579:12;43603:117;43712:1;43709;43702:12;43726:102;43767:6;43818:2;43814:7;43809:2;43802:5;43798:14;43794:28;43784:38;;43774:54;;;:::o;43834:94::-;43867:8;43915:5;43911:2;43907:14;43886:35;;43876:52;;;:::o;43934:170::-;44074:22;44070:1;44062:6;44058:14;44051:46;44040:64;:::o;44110:230::-;44250:34;44246:1;44238:6;44234:14;44227:58;44319:13;44314:2;44306:6;44302:15;44295:38;44216:124;:::o;44346:237::-;44486:34;44482:1;44474:6;44470:14;44463:58;44555:20;44550:2;44542:6;44538:15;44531:45;44452:131;:::o;44589:225::-;44729:34;44725:1;44717:6;44713:14;44706:58;44798:8;44793:2;44785:6;44781:15;44774:33;44695:119;:::o;44820:178::-;44960:30;44956:1;44948:6;44944:14;44937:54;44926:72;:::o;45004:178::-;45144:30;45140:1;45132:6;45128:14;45121:54;45110:72;:::o;45188:214::-;45328:66;45324:1;45316:6;45312:14;45305:90;45294:108;:::o;45408:223::-;45548:34;45544:1;45536:6;45532:14;45525:58;45617:6;45612:2;45604:6;45600:15;45593:31;45514:117;:::o;45637:168::-;45777:20;45773:1;45765:6;45761:14;45754:44;45743:62;:::o;45811:175::-;45951:27;45947:1;45939:6;45935:14;45928:51;45917:69;:::o;45992:231::-;46132:34;46128:1;46120:6;46116:14;46109:58;46201:14;46196:2;46188:6;46184:15;46177:39;46098:125;:::o;46229:224::-;46369:34;46365:1;46357:6;46353:14;46346:58;46438:7;46433:2;46425:6;46421:15;46414:32;46335:118;:::o;46459:243::-;46599:34;46595:1;46587:6;46583:14;46576:58;46668:26;46663:2;46655:6;46651:15;46644:51;46565:137;:::o;46708:229::-;46848:34;46844:1;46836:6;46832:14;46825:58;46917:12;46912:2;46904:6;46900:15;46893:37;46814:123;:::o;46943:228::-;47083:34;47079:1;47071:6;47067:14;47060:58;47152:11;47147:2;47139:6;47135:15;47128:36;47049:122;:::o;47177:182::-;47317:34;47313:1;47305:6;47301:14;47294:58;47283:76;:::o;47365:231::-;47505:34;47501:1;47493:6;47489:14;47482:58;47574:14;47569:2;47561:6;47557:15;47550:39;47471:125;:::o;47602:182::-;47742:34;47738:1;47730:6;47726:14;47719:58;47708:76;:::o;47790:228::-;47930:34;47926:1;47918:6;47914:14;47907:58;47999:11;47994:2;47986:6;47982:15;47975:36;47896:122;:::o;48024:220::-;48164:34;48160:1;48152:6;48148:14;48141:58;48233:3;48228:2;48220:6;48216:15;48209:28;48130:114;:::o;48250:234::-;48390:34;48386:1;48378:6;48374:14;48367:58;48459:17;48454:2;48446:6;48442:15;48435:42;48356:128;:::o;48490:220::-;48630:34;48626:1;48618:6;48614:14;48607:58;48699:3;48694:2;48686:6;48682:15;48675:28;48596:114;:::o;48716:236::-;48856:34;48852:1;48844:6;48840:14;48833:58;48925:19;48920:2;48912:6;48908:15;48901:44;48822:130;:::o;48958:158::-;49098:10;49094:1;49086:6;49082:14;49075:34;49064:52;:::o;49122:231::-;49262:34;49258:1;49250:6;49246:14;49239:58;49331:14;49326:2;49318:6;49314:15;49307:39;49228:125;:::o;49359:122::-;49432:24;49450:5;49432:24;:::i;:::-;49425:5;49422:35;49412:2;;49471:1;49468;49461:12;49412:2;49402:79;:::o;49487:116::-;49557:21;49572:5;49557:21;:::i;:::-;49550:5;49547:32;49537:2;;49593:1;49590;49583:12;49537:2;49527:76;:::o;49609:122::-;49682:24;49700:5;49682:24;:::i;:::-;49675:5;49672:35;49662:2;;49721:1;49718;49711:12;49662:2;49652:79;:::o;49737:120::-;49809:23;49826:5;49809:23;:::i;:::-;49802:5;49799:34;49789:2;;49847:1;49844;49837:12;49789:2;49779:78;:::o;49863:180::-;49965:53;50012:5;49965:53;:::i;:::-;49958:5;49955:64;49945:2;;50033:1;50030;50023:12;49945:2;49935:108;:::o;50049:122::-;50122:24;50140:5;50122:24;:::i;:::-;50115:5;50112:35;50102:2;;50161:1;50158;50151:12;50102:2;50092:79;:::o;50177:118::-;50248:22;50264:5;50248:22;:::i;:::-;50241:5;50238:33;50228:2;;50285:1;50282;50275:12;50228:2;50218:77;:::o

Swarm Source

ipfs://f1bb8a4ca039eb9f4a8cc57c07e00087dfac2101459e42a0756ce64fc28f6db2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.