ETH Price: $3,457.24 (+1.52%)
Gas: 9 Gwei

Token

Crazy Bunny (CBP)
 

Overview

Max Total Supply

6,052 CBP

Holders

876

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 CBP
0x15a740b85d7c28f9c495ec5dc7b7450aa7e465e6
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CrazyBunny

Compiler Version
v0.8.6+commit.11564f7e

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-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}
 
/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
 

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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;
    }
}
 
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}
 
/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        //unchecked {
            counter._value += 1;
        //}
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        //unchecked {
            counter._value = value - 1;
        //}
    }

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

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

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

    /**
     * @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() == msg.sender, "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);
    }
}
 

contract CrazyBunny is ERC721Enumerable, AccessControl, Ownable {

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    string _baseTokenURI = "https://api.chainbunnies.io/token/";

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    address public upgradedToAddress = address(0);
    uint256 internal _cap = 10000;


    constructor() ERC721("Crazy Bunny", "CBP")  {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
    }

    function upgrade(address _upgradedToAddress) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not a admin");
        
        upgradedToAddress = _upgradedToAddress;
    }

    function getCurrentTokenId() public view returns (uint256) {
        return _tokenIds.current();
    }

    function cap() external view returns (uint256) {
        return _cap;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

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

    function setBaseURI(string memory baseURI) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not a admin");

        _baseTokenURI = baseURI;
    }

    function mintNextToken(address _mintTo) external returns (bool) {
        _tokenIds.increment();

        return mint(_mintTo, _tokenIds.current());
    }

    function mint(address _mintTo, uint256 _tokenId) public returns (bool) {
        require(address(0) == upgradedToAddress, "Contract has been upgraded to a new address");
        require(hasRole(MINTER_ROLE, _msgSender()), "Caller is not a minter");
        require(_mintTo != address(0), "ERC721: mint to the zero address");
        require(!_exists(_tokenId), "ERC721: token already minted");

        require(_tokenId <= _cap, "Cap reached, maximum 10000 mints possible");
        
        _safeMint(_mintTo, _tokenId);

        return true;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_mintTo","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mintTo","type":"address"}],"name":"mintNextToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_upgradedToAddress","type":"address"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradedToAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405260405180606001604052806022815260200162004bb860229139600d908051906020019062000035929190620003e9565b506000600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612710600f553480156200008b57600080fd5b506040518060400160405280600b81526020017f4372617a792042756e6e790000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4342500000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000110929190620003e9565b50806001908051906020019062000129929190620003e9565b5050506200013d33620001a860201b60201c565b620001616000801b620001556200026e60201b60201c565b6200027660201b60201c565b620001a27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620001966200026e60201b60201c565b6200027660201b60201c565b620004fe565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6200028882826200028c60201b60201c565b5050565b6200029e82826200037e60201b60201c565b6200037a576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031f6200026e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620003f79062000499565b90600052602060002090601f0160209004810192826200041b576000855562000467565b82601f106200043657805160ff191683800117855562000467565b8280016001018555821562000467579182015b828111156200046657825182559160200191906001019062000449565b5b5090506200047691906200047a565b5090565b5b80821115620004955760008160009055506001016200047b565b5090565b60006002820490506001821680620004b257607f821691505b60208210811415620004c957620004c8620004cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146aa806200050e6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063561892361161011a578063a217fddf116100ad578063c87b56dd1161007c578063c87b56dd146105d6578063d539139314610606578063d547741f14610624578063e985e9c514610640578063f2fde38b14610670576101fb565b8063a217fddf14610562578063a22cb46514610580578063b88d4fde1461059c578063c1244e8d146105b8576101fb565b80637b006774116100e95780637b006774146104c65780638da5cb5b146104f657806391d148541461051457806395d89b4114610544576101fb565b8063561892361461043e5780636352211e1461045c57806370a082311461048c578063715018a6146104bc576101fb565b80632f2ff15d1161019257806340c10f191161016157806340c10f19146103a657806342842e0e146103d65780634f6ccce7146103f257806355f804b314610422576101fb565b80632f2ff15d146103205780632f745c591461033c578063355274ea1461036c57806336568abe1461038a576101fb565b8063095ea7b3116101ce578063095ea7b31461029a57806318160ddd146102b657806323b872dd146102d4578063248a9ca3146102f0576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e5780630900f0101461027e575b600080fd5b61021a600480360381019061021591906130f7565b61068c565b60405161022791906136f9565b60405180910390f35b61023861069e565b604051610245919061372f565b60405180910390f35b6102686004803603810190610263919061319a565b610730565b6040516102759190613692565b60405180910390f35b61029860048036038101906102939190612ec7565b6107b5565b005b6102b460048036038101906102af919061304a565b61084c565b005b6102be610964565b6040516102cb9190613a51565b60405180910390f35b6102ee60048036038101906102e99190612f34565b610971565b005b61030a6004803603810190610305919061308a565b6109d1565b6040516103179190613714565b60405180910390f35b61033a600480360381019061033591906130b7565b6109f1565b005b6103566004803603810190610351919061304a565b610a1a565b6040516103639190613a51565b60405180910390f35b610374610abf565b6040516103819190613a51565b60405180910390f35b6103a4600480360381019061039f91906130b7565b610ac9565b005b6103c060048036038101906103bb919061304a565b610b4c565b6040516103cd91906136f9565b60405180910390f35b6103f060048036038101906103eb9190612f34565b610d61565b005b61040c6004803603810190610407919061319a565b610d81565b6040516104199190613a51565b60405180910390f35b61043c60048036038101906104379190613151565b610df2565b005b610446610e5f565b6040516104539190613a51565b60405180910390f35b6104766004803603810190610471919061319a565b610e70565b6040516104839190613692565b60405180910390f35b6104a660048036038101906104a19190612ec7565b610f22565b6040516104b39190613a51565b60405180910390f35b6104c4610fda565b005b6104e060048036038101906104db9190612ec7565b61105b565b6040516104ed91906136f9565b60405180910390f35b6104fe611081565b60405161050b9190613692565b60405180910390f35b61052e600480360381019061052991906130b7565b6110ab565b60405161053b91906136f9565b60405180910390f35b61054c611116565b604051610559919061372f565b60405180910390f35b61056a6111a8565b6040516105779190613714565b60405180910390f35b61059a6004803603810190610595919061300a565b6111af565b005b6105b660048036038101906105b19190612f87565b611330565b005b6105c0611392565b6040516105cd9190613692565b60405180910390f35b6105f060048036038101906105eb919061319a565b6113b8565b6040516105fd919061372f565b60405180910390f35b61060e61145f565b60405161061b9190613714565b60405180910390f35b61063e600480360381019061063991906130b7565b611483565b005b61065a60048036038101906106559190612ef4565b6114ac565b60405161066791906136f9565b60405180910390f35b61068a60048036038101906106859190612ec7565b611540565b005b600061069782611631565b9050919050565b6060600080546106ad90613d35565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990613d35565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b600061073b826116ab565b61077a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077190613931565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6107c96000801b6107c4611717565b6110ab565b610808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ff90613751565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061085782610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf906139d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611717565b73ffffffffffffffffffffffffffffffffffffffff161480610916575061091581610910611717565b6114ac565b5b610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c90613891565b60405180910390fd5b61095f838361171f565b505050565b6000600880549050905090565b61098261097c611717565b826117d8565b6109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b8906139f1565b60405180910390fd5b6109cc8383836118b6565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6109fa826109d1565b610a0b81610a06611717565b611b12565b610a158383611baf565b505050565b6000610a2583610f22565b8210610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90613791565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600f54905090565b610ad1611717565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590613a31565b60405180910390fd5b610b488282611c90565b5050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613871565b60405180910390fd5b610c107f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610c0b611717565b6110ab565b610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c46906138b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613911565b60405180910390fd5b610cc8826116ab565b15610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff906137f1565b60405180910390fd5b600f54821115610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613991565b60405180910390fd5b610d578383611d72565b6001905092915050565b610d7c83838360405180602001604052806000815250611330565b505050565b6000610d8b610964565b8210610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613a11565b60405180910390fd5b60088281548110610de057610ddf613ece565b5b90600052602060002001549050919050565b610e066000801b610e01611717565b6110ab565b610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90613751565b60405180910390fd5b80600d9080519060200190610e5b929190612cc6565b5050565b6000610e6b600c611d90565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f10906138f1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906138d1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610ff9611081565b73ffffffffffffffffffffffffffffffffffffffff161461104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690613951565b60405180910390fd5b6110596000611d9e565b565b6000611067600c611e64565b61107a82611075600c611d90565b610b4c565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606001805461112590613d35565b80601f016020809104026020016040519081016040528092919081815260200182805461115190613d35565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b5050505050905090565b6000801b81565b6111b7611717565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90613831565b60405180910390fd5b8060056000611232611717565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112df611717565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132491906136f9565b60405180910390a35050565b61134161133b611717565b836117d8565b611380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611377906139f1565b60405180910390fd5b61138c84848484611e83565b50505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606113c3826116ab565b611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f9906139b1565b60405180910390fd5b600061140c611edf565b9050600081511161142c5760405180602001604052806000815250611457565b8061143684611f71565b604051602001611447929190613634565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61148c826109d1565b61149d81611498611717565b611b12565b6114a78383611c90565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661155f611081565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90613951565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906137d1565b60405180910390fd5b61162e81611d9e565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116a457506116a3826120d2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661179283610e70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117e3826116ab565b611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613851565b60405180910390fd5b600061182d83610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189c57508373ffffffffffffffffffffffffffffffffffffffff1661188484610730565b73ffffffffffffffffffffffffffffffffffffffff16145b806118ad57506118ac81856114ac565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118d682610e70565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613971565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613811565b60405180910390fd5b6119a783838361214c565b6119b260008261171f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a029190613c17565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a599190613b36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611b1c82826110ab565b611bab57611b418173ffffffffffffffffffffffffffffffffffffffff166014612260565b611b4f8360001c6020612260565b604051602001611b60929190613658565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba2919061372f565b60405180910390fd5b5050565b611bb982826110ab565b611c8c576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c31611717565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611c9a82826110ab565b15611d6e576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d13611717565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611d8c82826040518060200160405280600081525061249c565b5050565b600081600001549050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254611e799190613b36565b9250508190555050565b611e8e8484846118b6565b611e9a848484846124f7565b611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed0906137b1565b60405180910390fd5b50505050565b6060600d8054611eee90613d35565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1a90613d35565b8015611f675780601f10611f3c57610100808354040283529160200191611f67565b820191906000526020600020905b815481529060010190602001808311611f4a57829003601f168201915b5050505050905090565b60606000821415611fb9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120cd565b600082905060005b60008214611feb578080611fd490613d98565b915050600a82611fe49190613b8c565b9150611fc1565b60008167ffffffffffffffff81111561200757612006613efd565b5b6040519080825280601f01601f1916602001820160405280156120395781602001600182028036833780820191505090505b5090505b600085146120c6576001826120529190613c17565b9150600a856120619190613de1565b603061206d9190613b36565b60f81b81838151811061208357612082613ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120bf9190613b8c565b945061203d565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061214557506121448261268e565b5b9050919050565b612157838383612770565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219a5761219581612775565b6121d9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121d8576121d783826127be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561221c576122178161292b565b61225b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461225a5761225982826129fc565b5b5b505050565b6060600060028360026122739190613bbd565b61227d9190613b36565b67ffffffffffffffff81111561229657612295613efd565b5b6040519080825280601f01601f1916602001820160405280156122c85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612300576122ff613ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061236457612363613ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026123a49190613bbd565b6123ae9190613b36565b90505b600181111561244e577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106123f0576123ef613ece565b5b1a60f81b82828151811061240757612406613ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061244790613d0b565b90506123b1565b5060008414612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990613771565b60405180910390fd5b8091505092915050565b6124a68383612a7b565b6124b360008484846124f7565b6124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e9906137b1565b60405180910390fd5b505050565b60006125188473ffffffffffffffffffffffffffffffffffffffff16612c49565b15612681578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612541611717565b8786866040518563ffffffff1660e01b815260040161256394939291906136ad565b602060405180830381600087803b15801561257d57600080fd5b505af19250505080156125ae57506040513d601f19601f820116820180604052508101906125ab9190613124565b60015b612631573d80600081146125de576040519150601f19603f3d011682016040523d82523d6000602084013e6125e3565b606091505b50600081511415612629576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612620906137b1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612686565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061275957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612769575061276882612c5c565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127cb84610f22565b6127d59190613c17565b90506000600760008481526020019081526020016000205490508181146128ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061293f9190613c17565b905060006009600084815260200190815260200160002054905060006008838154811061296f5761296e613ece565b5b90600052602060002001549050806008838154811061299157612990613ece565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129e0576129df613e9f565b5b6001900381819060005260206000200160009055905550505050565b6000612a0783610f22565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae290613911565b60405180910390fd5b612af4816116ab565b15612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b906137f1565b60405180910390fd5b612b406000838361214c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b909190613b36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612cd290613d35565b90600052602060002090601f016020900481019282612cf45760008555612d3b565b82601f10612d0d57805160ff1916838001178555612d3b565b82800160010185558215612d3b579182015b82811115612d3a578251825591602001919060010190612d1f565b5b509050612d489190612d4c565b5090565b5b80821115612d65576000816000905550600101612d4d565b5090565b6000612d7c612d7784613a91565b613a6c565b905082815260208101848484011115612d9857612d97613f31565b5b612da3848285613cc9565b509392505050565b6000612dbe612db984613ac2565b613a6c565b905082815260208101848484011115612dda57612dd9613f31565b5b612de5848285613cc9565b509392505050565b600081359050612dfc81614601565b92915050565b600081359050612e1181614618565b92915050565b600081359050612e268161462f565b92915050565b600081359050612e3b81614646565b92915050565b600081519050612e5081614646565b92915050565b600082601f830112612e6b57612e6a613f2c565b5b8135612e7b848260208601612d69565b91505092915050565b600082601f830112612e9957612e98613f2c565b5b8135612ea9848260208601612dab565b91505092915050565b600081359050612ec18161465d565b92915050565b600060208284031215612edd57612edc613f3b565b5b6000612eeb84828501612ded565b91505092915050565b60008060408385031215612f0b57612f0a613f3b565b5b6000612f1985828601612ded565b9250506020612f2a85828601612ded565b9150509250929050565b600080600060608486031215612f4d57612f4c613f3b565b5b6000612f5b86828701612ded565b9350506020612f6c86828701612ded565b9250506040612f7d86828701612eb2565b9150509250925092565b60008060008060808587031215612fa157612fa0613f3b565b5b6000612faf87828801612ded565b9450506020612fc087828801612ded565b9350506040612fd187828801612eb2565b925050606085013567ffffffffffffffff811115612ff257612ff1613f36565b5b612ffe87828801612e56565b91505092959194509250565b6000806040838503121561302157613020613f3b565b5b600061302f85828601612ded565b925050602061304085828601612e02565b9150509250929050565b6000806040838503121561306157613060613f3b565b5b600061306f85828601612ded565b925050602061308085828601612eb2565b9150509250929050565b6000602082840312156130a05761309f613f3b565b5b60006130ae84828501612e17565b91505092915050565b600080604083850312156130ce576130cd613f3b565b5b60006130dc85828601612e17565b92505060206130ed85828601612ded565b9150509250929050565b60006020828403121561310d5761310c613f3b565b5b600061311b84828501612e2c565b91505092915050565b60006020828403121561313a57613139613f3b565b5b600061314884828501612e41565b91505092915050565b60006020828403121561316757613166613f3b565b5b600082013567ffffffffffffffff81111561318557613184613f36565b5b61319184828501612e84565b91505092915050565b6000602082840312156131b0576131af613f3b565b5b60006131be84828501612eb2565b91505092915050565b6131d081613c4b565b82525050565b6131df81613c5d565b82525050565b6131ee81613c69565b82525050565b60006131ff82613af3565b6132098185613b09565b9350613219818560208601613cd8565b61322281613f40565b840191505092915050565b600061323882613afe565b6132428185613b1a565b9350613252818560208601613cd8565b61325b81613f40565b840191505092915050565b600061327182613afe565b61327b8185613b2b565b935061328b818560208601613cd8565b80840191505092915050565b60006132a4601583613b1a565b91506132af82613f51565b602082019050919050565b60006132c7602083613b1a565b91506132d282613f7a565b602082019050919050565b60006132ea602b83613b1a565b91506132f582613fa3565b604082019050919050565b600061330d603283613b1a565b915061331882613ff2565b604082019050919050565b6000613330602683613b1a565b915061333b82614041565b604082019050919050565b6000613353601c83613b1a565b915061335e82614090565b602082019050919050565b6000613376602483613b1a565b9150613381826140b9565b604082019050919050565b6000613399601983613b1a565b91506133a482614108565b602082019050919050565b60006133bc602c83613b1a565b91506133c782614131565b604082019050919050565b60006133df602b83613b1a565b91506133ea82614180565b604082019050919050565b6000613402603883613b1a565b915061340d826141cf565b604082019050919050565b6000613425601683613b1a565b91506134308261421e565b602082019050919050565b6000613448602a83613b1a565b915061345382614247565b604082019050919050565b600061346b602983613b1a565b915061347682614296565b604082019050919050565b600061348e602083613b1a565b9150613499826142e5565b602082019050919050565b60006134b1602c83613b1a565b91506134bc8261430e565b604082019050919050565b60006134d4602083613b1a565b91506134df8261435d565b602082019050919050565b60006134f7602983613b1a565b915061350282614386565b604082019050919050565b600061351a602983613b1a565b9150613525826143d5565b604082019050919050565b600061353d602f83613b1a565b915061354882614424565b604082019050919050565b6000613560602183613b1a565b915061356b82614473565b604082019050919050565b6000613583603183613b1a565b915061358e826144c2565b604082019050919050565b60006135a6602c83613b1a565b91506135b182614511565b604082019050919050565b60006135c9601783613b2b565b91506135d482614560565b601782019050919050565b60006135ec601183613b2b565b91506135f782614589565b601182019050919050565b600061360f602f83613b1a565b915061361a826145b2565b604082019050919050565b61362e81613cbf565b82525050565b60006136408285613266565b915061364c8284613266565b91508190509392505050565b6000613663826135bc565b915061366f8285613266565b915061367a826135df565b91506136868284613266565b91508190509392505050565b60006020820190506136a760008301846131c7565b92915050565b60006080820190506136c260008301876131c7565b6136cf60208301866131c7565b6136dc6040830185613625565b81810360608301526136ee81846131f4565b905095945050505050565b600060208201905061370e60008301846131d6565b92915050565b600060208201905061372960008301846131e5565b92915050565b60006020820190508181036000830152613749818461322d565b905092915050565b6000602082019050818103600083015261376a81613297565b9050919050565b6000602082019050818103600083015261378a816132ba565b9050919050565b600060208201905081810360008301526137aa816132dd565b9050919050565b600060208201905081810360008301526137ca81613300565b9050919050565b600060208201905081810360008301526137ea81613323565b9050919050565b6000602082019050818103600083015261380a81613346565b9050919050565b6000602082019050818103600083015261382a81613369565b9050919050565b6000602082019050818103600083015261384a8161338c565b9050919050565b6000602082019050818103600083015261386a816133af565b9050919050565b6000602082019050818103600083015261388a816133d2565b9050919050565b600060208201905081810360008301526138aa816133f5565b9050919050565b600060208201905081810360008301526138ca81613418565b9050919050565b600060208201905081810360008301526138ea8161343b565b9050919050565b6000602082019050818103600083015261390a8161345e565b9050919050565b6000602082019050818103600083015261392a81613481565b9050919050565b6000602082019050818103600083015261394a816134a4565b9050919050565b6000602082019050818103600083015261396a816134c7565b9050919050565b6000602082019050818103600083015261398a816134ea565b9050919050565b600060208201905081810360008301526139aa8161350d565b9050919050565b600060208201905081810360008301526139ca81613530565b9050919050565b600060208201905081810360008301526139ea81613553565b9050919050565b60006020820190508181036000830152613a0a81613576565b9050919050565b60006020820190508181036000830152613a2a81613599565b9050919050565b60006020820190508181036000830152613a4a81613602565b9050919050565b6000602082019050613a666000830184613625565b92915050565b6000613a76613a87565b9050613a828282613d67565b919050565b6000604051905090565b600067ffffffffffffffff821115613aac57613aab613efd565b5b613ab582613f40565b9050602081019050919050565b600067ffffffffffffffff821115613add57613adc613efd565b5b613ae682613f40565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b4182613cbf565b9150613b4c83613cbf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8157613b80613e12565b5b828201905092915050565b6000613b9782613cbf565b9150613ba283613cbf565b925082613bb257613bb1613e41565b5b828204905092915050565b6000613bc882613cbf565b9150613bd383613cbf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0c57613c0b613e12565b5b828202905092915050565b6000613c2282613cbf565b9150613c2d83613cbf565b925082821015613c4057613c3f613e12565b5b828203905092915050565b6000613c5682613c9f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cf6578082015181840152602081019050613cdb565b83811115613d05576000848401525b50505050565b6000613d1682613cbf565b91506000821415613d2a57613d29613e12565b5b600182039050919050565b60006002820490506001821680613d4d57607f821691505b60208210811415613d6157613d60613e70565b5b50919050565b613d7082613f40565b810181811067ffffffffffffffff82111715613d8f57613d8e613efd565b5b80604052505050565b6000613da382613cbf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dd657613dd5613e12565b5b600182019050919050565b6000613dec82613cbf565b9150613df783613cbf565b925082613e0757613e06613e41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616c6c6572206973206e6f7420612061646d696e0000000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e747261637420686173206265656e20757067726164656420746f20612060008201527f6e65772061646472657373000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43617020726561636865642c206d6178696d756d203130303030206d696e747360008201527f20706f737369626c650000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61460a81613c4b565b811461461557600080fd5b50565b61462181613c5d565b811461462c57600080fd5b50565b61463881613c69565b811461464357600080fd5b50565b61464f81613c73565b811461465a57600080fd5b50565b61466681613cbf565b811461467157600080fd5b5056fea264697066735822122070308b08756e878db548d99cbcf3427f6b5a026483596b8c27fda3008ce386a064736f6c6343000806003368747470733a2f2f6170692e636861696e62756e6e6965732e696f2f746f6b656e2f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063561892361161011a578063a217fddf116100ad578063c87b56dd1161007c578063c87b56dd146105d6578063d539139314610606578063d547741f14610624578063e985e9c514610640578063f2fde38b14610670576101fb565b8063a217fddf14610562578063a22cb46514610580578063b88d4fde1461059c578063c1244e8d146105b8576101fb565b80637b006774116100e95780637b006774146104c65780638da5cb5b146104f657806391d148541461051457806395d89b4114610544576101fb565b8063561892361461043e5780636352211e1461045c57806370a082311461048c578063715018a6146104bc576101fb565b80632f2ff15d1161019257806340c10f191161016157806340c10f19146103a657806342842e0e146103d65780634f6ccce7146103f257806355f804b314610422576101fb565b80632f2ff15d146103205780632f745c591461033c578063355274ea1461036c57806336568abe1461038a576101fb565b8063095ea7b3116101ce578063095ea7b31461029a57806318160ddd146102b657806323b872dd146102d4578063248a9ca3146102f0576101fb565b806301ffc9a71461020057806306fdde0314610230578063081812fc1461024e5780630900f0101461027e575b600080fd5b61021a600480360381019061021591906130f7565b61068c565b60405161022791906136f9565b60405180910390f35b61023861069e565b604051610245919061372f565b60405180910390f35b6102686004803603810190610263919061319a565b610730565b6040516102759190613692565b60405180910390f35b61029860048036038101906102939190612ec7565b6107b5565b005b6102b460048036038101906102af919061304a565b61084c565b005b6102be610964565b6040516102cb9190613a51565b60405180910390f35b6102ee60048036038101906102e99190612f34565b610971565b005b61030a6004803603810190610305919061308a565b6109d1565b6040516103179190613714565b60405180910390f35b61033a600480360381019061033591906130b7565b6109f1565b005b6103566004803603810190610351919061304a565b610a1a565b6040516103639190613a51565b60405180910390f35b610374610abf565b6040516103819190613a51565b60405180910390f35b6103a4600480360381019061039f91906130b7565b610ac9565b005b6103c060048036038101906103bb919061304a565b610b4c565b6040516103cd91906136f9565b60405180910390f35b6103f060048036038101906103eb9190612f34565b610d61565b005b61040c6004803603810190610407919061319a565b610d81565b6040516104199190613a51565b60405180910390f35b61043c60048036038101906104379190613151565b610df2565b005b610446610e5f565b6040516104539190613a51565b60405180910390f35b6104766004803603810190610471919061319a565b610e70565b6040516104839190613692565b60405180910390f35b6104a660048036038101906104a19190612ec7565b610f22565b6040516104b39190613a51565b60405180910390f35b6104c4610fda565b005b6104e060048036038101906104db9190612ec7565b61105b565b6040516104ed91906136f9565b60405180910390f35b6104fe611081565b60405161050b9190613692565b60405180910390f35b61052e600480360381019061052991906130b7565b6110ab565b60405161053b91906136f9565b60405180910390f35b61054c611116565b604051610559919061372f565b60405180910390f35b61056a6111a8565b6040516105779190613714565b60405180910390f35b61059a6004803603810190610595919061300a565b6111af565b005b6105b660048036038101906105b19190612f87565b611330565b005b6105c0611392565b6040516105cd9190613692565b60405180910390f35b6105f060048036038101906105eb919061319a565b6113b8565b6040516105fd919061372f565b60405180910390f35b61060e61145f565b60405161061b9190613714565b60405180910390f35b61063e600480360381019061063991906130b7565b611483565b005b61065a60048036038101906106559190612ef4565b6114ac565b60405161066791906136f9565b60405180910390f35b61068a60048036038101906106859190612ec7565b611540565b005b600061069782611631565b9050919050565b6060600080546106ad90613d35565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990613d35565b80156107265780601f106106fb57610100808354040283529160200191610726565b820191906000526020600020905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b600061073b826116ab565b61077a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077190613931565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6107c96000801b6107c4611717565b6110ab565b610808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ff90613751565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061085782610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf906139d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611717565b73ffffffffffffffffffffffffffffffffffffffff161480610916575061091581610910611717565b6114ac565b5b610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c90613891565b60405180910390fd5b61095f838361171f565b505050565b6000600880549050905090565b61098261097c611717565b826117d8565b6109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b8906139f1565b60405180910390fd5b6109cc8383836118b6565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6109fa826109d1565b610a0b81610a06611717565b611b12565b610a158383611baf565b505050565b6000610a2583610f22565b8210610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90613791565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600f54905090565b610ad1611717565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590613a31565b60405180910390fd5b610b488282611c90565b5050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613871565b60405180910390fd5b610c107f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610c0b611717565b6110ab565b610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c46906138b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613911565b60405180910390fd5b610cc8826116ab565b15610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff906137f1565b60405180910390fd5b600f54821115610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490613991565b60405180910390fd5b610d578383611d72565b6001905092915050565b610d7c83838360405180602001604052806000815250611330565b505050565b6000610d8b610964565b8210610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613a11565b60405180910390fd5b60088281548110610de057610ddf613ece565b5b90600052602060002001549050919050565b610e066000801b610e01611717565b6110ab565b610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90613751565b60405180910390fd5b80600d9080519060200190610e5b929190612cc6565b5050565b6000610e6b600c611d90565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f10906138f1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906138d1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610ff9611081565b73ffffffffffffffffffffffffffffffffffffffff161461104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690613951565b60405180910390fd5b6110596000611d9e565b565b6000611067600c611e64565b61107a82611075600c611d90565b610b4c565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606001805461112590613d35565b80601f016020809104026020016040519081016040528092919081815260200182805461115190613d35565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b5050505050905090565b6000801b81565b6111b7611717565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90613831565b60405180910390fd5b8060056000611232611717565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112df611717565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132491906136f9565b60405180910390a35050565b61134161133b611717565b836117d8565b611380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611377906139f1565b60405180910390fd5b61138c84848484611e83565b50505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606113c3826116ab565b611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f9906139b1565b60405180910390fd5b600061140c611edf565b9050600081511161142c5760405180602001604052806000815250611457565b8061143684611f71565b604051602001611447929190613634565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61148c826109d1565b61149d81611498611717565b611b12565b6114a78383611c90565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661155f611081565b73ffffffffffffffffffffffffffffffffffffffff16146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90613951565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906137d1565b60405180910390fd5b61162e81611d9e565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116a457506116a3826120d2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661179283610e70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117e3826116ab565b611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990613851565b60405180910390fd5b600061182d83610e70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061189c57508373ffffffffffffffffffffffffffffffffffffffff1661188484610730565b73ffffffffffffffffffffffffffffffffffffffff16145b806118ad57506118ac81856114ac565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118d682610e70565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192390613971565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613811565b60405180910390fd5b6119a783838361214c565b6119b260008261171f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a029190613c17565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a599190613b36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611b1c82826110ab565b611bab57611b418173ffffffffffffffffffffffffffffffffffffffff166014612260565b611b4f8360001c6020612260565b604051602001611b60929190613658565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba2919061372f565b60405180910390fd5b5050565b611bb982826110ab565b611c8c576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c31611717565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611c9a82826110ab565b15611d6e576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d13611717565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611d8c82826040518060200160405280600081525061249c565b5050565b600081600001549050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254611e799190613b36565b9250508190555050565b611e8e8484846118b6565b611e9a848484846124f7565b611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed0906137b1565b60405180910390fd5b50505050565b6060600d8054611eee90613d35565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1a90613d35565b8015611f675780601f10611f3c57610100808354040283529160200191611f67565b820191906000526020600020905b815481529060010190602001808311611f4a57829003601f168201915b5050505050905090565b60606000821415611fb9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120cd565b600082905060005b60008214611feb578080611fd490613d98565b915050600a82611fe49190613b8c565b9150611fc1565b60008167ffffffffffffffff81111561200757612006613efd565b5b6040519080825280601f01601f1916602001820160405280156120395781602001600182028036833780820191505090505b5090505b600085146120c6576001826120529190613c17565b9150600a856120619190613de1565b603061206d9190613b36565b60f81b81838151811061208357612082613ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120bf9190613b8c565b945061203d565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061214557506121448261268e565b5b9050919050565b612157838383612770565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219a5761219581612775565b6121d9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121d8576121d783826127be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561221c576122178161292b565b61225b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461225a5761225982826129fc565b5b5b505050565b6060600060028360026122739190613bbd565b61227d9190613b36565b67ffffffffffffffff81111561229657612295613efd565b5b6040519080825280601f01601f1916602001820160405280156122c85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612300576122ff613ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061236457612363613ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026123a49190613bbd565b6123ae9190613b36565b90505b600181111561244e577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106123f0576123ef613ece565b5b1a60f81b82828151811061240757612406613ece565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061244790613d0b565b90506123b1565b5060008414612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990613771565b60405180910390fd5b8091505092915050565b6124a68383612a7b565b6124b360008484846124f7565b6124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e9906137b1565b60405180910390fd5b505050565b60006125188473ffffffffffffffffffffffffffffffffffffffff16612c49565b15612681578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612541611717565b8786866040518563ffffffff1660e01b815260040161256394939291906136ad565b602060405180830381600087803b15801561257d57600080fd5b505af19250505080156125ae57506040513d601f19601f820116820180604052508101906125ab9190613124565b60015b612631573d80600081146125de576040519150601f19603f3d011682016040523d82523d6000602084013e6125e3565b606091505b50600081511415612629576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612620906137b1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612686565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061275957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612769575061276882612c5c565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127cb84610f22565b6127d59190613c17565b90506000600760008481526020019081526020016000205490508181146128ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061293f9190613c17565b905060006009600084815260200190815260200160002054905060006008838154811061296f5761296e613ece565b5b90600052602060002001549050806008838154811061299157612990613ece565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129e0576129df613e9f565b5b6001900381819060005260206000200160009055905550505050565b6000612a0783610f22565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae290613911565b60405180910390fd5b612af4816116ab565b15612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b906137f1565b60405180910390fd5b612b406000838361214c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b909190613b36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612cd290613d35565b90600052602060002090601f016020900481019282612cf45760008555612d3b565b82601f10612d0d57805160ff1916838001178555612d3b565b82800160010185558215612d3b579182015b82811115612d3a578251825591602001919060010190612d1f565b5b509050612d489190612d4c565b5090565b5b80821115612d65576000816000905550600101612d4d565b5090565b6000612d7c612d7784613a91565b613a6c565b905082815260208101848484011115612d9857612d97613f31565b5b612da3848285613cc9565b509392505050565b6000612dbe612db984613ac2565b613a6c565b905082815260208101848484011115612dda57612dd9613f31565b5b612de5848285613cc9565b509392505050565b600081359050612dfc81614601565b92915050565b600081359050612e1181614618565b92915050565b600081359050612e268161462f565b92915050565b600081359050612e3b81614646565b92915050565b600081519050612e5081614646565b92915050565b600082601f830112612e6b57612e6a613f2c565b5b8135612e7b848260208601612d69565b91505092915050565b600082601f830112612e9957612e98613f2c565b5b8135612ea9848260208601612dab565b91505092915050565b600081359050612ec18161465d565b92915050565b600060208284031215612edd57612edc613f3b565b5b6000612eeb84828501612ded565b91505092915050565b60008060408385031215612f0b57612f0a613f3b565b5b6000612f1985828601612ded565b9250506020612f2a85828601612ded565b9150509250929050565b600080600060608486031215612f4d57612f4c613f3b565b5b6000612f5b86828701612ded565b9350506020612f6c86828701612ded565b9250506040612f7d86828701612eb2565b9150509250925092565b60008060008060808587031215612fa157612fa0613f3b565b5b6000612faf87828801612ded565b9450506020612fc087828801612ded565b9350506040612fd187828801612eb2565b925050606085013567ffffffffffffffff811115612ff257612ff1613f36565b5b612ffe87828801612e56565b91505092959194509250565b6000806040838503121561302157613020613f3b565b5b600061302f85828601612ded565b925050602061304085828601612e02565b9150509250929050565b6000806040838503121561306157613060613f3b565b5b600061306f85828601612ded565b925050602061308085828601612eb2565b9150509250929050565b6000602082840312156130a05761309f613f3b565b5b60006130ae84828501612e17565b91505092915050565b600080604083850312156130ce576130cd613f3b565b5b60006130dc85828601612e17565b92505060206130ed85828601612ded565b9150509250929050565b60006020828403121561310d5761310c613f3b565b5b600061311b84828501612e2c565b91505092915050565b60006020828403121561313a57613139613f3b565b5b600061314884828501612e41565b91505092915050565b60006020828403121561316757613166613f3b565b5b600082013567ffffffffffffffff81111561318557613184613f36565b5b61319184828501612e84565b91505092915050565b6000602082840312156131b0576131af613f3b565b5b60006131be84828501612eb2565b91505092915050565b6131d081613c4b565b82525050565b6131df81613c5d565b82525050565b6131ee81613c69565b82525050565b60006131ff82613af3565b6132098185613b09565b9350613219818560208601613cd8565b61322281613f40565b840191505092915050565b600061323882613afe565b6132428185613b1a565b9350613252818560208601613cd8565b61325b81613f40565b840191505092915050565b600061327182613afe565b61327b8185613b2b565b935061328b818560208601613cd8565b80840191505092915050565b60006132a4601583613b1a565b91506132af82613f51565b602082019050919050565b60006132c7602083613b1a565b91506132d282613f7a565b602082019050919050565b60006132ea602b83613b1a565b91506132f582613fa3565b604082019050919050565b600061330d603283613b1a565b915061331882613ff2565b604082019050919050565b6000613330602683613b1a565b915061333b82614041565b604082019050919050565b6000613353601c83613b1a565b915061335e82614090565b602082019050919050565b6000613376602483613b1a565b9150613381826140b9565b604082019050919050565b6000613399601983613b1a565b91506133a482614108565b602082019050919050565b60006133bc602c83613b1a565b91506133c782614131565b604082019050919050565b60006133df602b83613b1a565b91506133ea82614180565b604082019050919050565b6000613402603883613b1a565b915061340d826141cf565b604082019050919050565b6000613425601683613b1a565b91506134308261421e565b602082019050919050565b6000613448602a83613b1a565b915061345382614247565b604082019050919050565b600061346b602983613b1a565b915061347682614296565b604082019050919050565b600061348e602083613b1a565b9150613499826142e5565b602082019050919050565b60006134b1602c83613b1a565b91506134bc8261430e565b604082019050919050565b60006134d4602083613b1a565b91506134df8261435d565b602082019050919050565b60006134f7602983613b1a565b915061350282614386565b604082019050919050565b600061351a602983613b1a565b9150613525826143d5565b604082019050919050565b600061353d602f83613b1a565b915061354882614424565b604082019050919050565b6000613560602183613b1a565b915061356b82614473565b604082019050919050565b6000613583603183613b1a565b915061358e826144c2565b604082019050919050565b60006135a6602c83613b1a565b91506135b182614511565b604082019050919050565b60006135c9601783613b2b565b91506135d482614560565b601782019050919050565b60006135ec601183613b2b565b91506135f782614589565b601182019050919050565b600061360f602f83613b1a565b915061361a826145b2565b604082019050919050565b61362e81613cbf565b82525050565b60006136408285613266565b915061364c8284613266565b91508190509392505050565b6000613663826135bc565b915061366f8285613266565b915061367a826135df565b91506136868284613266565b91508190509392505050565b60006020820190506136a760008301846131c7565b92915050565b60006080820190506136c260008301876131c7565b6136cf60208301866131c7565b6136dc6040830185613625565b81810360608301526136ee81846131f4565b905095945050505050565b600060208201905061370e60008301846131d6565b92915050565b600060208201905061372960008301846131e5565b92915050565b60006020820190508181036000830152613749818461322d565b905092915050565b6000602082019050818103600083015261376a81613297565b9050919050565b6000602082019050818103600083015261378a816132ba565b9050919050565b600060208201905081810360008301526137aa816132dd565b9050919050565b600060208201905081810360008301526137ca81613300565b9050919050565b600060208201905081810360008301526137ea81613323565b9050919050565b6000602082019050818103600083015261380a81613346565b9050919050565b6000602082019050818103600083015261382a81613369565b9050919050565b6000602082019050818103600083015261384a8161338c565b9050919050565b6000602082019050818103600083015261386a816133af565b9050919050565b6000602082019050818103600083015261388a816133d2565b9050919050565b600060208201905081810360008301526138aa816133f5565b9050919050565b600060208201905081810360008301526138ca81613418565b9050919050565b600060208201905081810360008301526138ea8161343b565b9050919050565b6000602082019050818103600083015261390a8161345e565b9050919050565b6000602082019050818103600083015261392a81613481565b9050919050565b6000602082019050818103600083015261394a816134a4565b9050919050565b6000602082019050818103600083015261396a816134c7565b9050919050565b6000602082019050818103600083015261398a816134ea565b9050919050565b600060208201905081810360008301526139aa8161350d565b9050919050565b600060208201905081810360008301526139ca81613530565b9050919050565b600060208201905081810360008301526139ea81613553565b9050919050565b60006020820190508181036000830152613a0a81613576565b9050919050565b60006020820190508181036000830152613a2a81613599565b9050919050565b60006020820190508181036000830152613a4a81613602565b9050919050565b6000602082019050613a666000830184613625565b92915050565b6000613a76613a87565b9050613a828282613d67565b919050565b6000604051905090565b600067ffffffffffffffff821115613aac57613aab613efd565b5b613ab582613f40565b9050602081019050919050565b600067ffffffffffffffff821115613add57613adc613efd565b5b613ae682613f40565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b4182613cbf565b9150613b4c83613cbf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8157613b80613e12565b5b828201905092915050565b6000613b9782613cbf565b9150613ba283613cbf565b925082613bb257613bb1613e41565b5b828204905092915050565b6000613bc882613cbf565b9150613bd383613cbf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0c57613c0b613e12565b5b828202905092915050565b6000613c2282613cbf565b9150613c2d83613cbf565b925082821015613c4057613c3f613e12565b5b828203905092915050565b6000613c5682613c9f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cf6578082015181840152602081019050613cdb565b83811115613d05576000848401525b50505050565b6000613d1682613cbf565b91506000821415613d2a57613d29613e12565b5b600182039050919050565b60006002820490506001821680613d4d57607f821691505b60208210811415613d6157613d60613e70565b5b50919050565b613d7082613f40565b810181811067ffffffffffffffff82111715613d8f57613d8e613efd565b5b80604052505050565b6000613da382613cbf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dd657613dd5613e12565b5b600182019050919050565b6000613dec82613cbf565b9150613df783613cbf565b925082613e0757613e06613e41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616c6c6572206973206e6f7420612061646d696e0000000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e747261637420686173206265656e20757067726164656420746f20612060008201527f6e65772061646472657373000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43617020726561636865642c206d6178696d756d203130303030206d696e747360008201527f20706f737369626c650000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61460a81613c4b565b811461461557600080fd5b50565b61462181613c5d565b811461462c57600080fd5b50565b61463881613c69565b811461464357600080fd5b50565b61464f81613c73565b811461465a57600080fd5b50565b61466681613cbf565b811461467157600080fd5b5056fea264697066735822122070308b08756e878db548d99cbcf3427f6b5a026483596b8c27fda3008ce386a064736f6c63430008060033

Deployed Bytecode Sourcemap

51709:2197:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52671:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20582:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22141:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52261:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21664:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34100:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23031:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45042:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45427:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33768:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52586:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46475:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53341:560;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23441:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34290:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52987:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52474:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20276:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20006:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51077:94;;;:::i;:::-;;53175:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50428:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43927:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20751:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41905:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22434:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23697:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52006:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20926:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51935:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45819:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22800:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51326:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52671:186;52789:4;52813:36;52837:11;52813:23;:36::i;:::-;52806:43;;52671:186;;;:::o;20582:100::-;20636:13;20669:5;20662:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20582:100;:::o;22141:221::-;22217:7;22245:16;22253:7;22245;:16::i;:::-;22237:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22330:15;:24;22346:7;22330:24;;;;;;;;;;;;;;;;;;;;;22323:31;;22141:221;;;:::o;52261:205::-;52332:41;41950:4;52340:18;;52360:12;:10;:12::i;:::-;52332:7;:41::i;:::-;52324:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;52440:18;52420:17;;:38;;;;;;;;;;;;;;;;;;52261:205;:::o;21664:411::-;21745:13;21761:23;21776:7;21761:14;:23::i;:::-;21745:39;;21809:5;21803:11;;:2;:11;;;;21795:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21903:5;21887:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21912:37;21929:5;21936:12;:10;:12::i;:::-;21912:16;:37::i;:::-;21887:62;21865:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22046:21;22055:2;22059:7;22046:8;:21::i;:::-;21734:341;21664:411;;:::o;34100:113::-;34161:7;34188:10;:17;;;;34181:24;;34100:113;:::o;23031:339::-;23226:41;23245:12;:10;:12::i;:::-;23259:7;23226:18;:41::i;:::-;23218:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23334:28;23344:4;23350:2;23354:7;23334:9;:28::i;:::-;23031:339;;;:::o;45042:123::-;45108:7;45135:6;:12;45142:4;45135:12;;;;;;;;;;;:22;;;45128:29;;45042:123;;;:::o;45427:147::-;45510:18;45523:4;45510:12;:18::i;:::-;43509:30;43520:4;43526:12;:10;:12::i;:::-;43509:10;:30::i;:::-;45541:25:::1;45552:4;45558:7;45541:10;:25::i;:::-;45427:147:::0;;;:::o;33768:256::-;33865:7;33901:23;33918:5;33901:16;:23::i;:::-;33893:5;:31;33885:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33990:12;:19;34003:5;33990:19;;;;;;;;;;;;;;;:26;34010:5;33990:26;;;;;;;;;;;;33983:33;;33768:256;;;;:::o;52586:77::-;52624:7;52651:4;;52644:11;;52586:77;:::o;46475:218::-;46582:12;:10;:12::i;:::-;46571:23;;:7;:23;;;46563:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;46659:26;46671:4;46677:7;46659:11;:26::i;:::-;46475:218;;:::o;53341:560::-;53406:4;53445:17;;;;;;;;;;;53431:31;;53439:1;53431:31;;;53423:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;53529:34;51973:24;53550:12;:10;:12::i;:::-;53529:7;:34::i;:::-;53521:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53628:1;53609:21;;:7;:21;;;;53601:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;53687:17;53695:8;53687:7;:17::i;:::-;53686:18;53678:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;53770:4;;53758:8;:16;;53750:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;53841:28;53851:7;53860:8;53841:9;:28::i;:::-;53889:4;53882:11;;53341:560;;;;:::o;23441:185::-;23579:39;23596:4;23602:2;23606:7;23579:39;;;;;;;;;;;;:16;:39::i;:::-;23441:185;;;:::o;34290:233::-;34365:7;34401:30;:28;:30::i;:::-;34393:5;:38;34385:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;34498:10;34509:5;34498:17;;;;;;;;:::i;:::-;;;;;;;;;;34491:24;;34290:233;;;:::o;52987:180::-;53056:41;41950:4;53064:18;;53084:12;:10;:12::i;:::-;53056:7;:41::i;:::-;53048:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;53152:7;53136:13;:23;;;;;;;;;;;;:::i;:::-;;52987:180;:::o;52474:104::-;52524:7;52551:19;:9;:17;:19::i;:::-;52544:26;;52474:104;:::o;20276:239::-;20348:7;20368:13;20384:7;:16;20392:7;20384:16;;;;;;;;;;;;;;;;;;;;;20368:32;;20436:1;20419:19;;:5;:19;;;;20411:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20502:5;20495:12;;;20276:239;;;:::o;20006:208::-;20078:7;20123:1;20106:19;;:5;:19;;;;20098:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20190:9;:16;20200:5;20190:16;;;;;;;;;;;;;;;;20183:23;;20006:208;;;:::o;51077:94::-;50659:10;50648:21;;:7;:5;:7::i;:::-;:21;;;50640:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51142:21:::1;51160:1;51142:9;:21::i;:::-;51077:94::o:0;53175:158::-;53233:4;53250:21;:9;:19;:21::i;:::-;53291:34;53296:7;53305:19;:9;:17;:19::i;:::-;53291:4;:34::i;:::-;53284:41;;53175:158;;;:::o;50428:87::-;50474:7;50501:6;;;;;;;;;;;50494:13;;50428:87;:::o;43927:139::-;44005:4;44029:6;:12;44036:4;44029:12;;;;;;;;;;;:20;;:29;44050:7;44029:29;;;;;;;;;;;;;;;;;;;;;;;;;44022:36;;43927:139;;;;:::o;20751:104::-;20807:13;20840:7;20833:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20751:104;:::o;41905:49::-;41950:4;41905:49;;;:::o;22434:295::-;22549:12;:10;:12::i;:::-;22537:24;;:8;:24;;;;22529:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22649:8;22604:18;:32;22623:12;:10;:12::i;:::-;22604:32;;;;;;;;;;;;;;;:42;22637:8;22604:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22702:8;22673:48;;22688:12;:10;:12::i;:::-;22673:48;;;22712:8;22673:48;;;;;;:::i;:::-;;;;;;;;22434:295;;:::o;23697:328::-;23872:41;23891:12;:10;:12::i;:::-;23905:7;23872:18;:41::i;:::-;23864:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23978:39;23992:4;23998:2;24002:7;24011:5;23978:13;:39::i;:::-;23697:328;;;;:::o;52006:45::-;;;;;;;;;;;;;:::o;20926:334::-;20999:13;21033:16;21041:7;21033;:16::i;:::-;21025:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21114:21;21138:10;:8;:10::i;:::-;21114:34;;21190:1;21172:7;21166:21;:25;:86;;;;;;;;;;;;;;;;;21218:7;21227:18;:7;:16;:18::i;:::-;21201:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21166:86;21159:93;;;20926:334;;;:::o;51935:62::-;51973:24;51935:62;:::o;45819:149::-;45903:18;45916:4;45903:12;:18::i;:::-;43509:30;43520:4;43526:12;:10;:12::i;:::-;43509:10;:30::i;:::-;45934:26:::1;45946:4;45952:7;45934:11;:26::i;:::-;45819:149:::0;;;:::o;22800:164::-;22897:4;22921:18;:25;22940:5;22921:25;;;;;;;;;;;;;;;:35;22947:8;22921:35;;;;;;;;;;;;;;;;;;;;;;;;;22914:42;;22800:164;;;;:::o;51326:192::-;50659:10;50648:21;;:7;:5;:7::i;:::-;:21;;;50640:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51435:1:::1;51415:22;;:8;:22;;;;51407:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51491:19;51501:8;51491:9;:19::i;:::-;51326:192:::0;:::o;43631:204::-;43716:4;43755:32;43740:47;;;:11;:47;;;;:87;;;;43791:36;43815:11;43791:23;:36::i;:::-;43740:87;43733:94;;43631:204;;;:::o;25535:127::-;25600:4;25652:1;25624:30;;:7;:16;25632:7;25624:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25617:37;;25535:127;;;:::o;15342:98::-;15395:7;15422:10;15415:17;;15342:98;:::o;29517:174::-;29619:2;29592:15;:24;29608:7;29592:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29675:7;29671:2;29637:46;;29646:23;29661:7;29646:14;:23::i;:::-;29637:46;;;;;;;;;;;;29517:174;;:::o;25829:348::-;25922:4;25947:16;25955:7;25947;:16::i;:::-;25939:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26023:13;26039:23;26054:7;26039:14;:23::i;:::-;26023:39;;26092:5;26081:16;;:7;:16;;;:51;;;;26125:7;26101:31;;:20;26113:7;26101:11;:20::i;:::-;:31;;;26081:51;:87;;;;26136:32;26153:5;26160:7;26136:16;:32::i;:::-;26081:87;26073:96;;;25829:348;;;;:::o;28821:578::-;28980:4;28953:31;;:23;28968:7;28953:14;:23::i;:::-;:31;;;28945:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29063:1;29049:16;;:2;:16;;;;29041:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29119:39;29140:4;29146:2;29150:7;29119:20;:39::i;:::-;29223:29;29240:1;29244:7;29223:8;:29::i;:::-;29284:1;29265:9;:15;29275:4;29265:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29313:1;29296:9;:13;29306:2;29296:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29344:2;29325:7;:16;29333:7;29325:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29383:7;29379:2;29364:27;;29373:4;29364:27;;;;;;;;;;;;28821:578;;;:::o;44356:497::-;44437:22;44445:4;44451:7;44437;:22::i;:::-;44432:414;;44625:41;44653:7;44625:41;;44663:2;44625:19;:41::i;:::-;44739:38;44767:4;44759:13;;44774:2;44739:19;:38::i;:::-;44530:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44476:358;;;;;;;;;;;:::i;:::-;;;;;;;;44432:414;44356:497;;:::o;47723:229::-;47798:22;47806:4;47812:7;47798;:22::i;:::-;47793:152;;47869:4;47837:6;:12;47844:4;47837:12;;;;;;;;;;;:20;;:29;47858:7;47837:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;47920:12;:10;:12::i;:::-;47893:40;;47911:7;47893:40;;47905:4;47893:40;;;;;;;;;;47793:152;47723:229;;:::o;47960:230::-;48035:22;48043:4;48049:7;48035;:22::i;:::-;48031:152;;;48106:5;48074:6;:12;48081:4;48074:12;;;;;;;;;;;:20;;:29;48095:7;48074:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;48158:12;:10;:12::i;:::-;48131:40;;48149:7;48131:40;;48143:4;48131:40;;;;;;;;;;48031:152;47960:230;;:::o;26519:110::-;26595:26;26605:2;26609:7;26595:26;;;;;;;;;;;;:9;:26::i;:::-;26519:110;;:::o;48929:114::-;48994:7;49021;:14;;;49014:21;;48929:114;;;:::o;51526:173::-;51582:16;51601:6;;;;;;;;;;;51582:25;;51627:8;51618:6;;:17;;;;;;;;;;;;;;;;;;51682:8;51651:40;;51672:8;51651:40;;;;;;;;;;;;51571:128;51526:173;:::o;49051:131::-;49160:1;49142:7;:14;;;:19;;;;;;;:::i;:::-;;;;;;;;49051:131;:::o;24907:315::-;25064:28;25074:4;25080:2;25084:7;25064:9;:28::i;:::-;25111:48;25134:4;25140:2;25144:7;25153:5;25111:22;:48::i;:::-;25103:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24907:315;;;;:::o;52865:114::-;52925:13;52958;52951:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52865:114;:::o;15783:723::-;15839:13;16069:1;16060:5;:10;16056:53;;;16087:10;;;;;;;;;;;;;;;;;;;;;16056:53;16119:12;16134:5;16119:20;;16150:14;16175:78;16190:1;16182:4;:9;16175:78;;16208:8;;;;;:::i;:::-;;;;16239:2;16231:10;;;;;:::i;:::-;;;16175:78;;;16263:19;16295:6;16285:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16263:39;;16313:154;16329:1;16320:5;:10;16313:154;;16357:1;16347:11;;;;;:::i;:::-;;;16424:2;16416:5;:10;;;;:::i;:::-;16403:2;:24;;;;:::i;:::-;16390:39;;16373:6;16380;16373:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16453:2;16444:11;;;;;:::i;:::-;;;16313:154;;;16491:6;16477:21;;;;;15783:723;;;;:::o;33460:224::-;33562:4;33601:35;33586:50;;;:11;:50;;;;:90;;;;33640:36;33664:11;33640:23;:36::i;:::-;33586:90;33579:97;;33460:224;;;:::o;35136:589::-;35280:45;35307:4;35313:2;35317:7;35280:26;:45::i;:::-;35358:1;35342:18;;:4;:18;;;35338:187;;;35377:40;35409:7;35377:31;:40::i;:::-;35338:187;;;35447:2;35439:10;;:4;:10;;;35435:90;;35466:47;35499:4;35505:7;35466:32;:47::i;:::-;35435:90;35338:187;35553:1;35539:16;;:2;:16;;;35535:183;;;35572:45;35609:7;35572:36;:45::i;:::-;35535:183;;;35645:4;35639:10;;:2;:10;;;35635:83;;35666:40;35694:2;35698:7;35666:27;:40::i;:::-;35635:83;35535:183;35136:589;;;:::o;17084:451::-;17159:13;17185:19;17230:1;17221:6;17217:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17207:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17185:47;;17243:15;:6;17250:1;17243:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17269;:6;17276:1;17269:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17300:9;17325:1;17316:6;17312:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17300:26;;17295:135;17332:1;17328;:5;17295:135;;;17367:12;17388:3;17380:5;:11;17367:25;;;;;;;:::i;:::-;;;;;17355:6;17362:1;17355:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;17417:1;17407:11;;;;;17335:3;;;;:::i;:::-;;;17295:135;;;;17457:1;17448:5;:10;17440:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;17520:6;17506:21;;;17084:451;;;;:::o;26856:321::-;26986:18;26992:2;26996:7;26986:5;:18::i;:::-;27037:54;27068:1;27072:2;27076:7;27085:5;27037:22;:54::i;:::-;27015:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26856:321;;;:::o;30256:803::-;30411:4;30432:15;:2;:13;;;:15::i;:::-;30428:624;;;30484:2;30468:36;;;30505:12;:10;:12::i;:::-;30519:4;30525:7;30534:5;30468:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30464:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30731:1;30714:6;:13;:18;30710:272;;;30757:60;;;;;;;;;;:::i;:::-;;;;;;;;30710:272;30932:6;30926:13;30917:6;30913:2;30909:15;30902:38;30464:533;30601:45;;;30591:55;;;:6;:55;;;;30584:62;;;;;30428:624;31036:4;31029:11;;30256:803;;;;;;;:::o;19637:305::-;19739:4;19791:25;19776:40;;;:11;:40;;;;:105;;;;19848:33;19833:48;;;:11;:48;;;;19776:105;:158;;;;19898:36;19922:11;19898:23;:36::i;:::-;19776:158;19756:178;;19637:305;;;:::o;31631:126::-;;;;:::o;36448:164::-;36552:10;:17;;;;36525:15;:24;36541:7;36525:24;;;;;;;;;;;:44;;;;36580:10;36596:7;36580:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36448:164;:::o;37239:988::-;37505:22;37555:1;37530:22;37547:4;37530:16;:22::i;:::-;:26;;;;:::i;:::-;37505:51;;37567:18;37588:17;:26;37606:7;37588:26;;;;;;;;;;;;37567:47;;37735:14;37721:10;:28;37717:328;;37766:19;37788:12;:18;37801:4;37788:18;;;;;;;;;;;;;;;:34;37807:14;37788:34;;;;;;;;;;;;37766:56;;37872:11;37839:12;:18;37852:4;37839:18;;;;;;;;;;;;;;;:30;37858:10;37839:30;;;;;;;;;;;:44;;;;37989:10;37956:17;:30;37974:11;37956:30;;;;;;;;;;;:43;;;;37751:294;37717:328;38141:17;:26;38159:7;38141:26;;;;;;;;;;;38134:33;;;38185:12;:18;38198:4;38185:18;;;;;;;;;;;;;;;:34;38204:14;38185:34;;;;;;;;;;;38178:41;;;37320:907;;37239:988;;:::o;38522:1079::-;38775:22;38820:1;38800:10;:17;;;;:21;;;;:::i;:::-;38775:46;;38832:18;38853:15;:24;38869:7;38853:24;;;;;;;;;;;;38832:45;;39204:19;39226:10;39237:14;39226:26;;;;;;;;:::i;:::-;;;;;;;;;;39204:48;;39290:11;39265:10;39276;39265:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;39401:10;39370:15;:28;39386:11;39370:28;;;;;;;;;;;:41;;;;39542:15;:24;39558:7;39542:24;;;;;;;;;;;39535:31;;;39577:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38593:1008;;;38522:1079;:::o;36026:221::-;36111:14;36128:20;36145:2;36128:16;:20::i;:::-;36111:37;;36186:7;36159:12;:16;36172:2;36159:16;;;;;;;;;;;;;;;:24;36176:6;36159:24;;;;;;;;;;;:34;;;;36233:6;36204:17;:26;36222:7;36204:26;;;;;;;;;;;:35;;;;36100:147;36026:221;;:::o;27513:382::-;27607:1;27593:16;;:2;:16;;;;27585:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27666:16;27674:7;27666;:16::i;:::-;27665:17;27657:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27728:45;27757:1;27761:2;27765:7;27728:20;:45::i;:::-;27803:1;27786:9;:13;27796:2;27786:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27834:2;27815:7;:16;27823:7;27815:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27879:7;27875:2;27854:33;;27871:1;27854:33;;;;;;;;;;;;27513:382;;:::o;7688:387::-;7748:4;7956:12;8023:7;8011:20;8003:28;;8066:1;8059:4;:8;8052:15;;;7688:387;;;:::o;18241:157::-;18326:4;18365:25;18350:40;;;:11;:40;;;;18343:47;;18241:157;;;:::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;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:2;;2044:79;;:::i;:::-;2003:2;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2329:87;;;;:::o;2422:329::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:2;;;2536:79;;:::i;:::-;2498:2;2656:1;2681:53;2726:7;2717:6;2706:9;2702:22;2681:53;:::i;:::-;2671:63;;2627:117;2488:263;;;;:::o;2757:474::-;2825:6;2833;2882:2;2870:9;2861:7;2857:23;2853:32;2850:2;;;2888:79;;:::i;:::-;2850:2;3008:1;3033:53;3078:7;3069:6;3058:9;3054:22;3033:53;:::i;:::-;3023:63;;2979:117;3135:2;3161:53;3206:7;3197:6;3186:9;3182:22;3161:53;:::i;:::-;3151:63;;3106:118;2840:391;;;;;:::o;3237:619::-;3314:6;3322;3330;3379:2;3367:9;3358:7;3354:23;3350:32;3347:2;;;3385:79;;:::i;:::-;3347:2;3505:1;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3476:117;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3760:2;3786:53;3831:7;3822:6;3811:9;3807:22;3786:53;:::i;:::-;3776:63;;3731:118;3337:519;;;;;:::o;3862:943::-;3957:6;3965;3973;3981;4030:3;4018:9;4009:7;4005:23;4001:33;3998:2;;;4037:79;;:::i;:::-;3998:2;4157:1;4182:53;4227:7;4218:6;4207:9;4203:22;4182:53;:::i;:::-;4172:63;;4128:117;4284:2;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4255:118;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4568:2;4557:9;4553:18;4540:32;4599:18;4591:6;4588:30;4585:2;;;4621:79;;:::i;:::-;4585:2;4726:62;4780:7;4771:6;4760:9;4756:22;4726:62;:::i;:::-;4716:72;;4511:287;3988:817;;;;;;;:::o;4811:468::-;4876:6;4884;4933:2;4921:9;4912:7;4908:23;4904:32;4901:2;;;4939:79;;:::i;:::-;4901:2;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4891:388;;;;;:::o;5285:474::-;5353:6;5361;5410:2;5398:9;5389:7;5385:23;5381:32;5378:2;;;5416:79;;:::i;:::-;5378:2;5536:1;5561:53;5606:7;5597:6;5586:9;5582:22;5561:53;:::i;:::-;5551:63;;5507:117;5663:2;5689:53;5734:7;5725:6;5714:9;5710:22;5689:53;:::i;:::-;5679:63;;5634:118;5368:391;;;;;:::o;5765:329::-;5824:6;5873:2;5861:9;5852:7;5848:23;5844:32;5841:2;;;5879:79;;:::i;:::-;5841:2;5999:1;6024:53;6069:7;6060:6;6049:9;6045:22;6024:53;:::i;:::-;6014:63;;5970:117;5831:263;;;;:::o;6100:474::-;6168:6;6176;6225:2;6213:9;6204:7;6200:23;6196:32;6193:2;;;6231:79;;:::i;:::-;6193:2;6351:1;6376:53;6421:7;6412:6;6401:9;6397:22;6376:53;:::i;:::-;6366:63;;6322:117;6478:2;6504:53;6549:7;6540:6;6529:9;6525:22;6504:53;:::i;:::-;6494:63;;6449:118;6183:391;;;;;:::o;6580:327::-;6638:6;6687:2;6675:9;6666:7;6662:23;6658:32;6655:2;;;6693:79;;:::i;:::-;6655:2;6813:1;6838:52;6882:7;6873:6;6862:9;6858:22;6838:52;:::i;:::-;6828:62;;6784:116;6645:262;;;;:::o;6913:349::-;6982:6;7031:2;7019:9;7010:7;7006:23;7002:32;6999:2;;;7037:79;;:::i;:::-;6999:2;7157:1;7182:63;7237:7;7228:6;7217:9;7213:22;7182:63;:::i;:::-;7172:73;;7128:127;6989:273;;;;:::o;7268:509::-;7337:6;7386:2;7374:9;7365:7;7361:23;7357:32;7354:2;;;7392:79;;:::i;:::-;7354:2;7540:1;7529:9;7525:17;7512:31;7570:18;7562:6;7559:30;7556:2;;;7592:79;;:::i;:::-;7556:2;7697:63;7752:7;7743:6;7732:9;7728:22;7697:63;:::i;:::-;7687:73;;7483:287;7344:433;;;;:::o;7783:329::-;7842:6;7891:2;7879:9;7870:7;7866:23;7862:32;7859:2;;;7897:79;;:::i;:::-;7859:2;8017:1;8042:53;8087:7;8078:6;8067:9;8063:22;8042:53;:::i;:::-;8032:63;;7988:117;7849:263;;;;:::o;8118:118::-;8205:24;8223:5;8205:24;:::i;:::-;8200:3;8193:37;8183:53;;:::o;8242:109::-;8323:21;8338:5;8323:21;:::i;:::-;8318:3;8311:34;8301:50;;:::o;8357:118::-;8444:24;8462:5;8444:24;:::i;:::-;8439:3;8432:37;8422:53;;:::o;8481:360::-;8567:3;8595:38;8627:5;8595:38;:::i;:::-;8649:70;8712:6;8707:3;8649:70;:::i;:::-;8642:77;;8728:52;8773:6;8768:3;8761:4;8754:5;8750:16;8728:52;:::i;:::-;8805:29;8827:6;8805:29;:::i;:::-;8800:3;8796:39;8789:46;;8571:270;;;;;:::o;8847:364::-;8935:3;8963:39;8996:5;8963:39;:::i;:::-;9018:71;9082:6;9077:3;9018:71;:::i;:::-;9011:78;;9098:52;9143:6;9138:3;9131:4;9124:5;9120:16;9098:52;:::i;:::-;9175:29;9197:6;9175:29;:::i;:::-;9170:3;9166:39;9159:46;;8939:272;;;;;:::o;9217:377::-;9323:3;9351:39;9384:5;9351:39;:::i;:::-;9406:89;9488:6;9483:3;9406:89;:::i;:::-;9399:96;;9504:52;9549:6;9544:3;9537:4;9530:5;9526:16;9504:52;:::i;:::-;9581:6;9576:3;9572:16;9565:23;;9327:267;;;;;:::o;9600:366::-;9742:3;9763:67;9827:2;9822:3;9763:67;:::i;:::-;9756:74;;9839:93;9928:3;9839:93;:::i;:::-;9957:2;9952:3;9948:12;9941:19;;9746:220;;;:::o;9972:366::-;10114:3;10135:67;10199:2;10194:3;10135:67;:::i;:::-;10128:74;;10211:93;10300:3;10211:93;:::i;:::-;10329:2;10324:3;10320:12;10313:19;;10118:220;;;:::o;10344:366::-;10486:3;10507:67;10571:2;10566:3;10507:67;:::i;:::-;10500:74;;10583:93;10672:3;10583:93;:::i;:::-;10701:2;10696:3;10692:12;10685:19;;10490:220;;;:::o;10716:366::-;10858:3;10879:67;10943:2;10938:3;10879:67;:::i;:::-;10872:74;;10955:93;11044:3;10955:93;:::i;:::-;11073:2;11068:3;11064:12;11057:19;;10862:220;;;:::o;11088:366::-;11230:3;11251:67;11315:2;11310:3;11251:67;:::i;:::-;11244:74;;11327:93;11416:3;11327:93;:::i;:::-;11445:2;11440:3;11436:12;11429:19;;11234:220;;;:::o;11460:366::-;11602:3;11623:67;11687:2;11682:3;11623:67;:::i;:::-;11616:74;;11699:93;11788:3;11699:93;:::i;:::-;11817:2;11812:3;11808:12;11801:19;;11606:220;;;:::o;11832:366::-;11974:3;11995:67;12059:2;12054:3;11995:67;:::i;:::-;11988:74;;12071:93;12160:3;12071:93;:::i;:::-;12189:2;12184:3;12180:12;12173:19;;11978:220;;;:::o;12204:366::-;12346:3;12367:67;12431:2;12426:3;12367:67;:::i;:::-;12360:74;;12443:93;12532:3;12443:93;:::i;:::-;12561:2;12556:3;12552:12;12545:19;;12350:220;;;:::o;12576:366::-;12718:3;12739:67;12803:2;12798:3;12739:67;:::i;:::-;12732:74;;12815:93;12904:3;12815:93;:::i;:::-;12933:2;12928:3;12924:12;12917:19;;12722:220;;;:::o;12948:366::-;13090:3;13111:67;13175:2;13170:3;13111:67;:::i;:::-;13104:74;;13187:93;13276:3;13187:93;:::i;:::-;13305:2;13300:3;13296:12;13289:19;;13094:220;;;:::o;13320:366::-;13462:3;13483:67;13547:2;13542:3;13483:67;:::i;:::-;13476:74;;13559:93;13648:3;13559:93;:::i;:::-;13677:2;13672:3;13668:12;13661:19;;13466:220;;;:::o;13692:366::-;13834:3;13855:67;13919:2;13914:3;13855:67;:::i;:::-;13848:74;;13931:93;14020:3;13931:93;:::i;:::-;14049:2;14044:3;14040:12;14033:19;;13838:220;;;:::o;14064:366::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14210:220;;;:::o;14436:366::-;14578:3;14599:67;14663:2;14658:3;14599:67;:::i;:::-;14592:74;;14675:93;14764:3;14675:93;:::i;:::-;14793:2;14788:3;14784:12;14777:19;;14582:220;;;:::o;14808:366::-;14950:3;14971:67;15035:2;15030:3;14971:67;:::i;:::-;14964:74;;15047:93;15136:3;15047:93;:::i;:::-;15165:2;15160:3;15156:12;15149:19;;14954:220;;;:::o;15180:366::-;15322:3;15343:67;15407:2;15402:3;15343:67;:::i;:::-;15336:74;;15419:93;15508:3;15419:93;:::i;:::-;15537:2;15532:3;15528:12;15521:19;;15326:220;;;:::o;15552:366::-;15694:3;15715:67;15779:2;15774:3;15715:67;:::i;:::-;15708:74;;15791:93;15880:3;15791:93;:::i;:::-;15909:2;15904:3;15900:12;15893:19;;15698:220;;;:::o;15924:366::-;16066:3;16087:67;16151:2;16146:3;16087:67;:::i;:::-;16080:74;;16163:93;16252:3;16163:93;:::i;:::-;16281:2;16276:3;16272:12;16265:19;;16070:220;;;:::o;16296:366::-;16438:3;16459:67;16523:2;16518:3;16459:67;:::i;:::-;16452:74;;16535:93;16624:3;16535:93;:::i;:::-;16653:2;16648:3;16644:12;16637:19;;16442:220;;;:::o;16668:366::-;16810:3;16831:67;16895:2;16890:3;16831:67;:::i;:::-;16824:74;;16907:93;16996:3;16907:93;:::i;:::-;17025:2;17020:3;17016:12;17009:19;;16814:220;;;:::o;17040:366::-;17182:3;17203:67;17267:2;17262:3;17203:67;:::i;:::-;17196:74;;17279:93;17368:3;17279:93;:::i;:::-;17397:2;17392:3;17388:12;17381:19;;17186:220;;;:::o;17412:366::-;17554:3;17575:67;17639:2;17634:3;17575:67;:::i;:::-;17568:74;;17651:93;17740:3;17651:93;:::i;:::-;17769:2;17764:3;17760:12;17753:19;;17558:220;;;:::o;17784:366::-;17926:3;17947:67;18011:2;18006:3;17947:67;:::i;:::-;17940:74;;18023:93;18112:3;18023:93;:::i;:::-;18141:2;18136:3;18132:12;18125:19;;17930:220;;;:::o;18156:402::-;18316:3;18337:85;18419:2;18414:3;18337:85;:::i;:::-;18330:92;;18431:93;18520:3;18431:93;:::i;:::-;18549:2;18544:3;18540:12;18533:19;;18320:238;;;:::o;18564:402::-;18724:3;18745:85;18827:2;18822:3;18745:85;:::i;:::-;18738:92;;18839:93;18928:3;18839:93;:::i;:::-;18957:2;18952:3;18948:12;18941:19;;18728:238;;;:::o;18972:366::-;19114:3;19135:67;19199:2;19194:3;19135:67;:::i;:::-;19128:74;;19211:93;19300:3;19211:93;:::i;:::-;19329:2;19324:3;19320:12;19313:19;;19118:220;;;:::o;19344:118::-;19431:24;19449:5;19431:24;:::i;:::-;19426:3;19419:37;19409:53;;:::o;19468:435::-;19648:3;19670:95;19761:3;19752:6;19670:95;:::i;:::-;19663:102;;19782:95;19873:3;19864:6;19782:95;:::i;:::-;19775:102;;19894:3;19887:10;;19652:251;;;;;:::o;19909:967::-;20291:3;20313:148;20457:3;20313:148;:::i;:::-;20306:155;;20478:95;20569:3;20560:6;20478:95;:::i;:::-;20471:102;;20590:148;20734:3;20590:148;:::i;:::-;20583:155;;20755:95;20846:3;20837:6;20755:95;:::i;:::-;20748:102;;20867:3;20860:10;;20295:581;;;;;:::o;20882:222::-;20975:4;21013:2;21002:9;20998:18;20990:26;;21026:71;21094:1;21083:9;21079:17;21070:6;21026:71;:::i;:::-;20980:124;;;;:::o;21110:640::-;21305:4;21343:3;21332:9;21328:19;21320:27;;21357:71;21425:1;21414:9;21410:17;21401:6;21357:71;:::i;:::-;21438:72;21506:2;21495:9;21491:18;21482:6;21438:72;:::i;:::-;21520;21588:2;21577:9;21573:18;21564:6;21520:72;:::i;:::-;21639:9;21633:4;21629:20;21624:2;21613:9;21609:18;21602:48;21667:76;21738:4;21729:6;21667:76;:::i;:::-;21659:84;;21310:440;;;;;;;:::o;21756:210::-;21843:4;21881:2;21870:9;21866:18;21858:26;;21894:65;21956:1;21945:9;21941:17;21932:6;21894:65;:::i;:::-;21848:118;;;;:::o;21972:222::-;22065:4;22103:2;22092:9;22088:18;22080:26;;22116:71;22184:1;22173:9;22169:17;22160:6;22116:71;:::i;:::-;22070:124;;;;:::o;22200:313::-;22313:4;22351:2;22340:9;22336:18;22328:26;;22400:9;22394:4;22390:20;22386:1;22375:9;22371:17;22364:47;22428:78;22501:4;22492:6;22428:78;:::i;:::-;22420:86;;22318:195;;;;:::o;22519:419::-;22685:4;22723:2;22712:9;22708:18;22700:26;;22772:9;22766:4;22762:20;22758:1;22747:9;22743:17;22736:47;22800:131;22926:4;22800:131;:::i;:::-;22792:139;;22690:248;;;:::o;22944:419::-;23110:4;23148:2;23137:9;23133:18;23125:26;;23197:9;23191:4;23187:20;23183:1;23172:9;23168:17;23161:47;23225:131;23351:4;23225:131;:::i;:::-;23217:139;;23115:248;;;:::o;23369:419::-;23535:4;23573:2;23562:9;23558:18;23550:26;;23622:9;23616:4;23612:20;23608:1;23597:9;23593:17;23586:47;23650:131;23776:4;23650:131;:::i;:::-;23642:139;;23540:248;;;:::o;23794:419::-;23960:4;23998:2;23987:9;23983:18;23975:26;;24047:9;24041:4;24037:20;24033:1;24022:9;24018:17;24011:47;24075:131;24201:4;24075:131;:::i;:::-;24067:139;;23965:248;;;:::o;24219:419::-;24385:4;24423:2;24412:9;24408:18;24400:26;;24472:9;24466:4;24462:20;24458:1;24447:9;24443:17;24436:47;24500:131;24626:4;24500:131;:::i;:::-;24492:139;;24390:248;;;:::o;24644:419::-;24810:4;24848:2;24837:9;24833:18;24825:26;;24897:9;24891:4;24887:20;24883:1;24872:9;24868:17;24861:47;24925:131;25051:4;24925:131;:::i;:::-;24917:139;;24815:248;;;:::o;25069:419::-;25235:4;25273:2;25262:9;25258:18;25250:26;;25322:9;25316:4;25312:20;25308:1;25297:9;25293:17;25286:47;25350:131;25476:4;25350:131;:::i;:::-;25342:139;;25240:248;;;:::o;25494:419::-;25660:4;25698:2;25687:9;25683:18;25675:26;;25747:9;25741:4;25737:20;25733:1;25722:9;25718:17;25711:47;25775:131;25901:4;25775:131;:::i;:::-;25767:139;;25665:248;;;:::o;25919:419::-;26085:4;26123:2;26112:9;26108:18;26100:26;;26172:9;26166:4;26162:20;26158:1;26147:9;26143:17;26136:47;26200:131;26326:4;26200:131;:::i;:::-;26192:139;;26090:248;;;:::o;26344:419::-;26510:4;26548:2;26537:9;26533:18;26525:26;;26597:9;26591:4;26587:20;26583:1;26572:9;26568:17;26561:47;26625:131;26751:4;26625:131;:::i;:::-;26617:139;;26515:248;;;:::o;26769:419::-;26935:4;26973:2;26962:9;26958:18;26950:26;;27022:9;27016:4;27012:20;27008:1;26997:9;26993:17;26986:47;27050:131;27176:4;27050:131;:::i;:::-;27042:139;;26940:248;;;:::o;27194:419::-;27360:4;27398:2;27387:9;27383:18;27375:26;;27447:9;27441:4;27437:20;27433:1;27422:9;27418:17;27411:47;27475:131;27601:4;27475:131;:::i;:::-;27467:139;;27365:248;;;:::o;27619:419::-;27785:4;27823:2;27812:9;27808:18;27800:26;;27872:9;27866:4;27862:20;27858:1;27847:9;27843:17;27836:47;27900:131;28026:4;27900:131;:::i;:::-;27892:139;;27790:248;;;:::o;28044:419::-;28210:4;28248:2;28237:9;28233:18;28225:26;;28297:9;28291:4;28287:20;28283:1;28272:9;28268:17;28261:47;28325:131;28451:4;28325:131;:::i;:::-;28317:139;;28215:248;;;:::o;28469:419::-;28635:4;28673:2;28662:9;28658:18;28650:26;;28722:9;28716:4;28712:20;28708:1;28697:9;28693:17;28686:47;28750:131;28876:4;28750:131;:::i;:::-;28742:139;;28640:248;;;:::o;28894:419::-;29060:4;29098:2;29087:9;29083:18;29075:26;;29147:9;29141:4;29137:20;29133:1;29122:9;29118:17;29111:47;29175:131;29301:4;29175:131;:::i;:::-;29167:139;;29065:248;;;:::o;29319:419::-;29485:4;29523:2;29512:9;29508:18;29500:26;;29572:9;29566:4;29562:20;29558:1;29547:9;29543:17;29536:47;29600:131;29726:4;29600:131;:::i;:::-;29592:139;;29490:248;;;:::o;29744:419::-;29910:4;29948:2;29937:9;29933:18;29925:26;;29997:9;29991:4;29987:20;29983:1;29972:9;29968:17;29961:47;30025:131;30151:4;30025:131;:::i;:::-;30017:139;;29915:248;;;:::o;30169:419::-;30335:4;30373:2;30362:9;30358:18;30350:26;;30422:9;30416:4;30412:20;30408:1;30397:9;30393:17;30386:47;30450:131;30576:4;30450:131;:::i;:::-;30442:139;;30340:248;;;:::o;30594:419::-;30760:4;30798:2;30787:9;30783:18;30775:26;;30847:9;30841:4;30837:20;30833:1;30822:9;30818:17;30811:47;30875:131;31001:4;30875:131;:::i;:::-;30867:139;;30765:248;;;:::o;31019:419::-;31185:4;31223:2;31212:9;31208:18;31200:26;;31272:9;31266:4;31262:20;31258:1;31247:9;31243:17;31236:47;31300:131;31426:4;31300:131;:::i;:::-;31292:139;;31190:248;;;:::o;31444:419::-;31610:4;31648:2;31637:9;31633:18;31625:26;;31697:9;31691:4;31687:20;31683:1;31672:9;31668:17;31661:47;31725:131;31851:4;31725:131;:::i;:::-;31717:139;;31615:248;;;:::o;31869:419::-;32035:4;32073:2;32062:9;32058:18;32050:26;;32122:9;32116:4;32112:20;32108:1;32097:9;32093:17;32086:47;32150:131;32276:4;32150:131;:::i;:::-;32142:139;;32040:248;;;:::o;32294:419::-;32460:4;32498:2;32487:9;32483:18;32475:26;;32547:9;32541:4;32537:20;32533:1;32522:9;32518:17;32511:47;32575:131;32701:4;32575:131;:::i;:::-;32567:139;;32465:248;;;:::o;32719:222::-;32812:4;32850:2;32839:9;32835:18;32827:26;;32863:71;32931:1;32920:9;32916:17;32907:6;32863:71;:::i;:::-;32817:124;;;;:::o;32947:129::-;32981:6;33008:20;;:::i;:::-;32998:30;;33037:33;33065:4;33057:6;33037:33;:::i;:::-;32988:88;;;:::o;33082:75::-;33115:6;33148:2;33142:9;33132:19;;33122:35;:::o;33163:307::-;33224:4;33314:18;33306:6;33303:30;33300:2;;;33336:18;;:::i;:::-;33300:2;33374:29;33396:6;33374:29;:::i;:::-;33366:37;;33458:4;33452;33448:15;33440:23;;33229:241;;;:::o;33476:308::-;33538:4;33628:18;33620:6;33617:30;33614:2;;;33650:18;;:::i;:::-;33614:2;33688:29;33710:6;33688:29;:::i;:::-;33680:37;;33772:4;33766;33762:15;33754:23;;33543:241;;;:::o;33790:98::-;33841:6;33875:5;33869:12;33859:22;;33848:40;;;:::o;33894:99::-;33946:6;33980:5;33974:12;33964:22;;33953:40;;;:::o;33999:168::-;34082:11;34116:6;34111:3;34104:19;34156:4;34151:3;34147:14;34132:29;;34094:73;;;;:::o;34173:169::-;34257:11;34291:6;34286:3;34279:19;34331:4;34326:3;34322:14;34307:29;;34269:73;;;;:::o;34348:148::-;34450:11;34487:3;34472:18;;34462:34;;;;:::o;34502:305::-;34542:3;34561:20;34579:1;34561:20;:::i;:::-;34556:25;;34595:20;34613:1;34595:20;:::i;:::-;34590:25;;34749:1;34681:66;34677:74;34674:1;34671:81;34668:2;;;34755:18;;:::i;:::-;34668:2;34799:1;34796;34792:9;34785:16;;34546:261;;;;:::o;34813:185::-;34853:1;34870:20;34888:1;34870:20;:::i;:::-;34865:25;;34904:20;34922:1;34904:20;:::i;:::-;34899:25;;34943:1;34933:2;;34948:18;;:::i;:::-;34933:2;34990:1;34987;34983:9;34978:14;;34855:143;;;;:::o;35004:348::-;35044:7;35067:20;35085:1;35067:20;:::i;:::-;35062:25;;35101:20;35119:1;35101:20;:::i;:::-;35096:25;;35289:1;35221:66;35217:74;35214:1;35211:81;35206:1;35199:9;35192:17;35188:105;35185:2;;;35296:18;;:::i;:::-;35185:2;35344:1;35341;35337:9;35326:20;;35052:300;;;;:::o;35358:191::-;35398:4;35418:20;35436:1;35418:20;:::i;:::-;35413:25;;35452:20;35470:1;35452:20;:::i;:::-;35447:25;;35491:1;35488;35485:8;35482:2;;;35496:18;;:::i;:::-;35482:2;35541:1;35538;35534:9;35526:17;;35403:146;;;;:::o;35555:96::-;35592:7;35621:24;35639:5;35621:24;:::i;:::-;35610:35;;35600:51;;;:::o;35657:90::-;35691:7;35734:5;35727:13;35720:21;35709:32;;35699:48;;;:::o;35753:77::-;35790:7;35819:5;35808:16;;35798:32;;;:::o;35836:149::-;35872:7;35912:66;35905:5;35901:78;35890:89;;35880:105;;;:::o;35991:126::-;36028:7;36068:42;36061:5;36057:54;36046:65;;36036:81;;;:::o;36123:77::-;36160:7;36189:5;36178:16;;36168:32;;;:::o;36206:154::-;36290:6;36285:3;36280;36267:30;36352:1;36343:6;36338:3;36334:16;36327:27;36257:103;;;:::o;36366:307::-;36434:1;36444:113;36458:6;36455:1;36452:13;36444:113;;;36543:1;36538:3;36534:11;36528:18;36524:1;36519:3;36515:11;36508:39;36480:2;36477:1;36473:10;36468:15;;36444:113;;;36575:6;36572:1;36569:13;36566:2;;;36655:1;36646:6;36641:3;36637:16;36630:27;36566:2;36415:258;;;;:::o;36679:171::-;36718:3;36741:24;36759:5;36741:24;:::i;:::-;36732:33;;36787:4;36780:5;36777:15;36774:2;;;36795:18;;:::i;:::-;36774:2;36842:1;36835:5;36831:13;36824:20;;36722:128;;;:::o;36856:320::-;36900:6;36937:1;36931:4;36927:12;36917:22;;36984:1;36978:4;36974:12;37005:18;36995:2;;37061:4;37053:6;37049:17;37039:27;;36995:2;37123;37115:6;37112:14;37092:18;37089:38;37086:2;;;37142:18;;:::i;:::-;37086:2;36907:269;;;;:::o;37182:281::-;37265:27;37287:4;37265:27;:::i;:::-;37257:6;37253:40;37395:6;37383:10;37380:22;37359:18;37347:10;37344:34;37341:62;37338:2;;;37406:18;;:::i;:::-;37338:2;37446:10;37442:2;37435:22;37225:238;;;:::o;37469:233::-;37508:3;37531:24;37549:5;37531:24;:::i;:::-;37522:33;;37577:66;37570:5;37567:77;37564:2;;;37647:18;;:::i;:::-;37564:2;37694:1;37687:5;37683:13;37676:20;;37512:190;;;:::o;37708:176::-;37740:1;37757:20;37775:1;37757:20;:::i;:::-;37752:25;;37791:20;37809:1;37791:20;:::i;:::-;37786:25;;37830:1;37820:2;;37835:18;;:::i;:::-;37820:2;37876:1;37873;37869:9;37864:14;;37742:142;;;;:::o;37890:180::-;37938:77;37935:1;37928:88;38035:4;38032:1;38025:15;38059:4;38056:1;38049:15;38076:180;38124:77;38121:1;38114:88;38221:4;38218:1;38211:15;38245:4;38242:1;38235:15;38262:180;38310:77;38307:1;38300:88;38407:4;38404:1;38397:15;38431:4;38428:1;38421:15;38448:180;38496:77;38493:1;38486:88;38593:4;38590:1;38583:15;38617:4;38614:1;38607:15;38634:180;38682:77;38679:1;38672:88;38779:4;38776:1;38769:15;38803:4;38800:1;38793:15;38820:180;38868:77;38865:1;38858:88;38965:4;38962:1;38955:15;38989:4;38986:1;38979:15;39006:117;39115:1;39112;39105:12;39129:117;39238:1;39235;39228:12;39252:117;39361:1;39358;39351:12;39375:117;39484:1;39481;39474:12;39498:102;39539:6;39590:2;39586:7;39581:2;39574:5;39570:14;39566:28;39556:38;;39546:54;;;:::o;39606:171::-;39746:23;39742:1;39734:6;39730:14;39723:47;39712:65;:::o;39783:182::-;39923:34;39919:1;39911:6;39907:14;39900:58;39889:76;:::o;39971:230::-;40111:34;40107:1;40099:6;40095:14;40088:58;40180:13;40175:2;40167:6;40163:15;40156:38;40077:124;:::o;40207:237::-;40347:34;40343:1;40335:6;40331:14;40324:58;40416:20;40411:2;40403:6;40399:15;40392:45;40313:131;:::o;40450:225::-;40590:34;40586:1;40578:6;40574:14;40567:58;40659:8;40654:2;40646:6;40642:15;40635:33;40556:119;:::o;40681:178::-;40821:30;40817:1;40809:6;40805:14;40798:54;40787:72;:::o;40865:223::-;41005:34;41001:1;40993:6;40989:14;40982:58;41074:6;41069:2;41061:6;41057:15;41050:31;40971:117;:::o;41094:175::-;41234:27;41230:1;41222:6;41218:14;41211:51;41200:69;:::o;41275:231::-;41415:34;41411:1;41403:6;41399:14;41392:58;41484:14;41479:2;41471:6;41467:15;41460:39;41381:125;:::o;41512:230::-;41652:34;41648:1;41640:6;41636:14;41629:58;41721:13;41716:2;41708:6;41704:15;41697:38;41618:124;:::o;41748:243::-;41888:34;41884:1;41876:6;41872:14;41865:58;41957:26;41952:2;41944:6;41940:15;41933:51;41854:137;:::o;41997:172::-;42137:24;42133:1;42125:6;42121:14;42114:48;42103:66;:::o;42175:229::-;42315:34;42311:1;42303:6;42299:14;42292:58;42384:12;42379:2;42371:6;42367:15;42360:37;42281:123;:::o;42410:228::-;42550:34;42546:1;42538:6;42534:14;42527:58;42619:11;42614:2;42606:6;42602:15;42595:36;42516:122;:::o;42644:182::-;42784:34;42780:1;42772:6;42768:14;42761:58;42750:76;:::o;42832:231::-;42972:34;42968:1;42960:6;42956:14;42949:58;43041:14;43036:2;43028:6;43024:15;43017:39;42938:125;:::o;43069:182::-;43209:34;43205:1;43197:6;43193:14;43186:58;43175:76;:::o;43257:228::-;43397:34;43393:1;43385:6;43381:14;43374:58;43466:11;43461:2;43453:6;43449:15;43442:36;43363:122;:::o;43491:228::-;43631:34;43627:1;43619:6;43615:14;43608:58;43700:11;43695:2;43687:6;43683:15;43676:36;43597:122;:::o;43725:234::-;43865:34;43861:1;43853:6;43849:14;43842:58;43934:17;43929:2;43921:6;43917:15;43910:42;43831:128;:::o;43965:220::-;44105:34;44101:1;44093:6;44089:14;44082:58;44174:3;44169:2;44161:6;44157:15;44150:28;44071:114;:::o;44191:236::-;44331:34;44327:1;44319:6;44315:14;44308:58;44400:19;44395:2;44387:6;44383:15;44376:44;44297:130;:::o;44433:231::-;44573:34;44569:1;44561:6;44557:14;44550:58;44642:14;44637:2;44629:6;44625:15;44618:39;44539:125;:::o;44670:173::-;44810:25;44806:1;44798:6;44794:14;44787:49;44776:67;:::o;44849:167::-;44989:19;44985:1;44977:6;44973:14;44966:43;44955:61;:::o;45022:234::-;45162:34;45158:1;45150:6;45146:14;45139:58;45231:17;45226:2;45218:6;45214:15;45207:42;45128:128;:::o;45262:122::-;45335:24;45353:5;45335:24;:::i;:::-;45328:5;45325:35;45315:2;;45374:1;45371;45364:12;45315:2;45305:79;:::o;45390:116::-;45460:21;45475:5;45460:21;:::i;:::-;45453:5;45450:32;45440:2;;45496:1;45493;45486:12;45440:2;45430:76;:::o;45512:122::-;45585:24;45603:5;45585:24;:::i;:::-;45578:5;45575:35;45565:2;;45624:1;45621;45614:12;45565:2;45555:79;:::o;45640:120::-;45712:23;45729:5;45712:23;:::i;:::-;45705:5;45702:34;45692:2;;45750:1;45747;45740:12;45692:2;45682:78;:::o;45766:122::-;45839:24;45857:5;45839:24;:::i;:::-;45832:5;45829:35;45819:2;;45878:1;45875;45868:12;45819:2;45809:79;:::o

Swarm Source

ipfs://70308b08756e878db548d99cbcf3427f6b5a026483596b8c27fda3008ce386a0
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.