ETH Price: $3,444.46 (-1.23%)
Gas: 3 Gwei

Token

Brrrdies (BRRRD)
 

Overview

Max Total Supply

5,858 BRRRD

Holders

1,064

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BRRRD
0x82bf2548c2c9b4b8e1de8cacc83e15fb01a90e09
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:
Brrrdies

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-04
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

//   _                       _ _           
//  | |                     | (_)          
//  | |__  _ __ _ __ _ __ __| |_  ___  ___ 
//  | '_ \| '__| '__| '__/ _` | |/ _ \/ __|
//  | |_) | |  | |  | | | (_| | |  __/\__ \
//  |_.__/|_|  |_|  |_|  \__,_|_|\___||___/
//                                         
//  FOR THE CULTURE -- NOV 2022                                      


/**
 * @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;
    }
}
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
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);
}
pragma solidity ^0.8.0;

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


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

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

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

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

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

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

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

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


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


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

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

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

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

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

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

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

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

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

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

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

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


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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
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);

    /**
     * @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);
}
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex = 1;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return (_currentIndex - _burnCounter) - 1;    
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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 TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

contract Brrrdies is Ownable, ERC721A {

    uint256 public walletMax = 5;
    using Strings for uint256;

    mapping(uint256 => string) private _tokenURIs;
    bool public publicSaleOpen = false;
    string public baseURI = "ipfs://bafybeigzwwmzujz4ektttyaqrzs2rb3pxjhcyarlqbpsxwb7pksv2w6rdi/";
    string public _extension = ".json";
    uint256 public price = 0 ether;
    uint256 public maxSupply = 5858;

    constructor() ERC721A("Brrrdies", "BRRRD"){}
    
    function mintNFT(uint256 _quantity) public payable {
        require(_quantity > 0 && _quantity <= walletMax, "Wallet full, check max per wallet!");
        require(totalSupply() + _quantity <= maxSupply, "Reached max supply!");
        require(msg.value == price * _quantity, "Needs to send more ETH!");
        require(getMintedCount(msg.sender) + _quantity <= walletMax, "Exceeded max minting amount!");
        require(publicSaleOpen, "Public sale not yet started!");

        _safeMint(msg.sender, _quantity);

    }


    function sendGifts(address[] memory _wallets) external onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached.");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);

    }
   function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{
               require(totalSupply() + _num <= maxSupply, "Max Supply Reached.");
            _safeMint(_wallet, _num);
    }


    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );

        return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension));
    }

    function updateBaseURI(string memory _newBaseURI) onlyOwner public {
        baseURI = _newBaseURI;
    }
    function updateExtension(string memory _temp) onlyOwner public {
        _extension = _temp;
    }

    function getBaseURI() external view returns(string memory) {
        return baseURI;
    }

    function setPrice(uint256 _price) public onlyOwner() {
        price = _price;
    }
    function setWalletMaxs(uint256 _walletMax) public onlyOwner() {
        walletMax = _walletMax;
    }

    function setmaxSupply(uint256 _supply) public onlyOwner() {
        require(_supply <= 5858, "Error: New max supply cant be higher than original max.");
        maxSupply = _supply;
    }

    function toggleSale() public onlyOwner() {
        publicSaleOpen = !publicSaleOpen;
    }


    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

    function getMintedCount(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(owner()).transfer(_balance); //Owner
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","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":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_walletMax","type":"uint256"}],"name":"setWalletMaxs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001805560056009556000600b60006101000a81548160ff021916908315150217905550604051806080016040528060438152602001620042cb60439139600c90805190602001906200005992919062000253565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000a792919062000253565b506000600e556116e2600f55348015620000c057600080fd5b506040518060400160405280600881526020017f42727272646965730000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f42525252440000000000000000000000000000000000000000000000000000008152506200014d620001416200018760201b60201c565b6200018f60201b60201c565b81600390805190602001906200016592919062000253565b5080600490805190602001906200017e92919062000253565b50505062000367565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002619062000332565b90600052602060002090601f016020900481019282620002855760008555620002d1565b82601f10620002a057805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d0578251825591602001919060010190620002b3565b5b509050620002e09190620002e4565b5090565b5b80821115620002ff576000816000905550600101620002e5565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034b57607f821691505b60208210810362000361576200036062000303565b5b50919050565b613f5480620003776000396000f3fe60806040526004361061021e5760003560e01c80637d8966e411610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e985e9c5146107d0578063f2fde38b1461080d578063f9e2379914610836578063fe3145241461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637d8966e4146105445780637e6182d91461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a65780636c0360eb116101755780636c0360eb1461047157806370a082311461049c578063714c5398146104d9578063715018a6146105045780637c8255db1461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780635c0017c21461040b5780636352211e1461043457610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612dff565b61088c565b60405161025e9190612e47565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b6040516102899190612efb565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612f53565b610a00565b6040516102c69190612fc1565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613008565b610a7c565b005b34801561030457600080fd5b5061030d610b86565b60405161031a9190613057565b60405180910390f35b34801561032f57600080fd5b50610338610b8e565b6040516103459190613057565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612f53565b610b9f565b005b34801561038357600080fd5b5061039e60048036038101906103999190613072565b610c6a565b005b3480156103ac57600080fd5b506103b5610c7a565b6040516103c29190612efb565b60405180910390f35b3480156103d757600080fd5b506103e0610d08565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613072565b610dda565b005b34801561041757600080fd5b50610432600480360381019061042d9190612f53565b610dfa565b005b34801561044057600080fd5b5061045b60048036038101906104569190612f53565b610e80565b6040516104689190612fc1565b60405180910390f35b34801561047d57600080fd5b50610486610e96565b6040516104939190612efb565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be91906130c5565b610f24565b6040516104d09190613057565b60405180910390f35b3480156104e557600080fd5b506104ee610ff3565b6040516104fb9190612efb565b60405180910390f35b34801561051057600080fd5b50610519611085565b005b34801561052757600080fd5b50610542600480360381019061053d919061323a565b61110d565b005b34801561055057600080fd5b50610559611229565b005b34801561056757600080fd5b50610582600480360381019061057d9190613338565b6112d1565b005b34801561059057600080fd5b50610599611367565b6040516105a69190612fc1565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190612f53565b611390565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190612f53565b611416565b60405161060c9190613404565b60405180910390f35b61062f600480360381019061062a9190612f53565b61142e565b005b34801561063d57600080fd5b5061065860048036038101906106539190613338565b6115d9565b005b34801561066657600080fd5b5061066f61166f565b60405161067c9190612efb565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a791906130c5565b611701565b6040516106b99190613057565b60405180910390f35b3480156106ce57600080fd5b506106d7611713565b6040516106e49190613057565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f919061344b565b611719565b005b34801561072257600080fd5b5061073d6004803603810190610738919061352c565b611890565b005b34801561074b57600080fd5b5061076660048036038101906107619190612f53565b6118e3565b6040516107739190612efb565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613008565b611962565b005b3480156107b157600080fd5b506107ba611a43565b6040516107c79190613057565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906135af565b611a49565b6040516108049190612e47565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906130c5565b611add565b005b34801561084257600080fd5b5061084b611bd4565b6040516108589190612e47565b60405180910390f35b34801561086d57600080fd5b50610876611be7565b6040516108839190613057565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bed565b5b9050919050565b60606003805461097d9061361e565b80601f01602080910402602001604051908101604052809291908181526020018280546109a99061361e565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c57565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610e80565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0d611c92565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b3f5750610b3d81610b38611c92565b611a49565b155b15610b76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b81838383611c9a565b505050565b600047905090565b600060016002546001540303905090565b610ba7611c92565b73ffffffffffffffffffffffffffffffffffffffff16610bc5611367565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c129061369b565b60405180910390fd5b6116e2811115610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c579061372d565b60405180910390fd5b80600f8190555050565b610c75838383611d4c565b505050565b600d8054610c879061361e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb39061361e565b8015610d005780601f10610cd557610100808354040283529160200191610d00565b820191906000526020600020905b815481529060010190602001808311610ce357829003601f168201915b505050505081565b610d10611c92565b73ffffffffffffffffffffffffffffffffffffffff16610d2e611367565b73ffffffffffffffffffffffffffffffffffffffff1614610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b9061369b565b60405180910390fd5b6000479050610d91611367565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dd6573d6000803e3d6000fd5b5050565b610df583838360405180602001604052806000815250611890565b505050565b610e02611c92565b73ffffffffffffffffffffffffffffffffffffffff16610e20611367565b73ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d9061369b565b60405180910390fd5b8060098190555050565b6000610e8b8261223b565b600001519050919050565b600c8054610ea39061361e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecf9061361e565b8015610f1c5780601f10610ef157610100808354040283529160200191610f1c565b820191906000526020600020905b815481529060010190602001808311610eff57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f8b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c80546110029061361e565b80601f016020809104026020016040519081016040528092919081815260200182805461102e9061361e565b801561107b5780601f106110505761010080835404028352916020019161107b565b820191906000526020600020905b81548152906001019060200180831161105e57829003601f168201915b5050505050905090565b61108d611c92565b73ffffffffffffffffffffffffffffffffffffffff166110ab611367565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f89061369b565b60405180910390fd5b61110b60006124b7565b565b611115611c92565b73ffffffffffffffffffffffffffffffffffffffff16611133611367565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111809061369b565b60405180910390fd5b600f548151611196610b8e565b6111a0919061377c565b11156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061381e565b60405180910390fd5b60005b8151811015611225576112128282815181106112035761120261383e565b5b6020026020010151600161257b565b808061121d9061386d565b9150506111e4565b5050565b611231611c92565b73ffffffffffffffffffffffffffffffffffffffff1661124f611367565b73ffffffffffffffffffffffffffffffffffffffff16146112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c9061369b565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6112d9611c92565b73ffffffffffffffffffffffffffffffffffffffff166112f7611367565b73ffffffffffffffffffffffffffffffffffffffff161461134d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113449061369b565b60405180910390fd5b80600d9080519060200190611363929190612cad565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611398611c92565b73ffffffffffffffffffffffffffffffffffffffff166113b6611367565b73ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061369b565b60405180910390fd5b80600e8190555050565b61141e612d33565b6114278261223b565b9050919050565b60008111801561144057506009548111155b61147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613927565b60405180910390fd5b600f548161148b610b8e565b611495919061377c565b11156114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90613993565b60405180910390fd5b80600e546114e491906139b3565b3414611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613a59565b60405180910390fd5b6009548161153233611701565b61153c919061377c565b111561157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613ac5565b60405180910390fd5b600b60009054906101000a900460ff166115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613b31565b60405180910390fd5b6115d6338261257b565b50565b6115e1611c92565b73ffffffffffffffffffffffffffffffffffffffff166115ff611367565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c9061369b565b60405180910390fd5b80600c908051906020019061166b929190612cad565b5050565b60606004805461167e9061361e565b80601f01602080910402602001604051908101604052809291908181526020018280546116aa9061361e565b80156116f75780601f106116cc576101008083540402835291602001916116f7565b820191906000526020600020905b8154815290600101906020018083116116da57829003601f168201915b5050505050905090565b600061170c82612599565b9050919050565b600e5481565b611721611c92565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611785576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611792611c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183f611c92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118849190612e47565b60405180910390a35050565b61189b848484611d4c565b6118a784848484612668565b6118dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118ee82611c57565b61192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490613bc3565b60405180910390fd5b600c611938836127e6565b600d60405160200161194c93929190613cb3565b6040516020818303038152906040529050919050565b61196a611c92565b73ffffffffffffffffffffffffffffffffffffffff16611988611367565b73ffffffffffffffffffffffffffffffffffffffff16146119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d59061369b565b60405180910390fd5b600f54816119ea610b8e565b6119f4919061377c565b1115611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c9061381e565b60405180910390fd5b611a3f828261257b565b5050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae5611c92565b73ffffffffffffffffffffffffffffffffffffffff16611b03611367565b73ffffffffffffffffffffffffffffffffffffffff1614611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b509061369b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613d56565b60405180910390fd5b611bd1816124b7565b50565b600b60009054906101000a900460ff1681565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c8b575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d578261223b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d7e611c92565b73ffffffffffffffffffffffffffffffffffffffff161480611db15750611db08260000151611dab611c92565b611a49565b5b80611df65750611dbf611c92565b73ffffffffffffffffffffffffffffffffffffffff16611dde84610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e2f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e98576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611efe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0b8585856001612946565b611f1b6000848460000151611c9a565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121cb576001548110156121ca5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612234858585600161294c565b5050505050565b612243612d33565b6000829050600154811015612480576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123625780925050506124b2565b5b60011561247d57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124785780925050506124b2565b612363565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612595828260405180602001604052806000815250612952565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612600576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006126898473ffffffffffffffffffffffffffffffffffffffff16612964565b156127d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b2611c92565b8786866040518563ffffffff1660e01b81526004016126d49493929190613dcb565b6020604051808303816000875af192505050801561271057506040513d601f19601f8201168201806040525081019061270d9190613e2c565b60015b612789573d8060008114612740576040519150601f19603f3d011682016040523d82523d6000602084013e612745565b606091505b506000815103612781576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127de565b600190505b949350505050565b60606000820361282d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612941565b600082905060005b6000821461285f5780806128489061386d565b915050600a826128589190613e88565b9150612835565b60008167ffffffffffffffff81111561287b5761287a6130f7565b5b6040519080825280601f01601f1916602001820160405280156128ad5781602001600182028036833780820191505090505b5090505b6000851461293a576001826128c69190613eb9565b9150600a856128d59190613eed565b60306128e1919061377c565b60f81b8183815181106128f7576128f661383e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129339190613e88565b94506128b1565b8093505050505b919050565b50505050565b50505050565b61295f8383836001612977565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036129e4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a1e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a2b6000868387612946565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c9057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c445750612c426000888488612668565b155b15612c7b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612bc9565b508060018190555050612ca6600086838761294c565b5050505050565b828054612cb99061361e565b90600052602060002090601f016020900481019282612cdb5760008555612d22565b82601f10612cf457805160ff1916838001178555612d22565b82800160010185558215612d22579182015b82811115612d21578251825591602001919060010190612d06565b5b509050612d2f9190612d76565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d8f576000816000905550600101612d77565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ddc81612da7565b8114612de757600080fd5b50565b600081359050612df981612dd3565b92915050565b600060208284031215612e1557612e14612d9d565b5b6000612e2384828501612dea565b91505092915050565b60008115159050919050565b612e4181612e2c565b82525050565b6000602082019050612e5c6000830184612e38565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e9c578082015181840152602081019050612e81565b83811115612eab576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ecd82612e62565b612ed78185612e6d565b9350612ee7818560208601612e7e565b612ef081612eb1565b840191505092915050565b60006020820190508181036000830152612f158184612ec2565b905092915050565b6000819050919050565b612f3081612f1d565b8114612f3b57600080fd5b50565b600081359050612f4d81612f27565b92915050565b600060208284031215612f6957612f68612d9d565b5b6000612f7784828501612f3e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fab82612f80565b9050919050565b612fbb81612fa0565b82525050565b6000602082019050612fd66000830184612fb2565b92915050565b612fe581612fa0565b8114612ff057600080fd5b50565b60008135905061300281612fdc565b92915050565b6000806040838503121561301f5761301e612d9d565b5b600061302d85828601612ff3565b925050602061303e85828601612f3e565b9150509250929050565b61305181612f1d565b82525050565b600060208201905061306c6000830184613048565b92915050565b60008060006060848603121561308b5761308a612d9d565b5b600061309986828701612ff3565b93505060206130aa86828701612ff3565b92505060406130bb86828701612f3e565b9150509250925092565b6000602082840312156130db576130da612d9d565b5b60006130e984828501612ff3565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312f82612eb1565b810181811067ffffffffffffffff8211171561314e5761314d6130f7565b5b80604052505050565b6000613161612d93565b905061316d8282613126565b919050565b600067ffffffffffffffff82111561318d5761318c6130f7565b5b602082029050602081019050919050565b600080fd5b60006131b66131b184613172565b613157565b905080838252602082019050602084028301858111156131d9576131d861319e565b5b835b8181101561320257806131ee8882612ff3565b8452602084019350506020810190506131db565b5050509392505050565b600082601f830112613221576132206130f2565b5b81356132318482602086016131a3565b91505092915050565b6000602082840312156132505761324f612d9d565b5b600082013567ffffffffffffffff81111561326e5761326d612da2565b5b61327a8482850161320c565b91505092915050565b600080fd5b600067ffffffffffffffff8211156132a3576132a26130f7565b5b6132ac82612eb1565b9050602081019050919050565b82818337600083830152505050565b60006132db6132d684613288565b613157565b9050828152602081018484840111156132f7576132f6613283565b5b6133028482856132b9565b509392505050565b600082601f83011261331f5761331e6130f2565b5b813561332f8482602086016132c8565b91505092915050565b60006020828403121561334e5761334d612d9d565b5b600082013567ffffffffffffffff81111561336c5761336b612da2565b5b6133788482850161330a565b91505092915050565b61338a81612fa0565b82525050565b600067ffffffffffffffff82169050919050565b6133ad81613390565b82525050565b6133bc81612e2c565b82525050565b6060820160008201516133d86000850182613381565b5060208201516133eb60208501826133a4565b5060408201516133fe60408501826133b3565b50505050565b600060608201905061341960008301846133c2565b92915050565b61342881612e2c565b811461343357600080fd5b50565b6000813590506134458161341f565b92915050565b6000806040838503121561346257613461612d9d565b5b600061347085828601612ff3565b925050602061348185828601613436565b9150509250929050565b600067ffffffffffffffff8211156134a6576134a56130f7565b5b6134af82612eb1565b9050602081019050919050565b60006134cf6134ca8461348b565b613157565b9050828152602081018484840111156134eb576134ea613283565b5b6134f68482856132b9565b509392505050565b600082601f830112613513576135126130f2565b5b81356135238482602086016134bc565b91505092915050565b6000806000806080858703121561354657613545612d9d565b5b600061355487828801612ff3565b945050602061356587828801612ff3565b935050604061357687828801612f3e565b925050606085013567ffffffffffffffff81111561359757613596612da2565b5b6135a3878288016134fe565b91505092959194509250565b600080604083850312156135c6576135c5612d9d565b5b60006135d485828601612ff3565b92505060206135e585828601612ff3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061363657607f821691505b602082108103613649576136486135ef565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613685602083612e6d565b91506136908261364f565b602082019050919050565b600060208201905081810360008301526136b481613678565b9050919050565b7f4572726f723a204e6577206d617820737570706c792063616e7420626520686960008201527f67686572207468616e206f726967696e616c206d61782e000000000000000000602082015250565b6000613717603783612e6d565b9150613722826136bb565b604082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378782612f1d565b915061379283612f1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c7576137c661374d565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b6000613808601383612e6d565b9150613813826137d2565b602082019050919050565b60006020820190508181036000830152613837816137fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061387882612f1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138aa576138a961374d565b5b600182019050919050565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b6000613911602283612e6d565b915061391c826138b5565b604082019050919050565b6000602082019050818103600083015261394081613904565b9050919050565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b600061397d601383612e6d565b915061398882613947565b602082019050919050565b600060208201905081810360008301526139ac81613970565b9050919050565b60006139be82612f1d565b91506139c983612f1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0257613a0161374d565b5b828202905092915050565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b6000613a43601783612e6d565b9150613a4e82613a0d565b602082019050919050565b60006020820190508181036000830152613a7281613a36565b9050919050565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b6000613aaf601c83612e6d565b9150613aba82613a79565b602082019050919050565b60006020820190508181036000830152613ade81613aa2565b9050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b6000613b1b601c83612e6d565b9150613b2682613ae5565b602082019050919050565b60006020820190508181036000830152613b4a81613b0e565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613bad602c83612e6d565b9150613bb882613b51565b604082019050919050565b60006020820190508181036000830152613bdc81613ba0565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c108161361e565b613c1a8186613be3565b94506001821660008114613c355760018114613c4657613c79565b60ff19831686528186019350613c79565b613c4f85613bee565b60005b83811015613c7157815481890152600182019150602081019050613c52565b838801955050505b50505092915050565b6000613c8d82612e62565b613c978185613be3565b9350613ca7818560208601612e7e565b80840191505092915050565b6000613cbf8286613c03565b9150613ccb8285613c82565b9150613cd78284613c03565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d40602683612e6d565b9150613d4b82613ce4565b604082019050919050565b60006020820190508181036000830152613d6f81613d33565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d9d82613d76565b613da78185613d81565b9350613db7818560208601612e7e565b613dc081612eb1565b840191505092915050565b6000608082019050613de06000830187612fb2565b613ded6020830186612fb2565b613dfa6040830185613048565b8181036060830152613e0c8184613d92565b905095945050505050565b600081519050613e2681612dd3565b92915050565b600060208284031215613e4257613e41612d9d565b5b6000613e5084828501613e17565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e9382612f1d565b9150613e9e83612f1d565b925082613eae57613ead613e59565b5b828204905092915050565b6000613ec482612f1d565b9150613ecf83612f1d565b925082821015613ee257613ee161374d565b5b828203905092915050565b6000613ef882612f1d565b9150613f0383612f1d565b925082613f1357613f12613e59565b5b82820690509291505056fea2646970667358221220d8681c04bfa3cbfb124b18b797d56eb1995f85f2a0b19b867a9a9967469084ed64736f6c634300080d0033697066733a2f2f62616679626569677a77776d7a756a7a34656b747474796171727a733272623370786a68637961726c7162707378776237706b73763277367264692f

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80637d8966e411610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e985e9c5146107d0578063f2fde38b1461080d578063f9e2379914610836578063fe3145241461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637d8966e4146105445780637e6182d91461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a65780636c0360eb116101755780636c0360eb1461047157806370a082311461049c578063714c5398146104d9578063715018a6146105045780637c8255db1461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780635c0017c21461040b5780636352211e1461043457610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612dff565b61088c565b60405161025e9190612e47565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b6040516102899190612efb565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612f53565b610a00565b6040516102c69190612fc1565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613008565b610a7c565b005b34801561030457600080fd5b5061030d610b86565b60405161031a9190613057565b60405180910390f35b34801561032f57600080fd5b50610338610b8e565b6040516103459190613057565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612f53565b610b9f565b005b34801561038357600080fd5b5061039e60048036038101906103999190613072565b610c6a565b005b3480156103ac57600080fd5b506103b5610c7a565b6040516103c29190612efb565b60405180910390f35b3480156103d757600080fd5b506103e0610d08565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613072565b610dda565b005b34801561041757600080fd5b50610432600480360381019061042d9190612f53565b610dfa565b005b34801561044057600080fd5b5061045b60048036038101906104569190612f53565b610e80565b6040516104689190612fc1565b60405180910390f35b34801561047d57600080fd5b50610486610e96565b6040516104939190612efb565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be91906130c5565b610f24565b6040516104d09190613057565b60405180910390f35b3480156104e557600080fd5b506104ee610ff3565b6040516104fb9190612efb565b60405180910390f35b34801561051057600080fd5b50610519611085565b005b34801561052757600080fd5b50610542600480360381019061053d919061323a565b61110d565b005b34801561055057600080fd5b50610559611229565b005b34801561056757600080fd5b50610582600480360381019061057d9190613338565b6112d1565b005b34801561059057600080fd5b50610599611367565b6040516105a69190612fc1565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190612f53565b611390565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190612f53565b611416565b60405161060c9190613404565b60405180910390f35b61062f600480360381019061062a9190612f53565b61142e565b005b34801561063d57600080fd5b5061065860048036038101906106539190613338565b6115d9565b005b34801561066657600080fd5b5061066f61166f565b60405161067c9190612efb565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a791906130c5565b611701565b6040516106b99190613057565b60405180910390f35b3480156106ce57600080fd5b506106d7611713565b6040516106e49190613057565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f919061344b565b611719565b005b34801561072257600080fd5b5061073d6004803603810190610738919061352c565b611890565b005b34801561074b57600080fd5b5061076660048036038101906107619190612f53565b6118e3565b6040516107739190612efb565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613008565b611962565b005b3480156107b157600080fd5b506107ba611a43565b6040516107c79190613057565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906135af565b611a49565b6040516108049190612e47565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906130c5565b611add565b005b34801561084257600080fd5b5061084b611bd4565b6040516108589190612e47565b60405180910390f35b34801561086d57600080fd5b50610876611be7565b6040516108839190613057565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bed565b5b9050919050565b60606003805461097d9061361e565b80601f01602080910402602001604051908101604052809291908181526020018280546109a99061361e565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c57565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610e80565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0d611c92565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b3f5750610b3d81610b38611c92565b611a49565b155b15610b76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b81838383611c9a565b505050565b600047905090565b600060016002546001540303905090565b610ba7611c92565b73ffffffffffffffffffffffffffffffffffffffff16610bc5611367565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c129061369b565b60405180910390fd5b6116e2811115610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c579061372d565b60405180910390fd5b80600f8190555050565b610c75838383611d4c565b505050565b600d8054610c879061361e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb39061361e565b8015610d005780601f10610cd557610100808354040283529160200191610d00565b820191906000526020600020905b815481529060010190602001808311610ce357829003601f168201915b505050505081565b610d10611c92565b73ffffffffffffffffffffffffffffffffffffffff16610d2e611367565b73ffffffffffffffffffffffffffffffffffffffff1614610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b9061369b565b60405180910390fd5b6000479050610d91611367565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dd6573d6000803e3d6000fd5b5050565b610df583838360405180602001604052806000815250611890565b505050565b610e02611c92565b73ffffffffffffffffffffffffffffffffffffffff16610e20611367565b73ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d9061369b565b60405180910390fd5b8060098190555050565b6000610e8b8261223b565b600001519050919050565b600c8054610ea39061361e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecf9061361e565b8015610f1c5780601f10610ef157610100808354040283529160200191610f1c565b820191906000526020600020905b815481529060010190602001808311610eff57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f8b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c80546110029061361e565b80601f016020809104026020016040519081016040528092919081815260200182805461102e9061361e565b801561107b5780601f106110505761010080835404028352916020019161107b565b820191906000526020600020905b81548152906001019060200180831161105e57829003601f168201915b5050505050905090565b61108d611c92565b73ffffffffffffffffffffffffffffffffffffffff166110ab611367565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f89061369b565b60405180910390fd5b61110b60006124b7565b565b611115611c92565b73ffffffffffffffffffffffffffffffffffffffff16611133611367565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111809061369b565b60405180910390fd5b600f548151611196610b8e565b6111a0919061377c565b11156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061381e565b60405180910390fd5b60005b8151811015611225576112128282815181106112035761120261383e565b5b6020026020010151600161257b565b808061121d9061386d565b9150506111e4565b5050565b611231611c92565b73ffffffffffffffffffffffffffffffffffffffff1661124f611367565b73ffffffffffffffffffffffffffffffffffffffff16146112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c9061369b565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6112d9611c92565b73ffffffffffffffffffffffffffffffffffffffff166112f7611367565b73ffffffffffffffffffffffffffffffffffffffff161461134d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113449061369b565b60405180910390fd5b80600d9080519060200190611363929190612cad565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611398611c92565b73ffffffffffffffffffffffffffffffffffffffff166113b6611367565b73ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061369b565b60405180910390fd5b80600e8190555050565b61141e612d33565b6114278261223b565b9050919050565b60008111801561144057506009548111155b61147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690613927565b60405180910390fd5b600f548161148b610b8e565b611495919061377c565b11156114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90613993565b60405180910390fd5b80600e546114e491906139b3565b3414611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613a59565b60405180910390fd5b6009548161153233611701565b61153c919061377c565b111561157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613ac5565b60405180910390fd5b600b60009054906101000a900460ff166115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613b31565b60405180910390fd5b6115d6338261257b565b50565b6115e1611c92565b73ffffffffffffffffffffffffffffffffffffffff166115ff611367565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c9061369b565b60405180910390fd5b80600c908051906020019061166b929190612cad565b5050565b60606004805461167e9061361e565b80601f01602080910402602001604051908101604052809291908181526020018280546116aa9061361e565b80156116f75780601f106116cc576101008083540402835291602001916116f7565b820191906000526020600020905b8154815290600101906020018083116116da57829003601f168201915b5050505050905090565b600061170c82612599565b9050919050565b600e5481565b611721611c92565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611785576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611792611c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183f611c92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118849190612e47565b60405180910390a35050565b61189b848484611d4c565b6118a784848484612668565b6118dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118ee82611c57565b61192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490613bc3565b60405180910390fd5b600c611938836127e6565b600d60405160200161194c93929190613cb3565b6040516020818303038152906040529050919050565b61196a611c92565b73ffffffffffffffffffffffffffffffffffffffff16611988611367565b73ffffffffffffffffffffffffffffffffffffffff16146119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d59061369b565b60405180910390fd5b600f54816119ea610b8e565b6119f4919061377c565b1115611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c9061381e565b60405180910390fd5b611a3f828261257b565b5050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae5611c92565b73ffffffffffffffffffffffffffffffffffffffff16611b03611367565b73ffffffffffffffffffffffffffffffffffffffff1614611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b509061369b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613d56565b60405180910390fd5b611bd1816124b7565b50565b600b60009054906101000a900460ff1681565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c8b575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d578261223b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d7e611c92565b73ffffffffffffffffffffffffffffffffffffffff161480611db15750611db08260000151611dab611c92565b611a49565b5b80611df65750611dbf611c92565b73ffffffffffffffffffffffffffffffffffffffff16611dde84610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e2f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e98576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611efe576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0b8585856001612946565b611f1b6000848460000151611c9a565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121cb576001548110156121ca5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612234858585600161294c565b5050505050565b612243612d33565b6000829050600154811015612480576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161247e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123625780925050506124b2565b5b60011561247d57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124785780925050506124b2565b612363565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612595828260405180602001604052806000815250612952565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612600576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006126898473ffffffffffffffffffffffffffffffffffffffff16612964565b156127d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b2611c92565b8786866040518563ffffffff1660e01b81526004016126d49493929190613dcb565b6020604051808303816000875af192505050801561271057506040513d601f19601f8201168201806040525081019061270d9190613e2c565b60015b612789573d8060008114612740576040519150601f19603f3d011682016040523d82523d6000602084013e612745565b606091505b506000815103612781576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127de565b600190505b949350505050565b60606000820361282d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612941565b600082905060005b6000821461285f5780806128489061386d565b915050600a826128589190613e88565b9150612835565b60008167ffffffffffffffff81111561287b5761287a6130f7565b5b6040519080825280601f01601f1916602001820160405280156128ad5781602001600182028036833780820191505090505b5090505b6000851461293a576001826128c69190613eb9565b9150600a856128d59190613eed565b60306128e1919061377c565b60f81b8183815181106128f7576128f661383e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129339190613e88565b94506128b1565b8093505050505b919050565b50505050565b50505050565b61295f8383836001612977565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036129e4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612a1e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a2b6000868387612946565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c9057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c445750612c426000888488612668565b155b15612c7b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612bc9565b508060018190555050612ca6600086838761294c565b5050505050565b828054612cb99061361e565b90600052602060002090601f016020900481019282612cdb5760008555612d22565b82601f10612cf457805160ff1916838001178555612d22565b82800160010185558215612d22579182015b82811115612d21578251825591602001919060010190612d06565b5b509050612d2f9190612d76565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d8f576000816000905550600101612d77565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ddc81612da7565b8114612de757600080fd5b50565b600081359050612df981612dd3565b92915050565b600060208284031215612e1557612e14612d9d565b5b6000612e2384828501612dea565b91505092915050565b60008115159050919050565b612e4181612e2c565b82525050565b6000602082019050612e5c6000830184612e38565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e9c578082015181840152602081019050612e81565b83811115612eab576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ecd82612e62565b612ed78185612e6d565b9350612ee7818560208601612e7e565b612ef081612eb1565b840191505092915050565b60006020820190508181036000830152612f158184612ec2565b905092915050565b6000819050919050565b612f3081612f1d565b8114612f3b57600080fd5b50565b600081359050612f4d81612f27565b92915050565b600060208284031215612f6957612f68612d9d565b5b6000612f7784828501612f3e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fab82612f80565b9050919050565b612fbb81612fa0565b82525050565b6000602082019050612fd66000830184612fb2565b92915050565b612fe581612fa0565b8114612ff057600080fd5b50565b60008135905061300281612fdc565b92915050565b6000806040838503121561301f5761301e612d9d565b5b600061302d85828601612ff3565b925050602061303e85828601612f3e565b9150509250929050565b61305181612f1d565b82525050565b600060208201905061306c6000830184613048565b92915050565b60008060006060848603121561308b5761308a612d9d565b5b600061309986828701612ff3565b93505060206130aa86828701612ff3565b92505060406130bb86828701612f3e565b9150509250925092565b6000602082840312156130db576130da612d9d565b5b60006130e984828501612ff3565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61312f82612eb1565b810181811067ffffffffffffffff8211171561314e5761314d6130f7565b5b80604052505050565b6000613161612d93565b905061316d8282613126565b919050565b600067ffffffffffffffff82111561318d5761318c6130f7565b5b602082029050602081019050919050565b600080fd5b60006131b66131b184613172565b613157565b905080838252602082019050602084028301858111156131d9576131d861319e565b5b835b8181101561320257806131ee8882612ff3565b8452602084019350506020810190506131db565b5050509392505050565b600082601f830112613221576132206130f2565b5b81356132318482602086016131a3565b91505092915050565b6000602082840312156132505761324f612d9d565b5b600082013567ffffffffffffffff81111561326e5761326d612da2565b5b61327a8482850161320c565b91505092915050565b600080fd5b600067ffffffffffffffff8211156132a3576132a26130f7565b5b6132ac82612eb1565b9050602081019050919050565b82818337600083830152505050565b60006132db6132d684613288565b613157565b9050828152602081018484840111156132f7576132f6613283565b5b6133028482856132b9565b509392505050565b600082601f83011261331f5761331e6130f2565b5b813561332f8482602086016132c8565b91505092915050565b60006020828403121561334e5761334d612d9d565b5b600082013567ffffffffffffffff81111561336c5761336b612da2565b5b6133788482850161330a565b91505092915050565b61338a81612fa0565b82525050565b600067ffffffffffffffff82169050919050565b6133ad81613390565b82525050565b6133bc81612e2c565b82525050565b6060820160008201516133d86000850182613381565b5060208201516133eb60208501826133a4565b5060408201516133fe60408501826133b3565b50505050565b600060608201905061341960008301846133c2565b92915050565b61342881612e2c565b811461343357600080fd5b50565b6000813590506134458161341f565b92915050565b6000806040838503121561346257613461612d9d565b5b600061347085828601612ff3565b925050602061348185828601613436565b9150509250929050565b600067ffffffffffffffff8211156134a6576134a56130f7565b5b6134af82612eb1565b9050602081019050919050565b60006134cf6134ca8461348b565b613157565b9050828152602081018484840111156134eb576134ea613283565b5b6134f68482856132b9565b509392505050565b600082601f830112613513576135126130f2565b5b81356135238482602086016134bc565b91505092915050565b6000806000806080858703121561354657613545612d9d565b5b600061355487828801612ff3565b945050602061356587828801612ff3565b935050604061357687828801612f3e565b925050606085013567ffffffffffffffff81111561359757613596612da2565b5b6135a3878288016134fe565b91505092959194509250565b600080604083850312156135c6576135c5612d9d565b5b60006135d485828601612ff3565b92505060206135e585828601612ff3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061363657607f821691505b602082108103613649576136486135ef565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613685602083612e6d565b91506136908261364f565b602082019050919050565b600060208201905081810360008301526136b481613678565b9050919050565b7f4572726f723a204e6577206d617820737570706c792063616e7420626520686960008201527f67686572207468616e206f726967696e616c206d61782e000000000000000000602082015250565b6000613717603783612e6d565b9150613722826136bb565b604082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378782612f1d565b915061379283612f1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c7576137c661374d565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b6000613808601383612e6d565b9150613813826137d2565b602082019050919050565b60006020820190508181036000830152613837816137fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061387882612f1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138aa576138a961374d565b5b600182019050919050565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b6000613911602283612e6d565b915061391c826138b5565b604082019050919050565b6000602082019050818103600083015261394081613904565b9050919050565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b600061397d601383612e6d565b915061398882613947565b602082019050919050565b600060208201905081810360008301526139ac81613970565b9050919050565b60006139be82612f1d565b91506139c983612f1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0257613a0161374d565b5b828202905092915050565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b6000613a43601783612e6d565b9150613a4e82613a0d565b602082019050919050565b60006020820190508181036000830152613a7281613a36565b9050919050565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b6000613aaf601c83612e6d565b9150613aba82613a79565b602082019050919050565b60006020820190508181036000830152613ade81613aa2565b9050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b6000613b1b601c83612e6d565b9150613b2682613ae5565b602082019050919050565b60006020820190508181036000830152613b4a81613b0e565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613bad602c83612e6d565b9150613bb882613b51565b604082019050919050565b60006020820190508181036000830152613bdc81613ba0565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c108161361e565b613c1a8186613be3565b94506001821660008114613c355760018114613c4657613c79565b60ff19831686528186019350613c79565b613c4f85613bee565b60005b83811015613c7157815481890152600182019150602081019050613c52565b838801955050505b50505092915050565b6000613c8d82612e62565b613c978185613be3565b9350613ca7818560208601612e7e565b80840191505092915050565b6000613cbf8286613c03565b9150613ccb8285613c82565b9150613cd78284613c03565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d40602683612e6d565b9150613d4b82613ce4565b604082019050919050565b60006020820190508181036000830152613d6f81613d33565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d9d82613d76565b613da78185613d81565b9350613db7818560208601612e7e565b613dc081612eb1565b840191505092915050565b6000608082019050613de06000830187612fb2565b613ded6020830186612fb2565b613dfa6040830185613048565b8181036060830152613e0c8184613d92565b905095945050505050565b600081519050613e2681612dd3565b92915050565b600060208284031215613e4257613e41612d9d565b5b6000613e5084828501613e17565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e9382612f1d565b9150613e9e83612f1d565b925082613eae57613ead613e59565b5b828204905092915050565b6000613ec482612f1d565b9150613ecf83612f1d565b925082821015613ee257613ee161374d565b5b828203905092915050565b6000613ef882612f1d565b9150613f0383612f1d565b925082613f1357613f12613e59565b5b82820690509291505056fea2646970667358221220d8681c04bfa3cbfb124b18b797d56eb1995f85f2a0b19b867a9a9967469084ed64736f6c634300080d0033

Deployed Bytecode Sourcemap

55370:3195:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25735:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29095:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30598:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30161:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58003:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25386:277;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57703:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31455:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55679:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58223:149;;;;;;;;;;;;;:::i;:::-;;31696:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57592:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28904:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55579:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26104:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57400:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14501:94;;;;;;;;;;;;;:::i;:::-;;56393:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57901:92;;;;;;;;;;;;;:::i;:::-;;57292:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13850:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57500:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58380:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55853:530;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57179:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29264:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58106:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55720:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30874:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31952:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56866:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56650:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55757:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31224:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14750:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55538:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55417:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25735:305;25837:4;25889:25;25874:40;;;:11;:40;;;;:105;;;;25946:33;25931:48;;;:11;:48;;;;25874:105;:158;;;;25996:36;26020:11;25996:23;:36::i;:::-;25874:158;25854:178;;25735:305;;;:::o;29095:100::-;29149:13;29182:5;29175:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29095:100;:::o;30598:204::-;30666:7;30691:16;30699:7;30691;:16::i;:::-;30686:64;;30716:34;;;;;;;;;;;;;;30686:64;30770:15;:24;30786:7;30770:24;;;;;;;;;;;;;;;;;;;;;30763:31;;30598:204;;;:::o;30161:371::-;30234:13;30250:24;30266:7;30250:15;:24::i;:::-;30234:40;;30295:5;30289:11;;:2;:11;;;30285:48;;30309:24;;;;;;;;;;;;;;30285:48;30366:5;30350:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30376:37;30393:5;30400:12;:10;:12::i;:::-;30376:16;:37::i;:::-;30375:38;30350:63;30346:138;;;30437:35;;;;;;;;;;;;;;30346:138;30496:28;30505:2;30509:7;30518:5;30496:8;:28::i;:::-;30223:309;30161:371;;:::o;58003:95::-;58045:4;58069:21;58062:28;;58003:95;:::o;25386:277::-;25430:7;25639:1;25623:12;;25607:13;;:28;25606:34;25599:41;;25386:277;:::o;57703:190::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57791:4:::1;57780:7;:15;;57772:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;57878:7;57866:9;:19;;;;57703:190:::0;:::o;31455:170::-;31589:28;31599:4;31605:2;31609:7;31589:9;:28::i;:::-;31455:170;;;:::o;55679:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58223:149::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58273:13:::1;58289:21;58273:37;;58329:7;:5;:7::i;:::-;58321:25;;:35;58347:8;58321:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58262:110;58223:149::o:0;31696:185::-;31834:39;31851:4;31857:2;31861:7;31834:39;;;;;;;;;;;;:16;:39::i;:::-;31696:185;;;:::o;57592:103::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57677:10:::1;57665:9;:22;;;;57592:103:::0;:::o;28904:124::-;28968:7;28995:20;29007:7;28995:11;:20::i;:::-;:25;;;28988:32;;28904:124;;;:::o;55579:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26104:206::-;26168:7;26209:1;26192:19;;:5;:19;;;26188:60;;26220:28;;;;;;;;;;;;;;26188:60;26274:12;:19;26287:5;26274:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26266:36;;26259:43;;26104:206;;;:::o;57400:92::-;57444:13;57477:7;57470:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57400:92;:::o;14501:94::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14566:21:::1;14584:1;14566:9;:21::i;:::-;14501:94::o:0;56393:252::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56511:9:::1;;56492:8;:15;56476:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;56468:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56559:6;56555:80;56575:8;:15;56571:1;:19;56555:80;;;56610:25;56620:8;56629:1;56620:11;;;;;;;;:::i;:::-;;;;;;;;56633:1;56610:9;:25::i;:::-;56592:3;;;;;:::i;:::-;;;;56555:80;;;;56393:252:::0;:::o;57901:92::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57971:14:::1;;;;;;;;;;;57970:15;57953:14;;:32;;;;;;;;;;;;;;;;;;57901:92::o:0;57292:100::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57379:5:::1;57366:10;:18;;;;;;;;;;;;:::i;:::-;;57292:100:::0;:::o;13850:87::-;13896:7;13923:6;;;;;;;;;;;13916:13;;13850:87;:::o;57500:86::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57572:6:::1;57564:5;:14;;;;57500:86:::0;:::o;58380:147::-;58461:21;;:::i;:::-;58501:20;58513:7;58501:11;:20::i;:::-;58494:27;;58380:147;;;:::o;55853:530::-;55935:1;55923:9;:13;:39;;;;;55953:9;;55940;:22;;55923:39;55915:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;56049:9;;56036;56020:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;56012:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56122:9;56114:5;;:17;;;;:::i;:::-;56101:9;:30;56093:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56220:9;;56207;56178:26;56193:10;56178:14;:26::i;:::-;:38;;;;:::i;:::-;:51;;56170:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;56281:14;;;;;;;;;;;56273:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56341:32;56351:10;56363:9;56341;:32::i;:::-;55853:530;:::o;57179:107::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57267:11:::1;57257:7;:21;;;;;;;;;;;;:::i;:::-;;57179:107:::0;:::o;29264:104::-;29320:13;29353:7;29346:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29264:104;:::o;58106:109::-;58166:7;58189:20;58203:5;58189:13;:20::i;:::-;58182:27;;58106:109;;;:::o;55720:30::-;;;;:::o;30874:279::-;30977:12;:10;:12::i;:::-;30965:24;;:8;:24;;;30961:54;;30998:17;;;;;;;;;;;;;;30961:54;31073:8;31028:18;:32;31047:12;:10;:12::i;:::-;31028:32;;;;;;;;;;;;;;;:42;31061:8;31028:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31126:8;31097:48;;31112:12;:10;:12::i;:::-;31097:48;;;31136:8;31097:48;;;;;;:::i;:::-;;;;;;;;30874:279;;:::o;31952:342::-;32119:28;32129:4;32135:2;32139:7;32119:9;:28::i;:::-;32163:48;32186:4;32192:2;32196:7;32205:5;32163:22;:48::i;:::-;32158:129;;32235:40;;;;;;;;;;;;;;32158:129;31952:342;;;;:::o;56866:305::-;56940:13;56988:17;56996:8;56988:7;:17::i;:::-;56966:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57121:7;57130:19;:8;:17;:19::i;:::-;57151:10;57104:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57090:73;;56866:305;;;:::o;56650:206::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56776:9:::1;;56768:4;56752:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;56744:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56824:24;56834:7;56843:4;56824:9;:24::i;:::-;56650:206:::0;;:::o;55757:31::-;;;;:::o;31224:164::-;31321:4;31345:18;:25;31364:5;31345:25;;;;;;;;;;;;;;;:35;31371:8;31345:35;;;;;;;;;;;;;;;;;;;;;;;;;31338:42;;31224:164;;;;:::o;14750:192::-;14081:12;:10;:12::i;:::-;14070:23;;:7;:5;:7::i;:::-;:23;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14859:1:::1;14839:22;;:8;:22;;::::0;14831:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14915:19;14925:8;14915:9;:19::i;:::-;14750:192:::0;:::o;55538:34::-;;;;;;;;;;;;;:::o;55417:28::-;;;;:::o;15855:157::-;15940:4;15979:25;15964:40;;;:11;:40;;;;15957:47;;15855:157;;;:::o;32549:144::-;32606:4;32640:13;;32630:7;:23;:55;;;;;32658:11;:20;32670:7;32658:20;;;;;;;;;;;:27;;;;;;;;;;;;32657:28;32630:55;32623:62;;32549:144;;;:::o;990:98::-;1043:7;1070:10;1063:17;;990:98;:::o;39755:196::-;39897:2;39870:15;:24;39886:7;39870:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39935:7;39931:2;39915:28;;39924:5;39915:28;;;;;;;;;;;;39755:196;;;:::o;35256:2112::-;35371:35;35409:20;35421:7;35409:11;:20::i;:::-;35371:58;;35442:22;35484:13;:18;;;35468:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;35519:50;35536:13;:18;;;35556:12;:10;:12::i;:::-;35519:16;:50::i;:::-;35468:101;:154;;;;35610:12;:10;:12::i;:::-;35586:36;;:20;35598:7;35586:11;:20::i;:::-;:36;;;35468:154;35442:181;;35641:17;35636:66;;35667:35;;;;;;;;;;;;;;35636:66;35739:4;35717:26;;:13;:18;;;:26;;;35713:67;;35752:28;;;;;;;;;;;;;;35713:67;35809:1;35795:16;;:2;:16;;;35791:52;;35820:23;;;;;;;;;;;;;;35791:52;35856:43;35878:4;35884:2;35888:7;35897:1;35856:21;:43::i;:::-;35964:49;35981:1;35985:7;35994:13;:18;;;35964:8;:49::i;:::-;36339:1;36309:12;:18;36322:4;36309:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36383:1;36355:12;:16;36368:2;36355:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36429:2;36401:11;:20;36413:7;36401:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36491:15;36446:11;:20;36458:7;36446:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;36759:19;36791:1;36781:7;:11;36759:33;;36852:1;36811:43;;:11;:24;36823:11;36811:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36807:445;;37036:13;;37022:11;:27;37018:219;;;37106:13;:18;;;37074:11;:24;37086:11;37074:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37189:13;:28;;;37147:11;:24;37159:11;37147:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37018:219;36807:445;36284:979;37299:7;37295:2;37280:27;;37289:4;37280:27;;;;;;;;;;;;37318:42;37339:4;37345:2;37349:7;37358:1;37318:20;:42::i;:::-;35360:2008;;35256:2112;;;:::o;27759:1083::-;27820:21;;:::i;:::-;27854:12;27869:7;27854:22;;27925:13;;27918:4;:20;27914:861;;;27959:31;27993:11;:17;28005:4;27993:17;;;;;;;;;;;27959:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28034:9;:16;;;28029:731;;28105:1;28079:28;;:9;:14;;;:28;;;28075:101;;28143:9;28136:16;;;;;;28075:101;28480:261;28487:4;28480:261;;;28520:6;;;;;;;;28565:11;:17;28577:4;28565:17;;;;;;;;;;;28553:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28639:1;28613:28;;:9;:14;;;:28;;;28609:109;;28681:9;28674:16;;;;;;28609:109;28480:261;;;28029:731;27940:835;27914:861;28803:31;;;;;;;;;;;;;;27759:1083;;;;:::o;14950:173::-;15006:16;15025:6;;;;;;;;;;;15006:25;;15051:8;15042:6;;:17;;;;;;;;;;;;;;;;;;15106:8;15075:40;;15096:8;15075:40;;;;;;;;;;;;14995:128;14950:173;:::o;32701:104::-;32770:27;32780:2;32784:8;32770:27;;;;;;;;;;;;:9;:27::i;:::-;32701:104;;:::o;26392:207::-;26453:7;26494:1;26477:19;;:5;:19;;;26473:59;;26505:27;;;;;;;;;;;;;;26473:59;26558:12;:19;26571:5;26558:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;26550:41;;26543:48;;26392:207;;;:::o;40516:790::-;40671:4;40692:15;:2;:13;;;:15::i;:::-;40688:611;;;40744:2;40728:36;;;40765:12;:10;:12::i;:::-;40779:4;40785:7;40794:5;40728:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40724:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40991:1;40974:6;:13;:18;40970:259;;41024:40;;;;;;;;;;;;;;40970:259;41179:6;41173:13;41164:6;41160:2;41156:15;41149:38;40724:520;40861:45;;;40851:55;;;:6;:55;;;;40844:62;;;;;40688:611;41283:4;41276:11;;40516:790;;;;;;;:::o;1455:723::-;1511:13;1741:1;1732:5;:10;1728:53;;1759:10;;;;;;;;;;;;;;;;;;;;;1728:53;1791:12;1806:5;1791:20;;1822:14;1847:78;1862:1;1854:4;:9;1847:78;;1880:8;;;;;:::i;:::-;;;;1911:2;1903:10;;;;;:::i;:::-;;;1847:78;;;1935:19;1967:6;1957:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1935:39;;1985:154;2001:1;1992:5;:10;1985:154;;2029:1;2019:11;;;;;:::i;:::-;;;2096:2;2088:5;:10;;;;:::i;:::-;2075:2;:24;;;;:::i;:::-;2062:39;;2045:6;2052;2045:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2125:2;2116:11;;;;;:::i;:::-;;;1985:154;;;2163:6;2149:21;;;;;1455:723;;;;:::o;41954:159::-;;;;;:::o;42772:158::-;;;;;:::o;33168:163::-;33291:32;33297:2;33301:8;33311:5;33318:4;33291:5;:32::i;:::-;33168:163;;;:::o;3920:387::-;3980:4;4188:12;4255:7;4243:20;4235:28;;4298:1;4291:4;:8;4284:15;;;3920:387;;;:::o;33590:1412::-;33729:20;33752:13;;33729:36;;33794:1;33780:16;;:2;:16;;;33776:48;;33805:19;;;;;;;;;;;;;;33776:48;33851:1;33839:8;:13;33835:44;;33861:18;;;;;;;;;;;;;;33835:44;33892:61;33922:1;33926:2;33930:12;33944:8;33892:21;:61::i;:::-;34265:8;34230:12;:16;34243:2;34230:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34329:8;34289:12;:16;34302:2;34289:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34388:2;34355:11;:25;34367:12;34355:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34455:15;34405:11;:25;34417:12;34405:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34488:20;34511:12;34488:35;;34545:9;34540:328;34560:8;34556:1;:12;34540:328;;;34624:12;34620:2;34599:38;;34616:1;34599:38;;;;;;;;;;;;34660:4;:68;;;;;34669:59;34700:1;34704:2;34708:12;34722:5;34669:22;:59::i;:::-;34668:60;34660:68;34656:164;;;34760:40;;;;;;;;;;;;;;34656:164;34838:14;;;;;;;34570:3;;;;;;;34540:328;;;;34900:12;34884:13;:28;;;;34205:719;34934:60;34963:1;34967:2;34971:12;34985:8;34934:20;:60::i;:::-;33718:1284;33590:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:180;6421:77;6418:1;6411:88;6518:4;6515:1;6508:15;6542:4;6539:1;6532:15;6559:281;6642:27;6664:4;6642:27;:::i;:::-;6634:6;6630:40;6772:6;6760:10;6757:22;6736:18;6724:10;6721:34;6718:62;6715:88;;;6783:18;;:::i;:::-;6715:88;6823:10;6819:2;6812:22;6602:238;6559:281;;:::o;6846:129::-;6880:6;6907:20;;:::i;:::-;6897:30;;6936:33;6964:4;6956:6;6936:33;:::i;:::-;6846:129;;;:::o;6981:311::-;7058:4;7148:18;7140:6;7137:30;7134:56;;;7170:18;;:::i;:::-;7134:56;7220:4;7212:6;7208:17;7200:25;;7280:4;7274;7270:15;7262:23;;6981:311;;;:::o;7298:117::-;7407:1;7404;7397:12;7438:710;7534:5;7559:81;7575:64;7632:6;7575:64;:::i;:::-;7559:81;:::i;:::-;7550:90;;7660:5;7689:6;7682:5;7675:21;7723:4;7716:5;7712:16;7705:23;;7776:4;7768:6;7764:17;7756:6;7752:30;7805:3;7797:6;7794:15;7791:122;;;7824:79;;:::i;:::-;7791:122;7939:6;7922:220;7956:6;7951:3;7948:15;7922:220;;;8031:3;8060:37;8093:3;8081:10;8060:37;:::i;:::-;8055:3;8048:50;8127:4;8122:3;8118:14;8111:21;;7998:144;7982:4;7977:3;7973:14;7966:21;;7922:220;;;7926:21;7540:608;;7438:710;;;;;:::o;8171:370::-;8242:5;8291:3;8284:4;8276:6;8272:17;8268:27;8258:122;;8299:79;;:::i;:::-;8258:122;8416:6;8403:20;8441:94;8531:3;8523:6;8516:4;8508:6;8504:17;8441:94;:::i;:::-;8432:103;;8248:293;8171:370;;;;:::o;8547:539::-;8631:6;8680:2;8668:9;8659:7;8655:23;8651:32;8648:119;;;8686:79;;:::i;:::-;8648:119;8834:1;8823:9;8819:17;8806:31;8864:18;8856:6;8853:30;8850:117;;;8886:79;;:::i;:::-;8850:117;8991:78;9061:7;9052:6;9041:9;9037:22;8991:78;:::i;:::-;8981:88;;8777:302;8547:539;;;;:::o;9092:117::-;9201:1;9198;9191:12;9215:308;9277:4;9367:18;9359:6;9356:30;9353:56;;;9389:18;;:::i;:::-;9353:56;9427:29;9449:6;9427:29;:::i;:::-;9419:37;;9511:4;9505;9501:15;9493:23;;9215:308;;;:::o;9529:154::-;9613:6;9608:3;9603;9590:30;9675:1;9666:6;9661:3;9657:16;9650:27;9529:154;;;:::o;9689:412::-;9767:5;9792:66;9808:49;9850:6;9808:49;:::i;:::-;9792:66;:::i;:::-;9783:75;;9881:6;9874:5;9867:21;9919:4;9912:5;9908:16;9957:3;9948:6;9943:3;9939:16;9936:25;9933:112;;;9964:79;;:::i;:::-;9933:112;10054:41;10088:6;10083:3;10078;10054:41;:::i;:::-;9773:328;9689:412;;;;;:::o;10121:340::-;10177:5;10226:3;10219:4;10211:6;10207:17;10203:27;10193:122;;10234:79;;:::i;:::-;10193:122;10351:6;10338:20;10376:79;10451:3;10443:6;10436:4;10428:6;10424:17;10376:79;:::i;:::-;10367:88;;10183:278;10121:340;;;;:::o;10467:509::-;10536:6;10585:2;10573:9;10564:7;10560:23;10556:32;10553:119;;;10591:79;;:::i;:::-;10553:119;10739:1;10728:9;10724:17;10711:31;10769:18;10761:6;10758:30;10755:117;;;10791:79;;:::i;:::-;10755:117;10896:63;10951:7;10942:6;10931:9;10927:22;10896:63;:::i;:::-;10886:73;;10682:287;10467:509;;;;:::o;10982:108::-;11059:24;11077:5;11059:24;:::i;:::-;11054:3;11047:37;10982:108;;:::o;11096:101::-;11132:7;11172:18;11165:5;11161:30;11150:41;;11096:101;;;:::o;11203:105::-;11278:23;11295:5;11278:23;:::i;:::-;11273:3;11266:36;11203:105;;:::o;11314:99::-;11385:21;11400:5;11385:21;:::i;:::-;11380:3;11373:34;11314:99;;:::o;11489:697::-;11648:4;11643:3;11639:14;11735:4;11728:5;11724:16;11718:23;11754:63;11811:4;11806:3;11802:14;11788:12;11754:63;:::i;:::-;11663:164;11919:4;11912:5;11908:16;11902:23;11938:61;11993:4;11988:3;11984:14;11970:12;11938:61;:::i;:::-;11837:172;12093:4;12086:5;12082:16;12076:23;12112:57;12163:4;12158:3;12154:14;12140:12;12112:57;:::i;:::-;12019:160;11617:569;11489:697;;:::o;12192:346::-;12347:4;12385:2;12374:9;12370:18;12362:26;;12398:133;12528:1;12517:9;12513:17;12504:6;12398:133;:::i;:::-;12192:346;;;;:::o;12544:116::-;12614:21;12629:5;12614:21;:::i;:::-;12607:5;12604:32;12594:60;;12650:1;12647;12640:12;12594:60;12544:116;:::o;12666:133::-;12709:5;12747:6;12734:20;12725:29;;12763:30;12787:5;12763:30;:::i;:::-;12666:133;;;;:::o;12805:468::-;12870:6;12878;12927:2;12915:9;12906:7;12902:23;12898:32;12895:119;;;12933:79;;:::i;:::-;12895:119;13053:1;13078:53;13123:7;13114:6;13103:9;13099:22;13078:53;:::i;:::-;13068:63;;13024:117;13180:2;13206:50;13248:7;13239:6;13228:9;13224:22;13206:50;:::i;:::-;13196:60;;13151:115;12805:468;;;;;:::o;13279:307::-;13340:4;13430:18;13422:6;13419:30;13416:56;;;13452:18;;:::i;:::-;13416:56;13490:29;13512:6;13490:29;:::i;:::-;13482:37;;13574:4;13568;13564:15;13556:23;;13279:307;;;:::o;13592:410::-;13669:5;13694:65;13710:48;13751:6;13710:48;:::i;:::-;13694:65;:::i;:::-;13685:74;;13782:6;13775:5;13768:21;13820:4;13813:5;13809:16;13858:3;13849:6;13844:3;13840:16;13837:25;13834:112;;;13865:79;;:::i;:::-;13834:112;13955:41;13989:6;13984:3;13979;13955:41;:::i;:::-;13675:327;13592:410;;;;;:::o;14021:338::-;14076:5;14125:3;14118:4;14110:6;14106:17;14102:27;14092:122;;14133:79;;:::i;:::-;14092:122;14250:6;14237:20;14275:78;14349:3;14341:6;14334:4;14326:6;14322:17;14275:78;:::i;:::-;14266:87;;14082:277;14021:338;;;;:::o;14365:943::-;14460:6;14468;14476;14484;14533:3;14521:9;14512:7;14508:23;14504:33;14501:120;;;14540:79;;:::i;:::-;14501:120;14660:1;14685:53;14730:7;14721:6;14710:9;14706:22;14685:53;:::i;:::-;14675:63;;14631:117;14787:2;14813:53;14858:7;14849:6;14838:9;14834:22;14813:53;:::i;:::-;14803:63;;14758:118;14915:2;14941:53;14986:7;14977:6;14966:9;14962:22;14941:53;:::i;:::-;14931:63;;14886:118;15071:2;15060:9;15056:18;15043:32;15102:18;15094:6;15091:30;15088:117;;;15124:79;;:::i;:::-;15088:117;15229:62;15283:7;15274:6;15263:9;15259:22;15229:62;:::i;:::-;15219:72;;15014:287;14365:943;;;;;;;:::o;15314:474::-;15382:6;15390;15439:2;15427:9;15418:7;15414:23;15410:32;15407:119;;;15445:79;;:::i;:::-;15407:119;15565:1;15590:53;15635:7;15626:6;15615:9;15611:22;15590:53;:::i;:::-;15580:63;;15536:117;15692:2;15718:53;15763:7;15754:6;15743:9;15739:22;15718:53;:::i;:::-;15708:63;;15663:118;15314:474;;;;;:::o;15794:180::-;15842:77;15839:1;15832:88;15939:4;15936:1;15929:15;15963:4;15960:1;15953:15;15980:320;16024:6;16061:1;16055:4;16051:12;16041:22;;16108:1;16102:4;16098:12;16129:18;16119:81;;16185:4;16177:6;16173:17;16163:27;;16119:81;16247:2;16239:6;16236:14;16216:18;16213:38;16210:84;;16266:18;;:::i;:::-;16210:84;16031:269;15980:320;;;:::o;16306:182::-;16446:34;16442:1;16434:6;16430:14;16423:58;16306:182;:::o;16494:366::-;16636:3;16657:67;16721:2;16716:3;16657:67;:::i;:::-;16650:74;;16733:93;16822:3;16733:93;:::i;:::-;16851:2;16846:3;16842:12;16835:19;;16494:366;;;:::o;16866:419::-;17032:4;17070:2;17059:9;17055:18;17047:26;;17119:9;17113:4;17109:20;17105:1;17094:9;17090:17;17083:47;17147:131;17273:4;17147:131;:::i;:::-;17139:139;;16866:419;;;:::o;17291:242::-;17431:34;17427:1;17419:6;17415:14;17408:58;17500:25;17495:2;17487:6;17483:15;17476:50;17291:242;:::o;17539:366::-;17681:3;17702:67;17766:2;17761:3;17702:67;:::i;:::-;17695:74;;17778:93;17867:3;17778:93;:::i;:::-;17896:2;17891:3;17887:12;17880:19;;17539:366;;;:::o;17911:419::-;18077:4;18115:2;18104:9;18100:18;18092:26;;18164:9;18158:4;18154:20;18150:1;18139:9;18135:17;18128:47;18192:131;18318:4;18192:131;:::i;:::-;18184:139;;17911:419;;;:::o;18336:180::-;18384:77;18381:1;18374:88;18481:4;18478:1;18471:15;18505:4;18502:1;18495:15;18522:305;18562:3;18581:20;18599:1;18581:20;:::i;:::-;18576:25;;18615:20;18633:1;18615:20;:::i;:::-;18610:25;;18769:1;18701:66;18697:74;18694:1;18691:81;18688:107;;;18775:18;;:::i;:::-;18688:107;18819:1;18816;18812:9;18805:16;;18522:305;;;;:::o;18833:169::-;18973:21;18969:1;18961:6;18957:14;18950:45;18833:169;:::o;19008:366::-;19150:3;19171:67;19235:2;19230:3;19171:67;:::i;:::-;19164:74;;19247:93;19336:3;19247:93;:::i;:::-;19365:2;19360:3;19356:12;19349:19;;19008:366;;;:::o;19380:419::-;19546:4;19584:2;19573:9;19569:18;19561:26;;19633:9;19627:4;19623:20;19619:1;19608:9;19604:17;19597:47;19661:131;19787:4;19661:131;:::i;:::-;19653:139;;19380:419;;;:::o;19805:180::-;19853:77;19850:1;19843:88;19950:4;19947:1;19940:15;19974:4;19971:1;19964:15;19991:233;20030:3;20053:24;20071:5;20053:24;:::i;:::-;20044:33;;20099:66;20092:5;20089:77;20086:103;;20169:18;;:::i;:::-;20086:103;20216:1;20209:5;20205:13;20198:20;;19991:233;;;:::o;20230:221::-;20370:34;20366:1;20358:6;20354:14;20347:58;20439:4;20434:2;20426:6;20422:15;20415:29;20230:221;:::o;20457:366::-;20599:3;20620:67;20684:2;20679:3;20620:67;:::i;:::-;20613:74;;20696:93;20785:3;20696:93;:::i;:::-;20814:2;20809:3;20805:12;20798:19;;20457:366;;;:::o;20829:419::-;20995:4;21033:2;21022:9;21018:18;21010:26;;21082:9;21076:4;21072:20;21068:1;21057:9;21053:17;21046:47;21110:131;21236:4;21110:131;:::i;:::-;21102:139;;20829:419;;;:::o;21254:169::-;21394:21;21390:1;21382:6;21378:14;21371:45;21254:169;:::o;21429:366::-;21571:3;21592:67;21656:2;21651:3;21592:67;:::i;:::-;21585:74;;21668:93;21757:3;21668:93;:::i;:::-;21786:2;21781:3;21777:12;21770:19;;21429:366;;;:::o;21801:419::-;21967:4;22005:2;21994:9;21990:18;21982:26;;22054:9;22048:4;22044:20;22040:1;22029:9;22025:17;22018:47;22082:131;22208:4;22082:131;:::i;:::-;22074:139;;21801:419;;;:::o;22226:348::-;22266:7;22289:20;22307:1;22289:20;:::i;:::-;22284:25;;22323:20;22341:1;22323:20;:::i;:::-;22318:25;;22511:1;22443:66;22439:74;22436:1;22433:81;22428:1;22421:9;22414:17;22410:105;22407:131;;;22518:18;;:::i;:::-;22407:131;22566:1;22563;22559:9;22548:20;;22226:348;;;;:::o;22580:173::-;22720:25;22716:1;22708:6;22704:14;22697:49;22580:173;:::o;22759:366::-;22901:3;22922:67;22986:2;22981:3;22922:67;:::i;:::-;22915:74;;22998:93;23087:3;22998:93;:::i;:::-;23116:2;23111:3;23107:12;23100:19;;22759:366;;;:::o;23131:419::-;23297:4;23335:2;23324:9;23320:18;23312:26;;23384:9;23378:4;23374:20;23370:1;23359:9;23355:17;23348:47;23412:131;23538:4;23412:131;:::i;:::-;23404:139;;23131:419;;;:::o;23556:178::-;23696:30;23692:1;23684:6;23680:14;23673:54;23556:178;:::o;23740:366::-;23882:3;23903:67;23967:2;23962:3;23903:67;:::i;:::-;23896:74;;23979:93;24068:3;23979:93;:::i;:::-;24097:2;24092:3;24088:12;24081:19;;23740:366;;;:::o;24112:419::-;24278:4;24316:2;24305:9;24301:18;24293:26;;24365:9;24359:4;24355:20;24351:1;24340:9;24336:17;24329:47;24393:131;24519:4;24393:131;:::i;:::-;24385:139;;24112:419;;;:::o;24537:178::-;24677:30;24673:1;24665:6;24661:14;24654:54;24537:178;:::o;24721:366::-;24863:3;24884:67;24948:2;24943:3;24884:67;:::i;:::-;24877:74;;24960:93;25049:3;24960:93;:::i;:::-;25078:2;25073:3;25069:12;25062:19;;24721:366;;;:::o;25093:419::-;25259:4;25297:2;25286:9;25282:18;25274:26;;25346:9;25340:4;25336:20;25332:1;25321:9;25317:17;25310:47;25374:131;25500:4;25374:131;:::i;:::-;25366:139;;25093:419;;;:::o;25518:231::-;25658:34;25654:1;25646:6;25642:14;25635:58;25727:14;25722:2;25714:6;25710:15;25703:39;25518:231;:::o;25755:366::-;25897:3;25918:67;25982:2;25977:3;25918:67;:::i;:::-;25911:74;;25994:93;26083:3;25994:93;:::i;:::-;26112:2;26107:3;26103:12;26096:19;;25755:366;;;:::o;26127:419::-;26293:4;26331:2;26320:9;26316:18;26308:26;;26380:9;26374:4;26370:20;26366:1;26355:9;26351:17;26344:47;26408:131;26534:4;26408:131;:::i;:::-;26400:139;;26127:419;;;:::o;26552:148::-;26654:11;26691:3;26676:18;;26552:148;;;;:::o;26706:141::-;26755:4;26778:3;26770:11;;26801:3;26798:1;26791:14;26835:4;26832:1;26822:18;26814:26;;26706:141;;;:::o;26877:845::-;26980:3;27017:5;27011:12;27046:36;27072:9;27046:36;:::i;:::-;27098:89;27180:6;27175:3;27098:89;:::i;:::-;27091:96;;27218:1;27207:9;27203:17;27234:1;27229:137;;;;27380:1;27375:341;;;;27196:520;;27229:137;27313:4;27309:9;27298;27294:25;27289:3;27282:38;27349:6;27344:3;27340:16;27333:23;;27229:137;;27375:341;27442:38;27474:5;27442:38;:::i;:::-;27502:1;27516:154;27530:6;27527:1;27524:13;27516:154;;;27604:7;27598:14;27594:1;27589:3;27585:11;27578:35;27654:1;27645:7;27641:15;27630:26;;27552:4;27549:1;27545:12;27540:17;;27516:154;;;27699:6;27694:3;27690:16;27683:23;;27382:334;;27196:520;;26984:738;;26877:845;;;;:::o;27728:377::-;27834:3;27862:39;27895:5;27862:39;:::i;:::-;27917:89;27999:6;27994:3;27917:89;:::i;:::-;27910:96;;28015:52;28060:6;28055:3;28048:4;28041:5;28037:16;28015:52;:::i;:::-;28092:6;28087:3;28083:16;28076:23;;27838:267;27728:377;;;;:::o;28111:583::-;28333:3;28355:92;28443:3;28434:6;28355:92;:::i;:::-;28348:99;;28464:95;28555:3;28546:6;28464:95;:::i;:::-;28457:102;;28576:92;28664:3;28655:6;28576:92;:::i;:::-;28569:99;;28685:3;28678:10;;28111:583;;;;;;:::o;28700:225::-;28840:34;28836:1;28828:6;28824:14;28817:58;28909:8;28904:2;28896:6;28892:15;28885:33;28700:225;:::o;28931:366::-;29073:3;29094:67;29158:2;29153:3;29094:67;:::i;:::-;29087:74;;29170:93;29259:3;29170:93;:::i;:::-;29288:2;29283:3;29279:12;29272:19;;28931:366;;;:::o;29303:419::-;29469:4;29507:2;29496:9;29492:18;29484:26;;29556:9;29550:4;29546:20;29542:1;29531:9;29527:17;29520:47;29584:131;29710:4;29584:131;:::i;:::-;29576:139;;29303:419;;;:::o;29728:98::-;29779:6;29813:5;29807:12;29797:22;;29728:98;;;:::o;29832:168::-;29915:11;29949:6;29944:3;29937:19;29989:4;29984:3;29980:14;29965:29;;29832:168;;;;:::o;30006:360::-;30092:3;30120:38;30152:5;30120:38;:::i;:::-;30174:70;30237:6;30232:3;30174:70;:::i;:::-;30167:77;;30253:52;30298:6;30293:3;30286:4;30279:5;30275:16;30253:52;:::i;:::-;30330:29;30352:6;30330:29;:::i;:::-;30325:3;30321:39;30314:46;;30096:270;30006:360;;;;:::o;30372:640::-;30567:4;30605:3;30594:9;30590:19;30582:27;;30619:71;30687:1;30676:9;30672:17;30663:6;30619:71;:::i;:::-;30700:72;30768:2;30757:9;30753:18;30744:6;30700:72;:::i;:::-;30782;30850:2;30839:9;30835:18;30826:6;30782:72;:::i;:::-;30901:9;30895:4;30891:20;30886:2;30875:9;30871:18;30864:48;30929:76;31000:4;30991:6;30929:76;:::i;:::-;30921:84;;30372:640;;;;;;;:::o;31018:141::-;31074:5;31105:6;31099:13;31090:22;;31121:32;31147:5;31121:32;:::i;:::-;31018:141;;;;:::o;31165:349::-;31234:6;31283:2;31271:9;31262:7;31258:23;31254:32;31251:119;;;31289:79;;:::i;:::-;31251:119;31409:1;31434:63;31489:7;31480:6;31469:9;31465:22;31434:63;:::i;:::-;31424:73;;31380:127;31165:349;;;;:::o;31520:180::-;31568:77;31565:1;31558:88;31665:4;31662:1;31655:15;31689:4;31686:1;31679:15;31706:185;31746:1;31763:20;31781:1;31763:20;:::i;:::-;31758:25;;31797:20;31815:1;31797:20;:::i;:::-;31792:25;;31836:1;31826:35;;31841:18;;:::i;:::-;31826:35;31883:1;31880;31876:9;31871:14;;31706:185;;;;:::o;31897:191::-;31937:4;31957:20;31975:1;31957:20;:::i;:::-;31952:25;;31991:20;32009:1;31991:20;:::i;:::-;31986:25;;32030:1;32027;32024:8;32021:34;;;32035:18;;:::i;:::-;32021:34;32080:1;32077;32073:9;32065:17;;31897:191;;;;:::o;32094:176::-;32126:1;32143:20;32161:1;32143:20;:::i;:::-;32138:25;;32177:20;32195:1;32177:20;:::i;:::-;32172:25;;32216:1;32206:35;;32221:18;;:::i;:::-;32206:35;32262:1;32259;32255:9;32250:14;;32094:176;;;;:::o

Swarm Source

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

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