ETH Price: $3,392.80 (-1.26%)
Gas: 2 Gwei

Token

Bubblegum Kids (KIDS)
 

Overview

Max Total Supply

10,000 KIDS

Holders

3,218

Market

Volume (24H)

0.0245 ETH

Min Price (24H)

$7.12 @ 0.002100 ETH

Max Price (24H)

$50.89 @ 0.015000 ETH
Balance
2 KIDS
0x94bFC1c09b45F0EE90f08faeFdA15c4a3890f9b8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BGP - https://opensea.io/collection/bubblegumpuppies A collection of 10,000 Unique randomly generated Bubblegum Kids! Merch Drops, Community Comic, Giveaways and much more! Come Join the BGK Fam!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BubblegumKids

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-29
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

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



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


// File: BubblegumKids.sol
pragma solidity ^0.8.0;


contract BubblegumKids is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    // Sale
    uint256 public constant NFT_SUPPLY = 10000;
    uint public constant MAX_PURCHASABLE = 10;
    uint256 public constant MINT_PRICE = 60000000000000000; // 0.06 ETH

    // Dates
    uint256 public constant PRESALE_START_TIME = 1632931200; // 12pm EST September 29th 2021
    uint256 public constant SALE_START_TIME = 1633021200; // 1pm EST September 30th 2021
    uint256 public constant REVEAL_TIME = 1633287600; // 3pm EST October 3rd 2021

    // Giveaway winner token indexes
    uint public COOL_CAT_GIVEAWAY_WINNER_INDEX;
    uint public LAZY_LION_GIVEWAY_WINNER_INDEX;
    uint public BORED_APE_GIVEAWAY_WINNER_INDEX;

    // Team can emergency start/pause sale
    bool public saleStarted = true;

    // Base URI
    string private _baseURIextended;

    // Reveal variables
    uint256 public startingIndexBlock;
    uint256 public offset;

    mapping(address => bool) public whitelistedAddresses;

    constructor() ERC721("Bubblegum Kids", "KIDS") {
    }

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

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        string memory baseURI = _baseURI();

        if (offset == 0) {
            return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, "")) : "";
        } else {
            uint256 bubblegumKidId = tokenId.add(offset) % NFT_SUPPLY;
            return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, bubblegumKidId.toString())) : "";
        }
    }

    function presaleMint(uint256 amountToMint) public payable {
        require(whitelistedAddresses[msg.sender], "You must be on the whitelist to mint the presale.");
        require(balanceOf(msg.sender).add(amountToMint) <= 3, "You can only mint 3 before the sale begins");
        require(amountToMint > 0, "Minimum mint is 1 Bubblegum Kid.");
        require(amountToMint <= 3, "You can only mint up to 3 Bubblegum Kids during the presale.");
        require(block.timestamp >= PRESALE_START_TIME, "Presale has not started.");
        require(block.timestamp < SALE_START_TIME, "Presale has ended.");

        for (uint256 i = 0; i < amountToMint; i++) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
    }

   function mint(uint256 amountToMint) public payable {
        require(saleStarted == true, "Sale is not active.");
        require(block.timestamp >= SALE_START_TIME, "Sale has not started.");
        require(totalSupply() < NFT_SUPPLY, "All Bubblegum Kids have been minted.");
        require(amountToMint > 0, "Minimum mint is 1 Bubblegum Kid.");
        require(amountToMint <= MAX_PURCHASABLE, "Maximum mint is 20 Bubblegum Kids.");
        require(totalSupply() + amountToMint <= NFT_SUPPLY, "The amount of Bubblegum Kids you are trying to mint exceeds the max supply.");
        require(MINT_PRICE.mul(amountToMint) == msg.value, "Incorrect Ether value.");

        for (uint256 i = 0; i < amountToMint; i++) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }

        // Choose Lazy Lion winner at 25% of sale
        if (totalSupply() == 2500) {
            LAZY_LION_GIVEWAY_WINNER_INDEX = chooseLazyLionNftOwnerIndex();
        }
        // Choose Cool Cat winner at 50% of sale
        if (totalSupply() == 5000) {
            COOL_CAT_GIVEAWAY_WINNER_INDEX = chooseCoolCatNftOwnerIndex();
        }
        // Choose BAYC winner at 100% of sale
        if (totalSupply() == 10000) {
            BORED_APE_GIVEAWAY_WINNER_INDEX = chooseBoredApeNftOwnerIndex();
        }

        if (startingIndexBlock == 0 && (totalSupply() == NFT_SUPPLY || block.timestamp >= REVEAL_TIME)) {
            startingIndexBlock = block.number;
        }
   }

   function chooseLazyLionNftOwnerIndex() internal view returns (uint) {
        uint lazyLionHash = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        return lazyLionHash % 2500;
   }

   function chooseCoolCatNftOwnerIndex() internal view returns (uint) {
        uint coolCatHash = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        return coolCatHash % 5000;
   }

   function chooseBoredApeNftOwnerIndex() internal view returns (uint) {
        uint boredApeHash = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        return boredApeHash % 10000;
   }

   function reveal() public {
        require(offset == 0, "Offset is already set.");
        require(startingIndexBlock != 0, "Starting index block is required.");
        require(block.timestamp >= REVEAL_TIME, "Too early to reveal.");
        
        offset = uint(blockhash(startingIndexBlock)) % NFT_SUPPLY;
        
        if (block.number.sub(startingIndexBlock) > 255) {
            offset = uint(blockhash(block.number - 1)) % NFT_SUPPLY;
        }
        
        if (offset == 0) {
            offset = offset.add(1);
        }
   }

   function batchWhitelist(address[] memory _users) public onlyOwner {
       uint size = _users.length;
     
       for(uint256 i = 0; i < size; i++){
          address user = _users[i];
          whitelistedAddresses[user] = true;
       }
    }

    function startSale() public onlyOwner {
        saleStarted = true;
    }

    function pauseSale() public onlyOwner {
        saleStarted = false;
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BORED_APE_GIVEAWAY_WINNER_INDEX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOL_CAT_GIVEAWAY_WINNER_INDEX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAZY_LION_GIVEWAY_WINNER_INDEX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"batchWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"offset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600e60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600e81526020017f427562626c6567756d204b6964730000000000000000000000000000000000008152506040518060400160405280600481526020017f4b494453000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b19291906200018c565b508060019080519060200190620000ca9291906200018c565b5050506000620000df6200018460201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002a1565b600033905090565b8280546200019a906200023c565b90600052602060002090601f016020900481019282620001be57600085556200020a565b82601f10620001d957805160ff19168380011785556200020a565b828001600101855582156200020a579182015b8281111562000209578251825591602001919060010190620001ec565b5b5090506200021991906200021d565b5090565b5b80821115620002385760008160009055506001016200021e565b5090565b600060028204905060018216806200025557607f821691505b602082108114156200026c576200026b62000272565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614db880620002b16000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063c9b298f11161006f578063c9b298f114610823578063d55565441461083f578063e36d64981461086a578063e985e9c514610895578063f2fde38b146108d25761023b565b8063b88d4fde1461073c578063c002d23d14610765578063c875188414610790578063c87b56dd146107bb578063c96fdb33146107f85761023b565b80639aa4a125116100f25780639aa4a1251461069e578063a0712d68146106c9578063a22cb465146106e5578063a475b5dd1461070e578063b66a0e5d146107255761023b565b80636352211e146105b757806370a08231146105f4578063715018a6146106315780638da5cb5b1461064857806395d89b41146106735761023b565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104e4578063533bd5ce1461052157806355367ba91461054c57806355f804b3146105635780635c474f9e1461058c5761023b565b80632f745c591461042057806339ee06611461045d5780633ccfd60b1461048657806342842e0e1461049057806344dbb571146104b95761023b565b8063119e439811610203578063119e43981461034b57806318160ddd1461037657806323b872dd146103a157806325102f27146103ca5780632d913bfb146103f55761023b565b806301ffc9a71461024057806306c933d81461027d57806306fdde03146102ba578063081812fc146102e5578063095ea7b314610322575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136cc565b6108fb565b6040516102749190614480565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906134e4565b610975565b6040516102b19190614480565b60405180910390f35b3480156102c657600080fd5b506102cf610995565b6040516102dc919061449b565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061375f565b610a27565b6040516103199190614419565b60405180910390f35b34801561032e57600080fd5b506103496004803603810190610344919061364f565b610aac565b005b34801561035757600080fd5b50610360610bc4565b60405161036d91906148bd565b60405180910390f35b34801561038257600080fd5b5061038b610bc9565b60405161039891906148bd565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613549565b610bd6565b005b3480156103d657600080fd5b506103df610c36565b6040516103ec91906148bd565b60405180910390f35b34801561040157600080fd5b5061040a610c3e565b60405161041791906148bd565b60405180910390f35b34801561042c57600080fd5b506104476004803603810190610442919061364f565b610c46565b60405161045491906148bd565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f919061368b565b610ceb565b005b61048e610e2e565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613549565b610eea565b005b3480156104c557600080fd5b506104ce610f0a565b6040516104db91906148bd565b60405180910390f35b3480156104f057600080fd5b5061050b6004803603810190610506919061375f565b610f12565b60405161051891906148bd565b60405180910390f35b34801561052d57600080fd5b50610536610fa9565b60405161054391906148bd565b60405180910390f35b34801561055857600080fd5b50610561610faf565b005b34801561056f57600080fd5b5061058a6004803603810190610585919061371e565b611048565b005b34801561059857600080fd5b506105a16110de565b6040516105ae9190614480565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061375f565b6110f1565b6040516105eb9190614419565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906134e4565b6111a3565b60405161062891906148bd565b60405180910390f35b34801561063d57600080fd5b5061064661125b565b005b34801561065457600080fd5b5061065d611398565b60405161066a9190614419565b60405180910390f35b34801561067f57600080fd5b506106886113c2565b604051610695919061449b565b60405180910390f35b3480156106aa57600080fd5b506106b3611454565b6040516106c091906148bd565b60405180910390f35b6106e360048036038101906106de919061375f565b61145a565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613613565b61174a565b005b34801561071a57600080fd5b506107236118cb565b005b34801561073157600080fd5b5061073a611a23565b005b34801561074857600080fd5b50610763600480360381019061075e9190613598565b611abc565b005b34801561077157600080fd5b5061077a611b1e565b60405161078791906148bd565b60405180910390f35b34801561079c57600080fd5b506107a5611b29565b6040516107b291906148bd565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd919061375f565b611b2f565b6040516107ef919061449b565b60405180910390f35b34801561080457600080fd5b5061080d611c08565b60405161081a91906148bd565b60405180910390f35b61083d6004803603810190610838919061375f565b611c0e565b005b34801561084b57600080fd5b50610854611e45565b60405161086191906148bd565b60405180910390f35b34801561087657600080fd5b5061087f611e4b565b60405161088c91906148bd565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b7919061350d565b611e51565b6040516108c99190614480565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f491906134e4565b611ee5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096e575061096d82612091565b5b9050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b6060600080546109a490614ba3565b80601f01602080910402602001604051908101604052809291908181526020018280546109d090614ba3565b8015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a3282612173565b610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061471d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab7826110f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f9061483d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b476121df565b73ffffffffffffffffffffffffffffffffffffffff161480610b765750610b7581610b706121df565b611e51565b5b610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac9061461d565b60405180910390fd5b610bbf83836121e7565b505050565b600a81565b6000600880549050905090565b610be7610be16121df565b826122a0565b610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d9061487d565b60405180910390fd5b610c3183838361237e565b505050565b6361548d8081565b636159fdb081565b6000610c51836111a3565b8210610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c899061451d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cf36121df565b73ffffffffffffffffffffffffffffffffffffffff16610d11611398565b73ffffffffffffffffffffffffffffffffffffffff1614610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e9061477d565b60405180910390fd5b60008151905060005b81811015610e29576000838281518110610db3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080610e2190614bd5565b915050610d70565b505050565b610e366121df565b73ffffffffffffffffffffffffffffffffffffffff16610e54611398565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061477d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ee857600080fd5b565b610f0583838360405180602001604052806000815250611abc565b505050565b636155ed1081565b6000610f1c610bc9565b8210610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f549061489d565b60405180910390fd5b60088281548110610f97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600c5481565b610fb76121df565b73ffffffffffffffffffffffffffffffffffffffff16610fd5611398565b73ffffffffffffffffffffffffffffffffffffffff161461102b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110229061477d565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b6110506121df565b73ffffffffffffffffffffffffffffffffffffffff1661106e611398565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061477d565b60405180910390fd5b80600f90805190602001906110da929190613272565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561119a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111919061467d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b9061465d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112636121df565b73ffffffffffffffffffffffffffffffffffffffff16611281611398565b73ffffffffffffffffffffffffffffffffffffffff16146112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce9061477d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113d190614ba3565b80601f01602080910402602001604051908101604052809291908181526020018280546113fd90614ba3565b801561144a5780601f1061141f5761010080835404028352916020019161144a565b820191906000526020600020905b81548152906001019060200180831161142d57829003601f168201915b5050505050905090565b61271081565b60011515600e60009054906101000a900460ff161515146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a7906147fd565b60405180910390fd5b636155ed104210156114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee906144dd565b60405180910390fd5b612710611502610bc9565b10611542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611539906144bd565b60405180910390fd5b60008111611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c9061479d565b60405180910390fd5b600a8111156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906147dd565b60405180910390fd5b612710816115d5610bc9565b6115df91906149d8565b1115611620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611617906144fd565b60405180910390fd5b3461163b8266d529ae9e8600006125da90919063ffffffff16565b1461167b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116729061469d565b60405180910390fd5b60005b818110156116b0576000611690610bc9565b905061169c33826125f0565b5080806116a890614bd5565b91505061167e565b506109c46116bc610bc9565b14156116d1576116ca61260e565b600c819055505b6113886116dc610bc9565b14156116f1576116ea612653565b600b819055505b6127106116fc610bc9565b14156117115761170a612698565b600d819055505b600060105414801561173a5750612710611729610bc9565b14806117395750636159fdb04210155b5b1561174757436010819055505b50565b6117526121df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906145bd565b60405180910390fd5b80600560006117cd6121df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187a6121df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118bf9190614480565b60405180910390a35050565b600060115414611910576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119079061481d565b60405180910390fd5b60006010541415611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d906146fd565b60405180910390fd5b636159fdb042101561199d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119949061473d565b60405180910390fd5b6127106010544060001c6119b19190614c28565b60118190555060ff6119ce601054436126dd90919063ffffffff16565b11156119f9576127106001436119e49190614ab9565b4060001c6119f29190614c28565b6011819055505b60006011541415611a2157611a1a60016011546126f390919063ffffffff16565b6011819055505b565b611a2b6121df565b73ffffffffffffffffffffffffffffffffffffffff16611a49611398565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a969061477d565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b611acd611ac76121df565b836122a0565b611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039061487d565b60405180910390fd5b611b1884848484612709565b50505050565b66d529ae9e86000081565b600b5481565b60606000611b3b612765565b905060006011541415611b8f576000815111611b665760405180602001604052806000815250611b87565b80604051602001611b7791906143cb565b6040516020818303038152906040525b915050611c03565b6000612710611ba9601154866126f390919063ffffffff16565b611bb39190614c28565b90506000825111611bd35760405180602001604052806000815250611bfe565b81611bdd826127f7565b604051602001611bee9291906143a7565b6040516020818303038152906040525b925050505b919050565b600d5481565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c919061485d565b60405180910390fd5b6003611cb782611ca9336111a3565b6126f390919063ffffffff16565b1115611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef9061463d565b60405180910390fd5b60008111611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d329061479d565b60405180910390fd5b6003811115611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d76906146bd565b60405180910390fd5b6361548d80421015611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd906145fd565b60405180910390fd5b636155ed104210611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e039061475d565b60405180910390fd5b60005b81811015611e41576000611e21610bc9565b9050611e2d33826125f0565b508080611e3990614bd5565b915050611e0f565b5050565b60115481565b60105481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eed6121df565b73ffffffffffffffffffffffffffffffffffffffff16611f0b611398565b73ffffffffffffffffffffffffffffffffffffffff1614611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f589061477d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc89061455d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061215c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061216c575061216b826129a4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661225a836110f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122ab82612173565b6122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906145dd565b60405180910390fd5b60006122f5836110f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061236457508373ffffffffffffffffffffffffffffffffffffffff1661234c84610a27565b73ffffffffffffffffffffffffffffffffffffffff16145b8061237557506123748185611e51565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661239e826110f1565b73ffffffffffffffffffffffffffffffffffffffff16146123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb906147bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b9061459d565b60405180910390fd5b61246f838383612a0e565b61247a6000826121e7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ca9190614ab9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252191906149d8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836125e89190614a5f565b905092915050565b61260a828260405180602001604052806000815250612b22565b5050565b60008044426040516020016126249291906143ed565b6040516020818303038152906040528051906020012060001c90506109c48161264d9190614c28565b91505090565b60008044426040516020016126699291906143ed565b6040516020818303038152906040528051906020012060001c9050611388816126929190614c28565b91505090565b60008044426040516020016126ae9291906143ed565b6040516020818303038152906040528051906020012060001c9050612710816126d79190614c28565b91505090565b600081836126eb9190614ab9565b905092915050565b6000818361270191906149d8565b905092915050565b61271484848461237e565b61272084848484612b7d565b61275f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127569061453d565b60405180910390fd5b50505050565b6060600f805461277490614ba3565b80601f01602080910402602001604051908101604052809291908181526020018280546127a090614ba3565b80156127ed5780601f106127c2576101008083540402835291602001916127ed565b820191906000526020600020905b8154815290600101906020018083116127d057829003601f168201915b5050505050905090565b6060600082141561283f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061299f565b600082905060005b6000821461287157808061285a90614bd5565b915050600a8261286a9190614a2e565b9150612847565b60008167ffffffffffffffff8111156128b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128e55781602001600182028036833780820191505090505b5090505b60008514612998576001826128fe9190614ab9565b9150600a8561290d9190614c28565b603061291991906149d8565b60f81b818381518110612955577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129919190614a2e565b94506128e9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a19838383612d14565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5c57612a5781612d19565b612a9b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a9a57612a998382612d62565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ade57612ad981612ecf565b612b1d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b1c57612b1b8282613012565b5b5b505050565b612b2c8383613091565b612b396000848484612b7d565b612b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6f9061453d565b60405180910390fd5b505050565b6000612b9e8473ffffffffffffffffffffffffffffffffffffffff1661325f565b15612d07578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bc76121df565b8786866040518563ffffffff1660e01b8152600401612be99493929190614434565b602060405180830381600087803b158015612c0357600080fd5b505af1925050508015612c3457506040513d601f19601f82011682018060405250810190612c3191906136f5565b60015b612cb7573d8060008114612c64576040519150601f19603f3d011682016040523d82523d6000602084013e612c69565b606091505b50600081511415612caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca69061453d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d0c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d6f846111a3565b612d799190614ab9565b9050600060076000848152602001908152602001600020549050818114612e5e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ee39190614ab9565b9050600060096000848152602001908152602001600020549050600060088381548110612f39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612f81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ff6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061301d836111a3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f8906146dd565b60405180910390fd5b61310a81612173565b1561314a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131419061457d565b60405180910390fd5b61315660008383612a0e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131a691906149d8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461327e90614ba3565b90600052602060002090601f0160209004810192826132a057600085556132e7565b82601f106132b957805160ff19168380011785556132e7565b828001600101855582156132e7579182015b828111156132e65782518255916020019190600101906132cb565b5b5090506132f491906132f8565b5090565b5b808211156133115760008160009055506001016132f9565b5090565b600061332861332384614909565b6148d8565b9050808382526020820190508285602086028201111561334757600080fd5b60005b85811015613377578161335d88826133fd565b84526020840193506020830192505060018101905061334a565b5050509392505050565b600061339461338f84614935565b6148d8565b9050828152602081018484840111156133ac57600080fd5b6133b7848285614b61565b509392505050565b60006133d26133cd84614965565b6148d8565b9050828152602081018484840111156133ea57600080fd5b6133f5848285614b61565b509392505050565b60008135905061340c81614d26565b92915050565b600082601f83011261342357600080fd5b8135613433848260208601613315565b91505092915050565b60008135905061344b81614d3d565b92915050565b60008135905061346081614d54565b92915050565b60008151905061347581614d54565b92915050565b600082601f83011261348c57600080fd5b813561349c848260208601613381565b91505092915050565b600082601f8301126134b657600080fd5b81356134c68482602086016133bf565b91505092915050565b6000813590506134de81614d6b565b92915050565b6000602082840312156134f657600080fd5b6000613504848285016133fd565b91505092915050565b6000806040838503121561352057600080fd5b600061352e858286016133fd565b925050602061353f858286016133fd565b9150509250929050565b60008060006060848603121561355e57600080fd5b600061356c868287016133fd565b935050602061357d868287016133fd565b925050604061358e868287016134cf565b9150509250925092565b600080600080608085870312156135ae57600080fd5b60006135bc878288016133fd565b94505060206135cd878288016133fd565b93505060406135de878288016134cf565b925050606085013567ffffffffffffffff8111156135fb57600080fd5b6136078782880161347b565b91505092959194509250565b6000806040838503121561362657600080fd5b6000613634858286016133fd565b92505060206136458582860161343c565b9150509250929050565b6000806040838503121561366257600080fd5b6000613670858286016133fd565b9250506020613681858286016134cf565b9150509250929050565b60006020828403121561369d57600080fd5b600082013567ffffffffffffffff8111156136b757600080fd5b6136c384828501613412565b91505092915050565b6000602082840312156136de57600080fd5b60006136ec84828501613451565b91505092915050565b60006020828403121561370757600080fd5b600061371584828501613466565b91505092915050565b60006020828403121561373057600080fd5b600082013567ffffffffffffffff81111561374a57600080fd5b613756848285016134a5565b91505092915050565b60006020828403121561377157600080fd5b600061377f848285016134cf565b91505092915050565b61379181614aed565b82525050565b6137a081614aff565b82525050565b60006137b182614995565b6137bb81856149ab565b93506137cb818560208601614b70565b6137d481614d15565b840191505092915050565b60006137ea826149a0565b6137f481856149bc565b9350613804818560208601614b70565b61380d81614d15565b840191505092915050565b6000613823826149a0565b61382d81856149cd565b935061383d818560208601614b70565b80840191505092915050565b60006138566024836149bc565b91507f416c6c20427562626c6567756d204b6964732068617665206265656e206d696e60008301527f7465642e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138bc6015836149bc565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b60006138fc604b836149bc565b91507f54686520616d6f756e74206f6620427562626c6567756d204b69647320796f7560008301527f2061726520747279696e6720746f206d696e742065786365656473207468652060208301527f6d617820737570706c792e0000000000000000000000000000000000000000006040830152606082019050919050565b6000613988602b836149bc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006139ee6032836149bc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613a546026836149bc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aba601c836149bc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613afa6024836149bc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b606019836149bc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613ba0602c836149bc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c066018836149bc565b91507f50726573616c6520686173206e6f7420737461727465642e00000000000000006000830152602082019050919050565b6000613c466038836149bc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613cac602a836149bc565b91507f596f752063616e206f6e6c79206d696e742033206265666f726520746865207360008301527f616c6520626567696e73000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d12602a836149bc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d786029836149bc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dde6016836149bc565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000613e1e603c836149bc565b91507f596f752063616e206f6e6c79206d696e7420757020746f203320427562626c6560008301527f67756d204b69647320647572696e67207468652070726573616c652e000000006020830152604082019050919050565b6000613e846020836149bc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613ec46021836149bc565b91507f5374617274696e6720696e64657820626c6f636b20697320726571756972656460008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f2a602c836149bc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f906014836149bc565b91507f546f6f206561726c7920746f2072657665616c2e0000000000000000000000006000830152602082019050919050565b6000613fd06012836149bc565b91507f50726573616c652068617320656e6465642e00000000000000000000000000006000830152602082019050919050565b60006140106020836149bc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006140506020836149bc565b91507f4d696e696d756d206d696e74206973203120427562626c6567756d204b69642e6000830152602082019050919050565b60006140906029836149bc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006140f66022836149bc565b91507f4d6178696d756d206d696e7420697320323020427562626c6567756d204b696460008301527f732e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061415c6013836149bc565b91507f53616c65206973206e6f74206163746976652e000000000000000000000000006000830152602082019050919050565b600061419c6016836149bc565b91507f4f666673657420697320616c7265616479207365742e000000000000000000006000830152602082019050919050565b60006141dc6021836149bc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142426031836149bc565b91507f596f75206d757374206265206f6e207468652077686974656c69737420746f2060008301527f6d696e74207468652070726573616c652e0000000000000000000000000000006020830152604082019050919050565b60006142a86000836149cd565b9150600082019050919050565b60006142c26031836149bc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614328602c836149bc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61438a81614b57565b82525050565b6143a161439c82614b57565b614c1e565b82525050565b60006143b38285613818565b91506143bf8284613818565b91508190509392505050565b60006143d78284613818565b91506143e28261429b565b915081905092915050565b60006143f98285614390565b6020820191506144098284614390565b6020820191508190509392505050565b600060208201905061442e6000830184613788565b92915050565b60006080820190506144496000830187613788565b6144566020830186613788565b6144636040830185614381565b818103606083015261447581846137a6565b905095945050505050565b60006020820190506144956000830184613797565b92915050565b600060208201905081810360008301526144b581846137df565b905092915050565b600060208201905081810360008301526144d681613849565b9050919050565b600060208201905081810360008301526144f6816138af565b9050919050565b60006020820190508181036000830152614516816138ef565b9050919050565b600060208201905081810360008301526145368161397b565b9050919050565b60006020820190508181036000830152614556816139e1565b9050919050565b6000602082019050818103600083015261457681613a47565b9050919050565b6000602082019050818103600083015261459681613aad565b9050919050565b600060208201905081810360008301526145b681613aed565b9050919050565b600060208201905081810360008301526145d681613b53565b9050919050565b600060208201905081810360008301526145f681613b93565b9050919050565b6000602082019050818103600083015261461681613bf9565b9050919050565b6000602082019050818103600083015261463681613c39565b9050919050565b6000602082019050818103600083015261465681613c9f565b9050919050565b6000602082019050818103600083015261467681613d05565b9050919050565b6000602082019050818103600083015261469681613d6b565b9050919050565b600060208201905081810360008301526146b681613dd1565b9050919050565b600060208201905081810360008301526146d681613e11565b9050919050565b600060208201905081810360008301526146f681613e77565b9050919050565b6000602082019050818103600083015261471681613eb7565b9050919050565b6000602082019050818103600083015261473681613f1d565b9050919050565b6000602082019050818103600083015261475681613f83565b9050919050565b6000602082019050818103600083015261477681613fc3565b9050919050565b6000602082019050818103600083015261479681614003565b9050919050565b600060208201905081810360008301526147b681614043565b9050919050565b600060208201905081810360008301526147d681614083565b9050919050565b600060208201905081810360008301526147f6816140e9565b9050919050565b600060208201905081810360008301526148168161414f565b9050919050565b600060208201905081810360008301526148368161418f565b9050919050565b60006020820190508181036000830152614856816141cf565b9050919050565b6000602082019050818103600083015261487681614235565b9050919050565b60006020820190508181036000830152614896816142b5565b9050919050565b600060208201905081810360008301526148b68161431b565b9050919050565b60006020820190506148d26000830184614381565b92915050565b6000604051905081810181811067ffffffffffffffff821117156148ff576148fe614ce6565b5b8060405250919050565b600067ffffffffffffffff82111561492457614923614ce6565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149505761494f614ce6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156149805761497f614ce6565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149e382614b57565b91506149ee83614b57565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a2357614a22614c59565b5b828201905092915050565b6000614a3982614b57565b9150614a4483614b57565b925082614a5457614a53614c88565b5b828204905092915050565b6000614a6a82614b57565b9150614a7583614b57565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aae57614aad614c59565b5b828202905092915050565b6000614ac482614b57565b9150614acf83614b57565b925082821015614ae257614ae1614c59565b5b828203905092915050565b6000614af882614b37565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b8e578082015181840152602081019050614b73565b83811115614b9d576000848401525b50505050565b60006002820490506001821680614bbb57607f821691505b60208210811415614bcf57614bce614cb7565b5b50919050565b6000614be082614b57565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c1357614c12614c59565b5b600182019050919050565b6000819050919050565b6000614c3382614b57565b9150614c3e83614b57565b925082614c4e57614c4d614c88565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614d2f81614aed565b8114614d3a57600080fd5b50565b614d4681614aff565b8114614d5157600080fd5b50565b614d5d81614b0b565b8114614d6857600080fd5b50565b614d7481614b57565b8114614d7f57600080fd5b5056fea2646970667358221220c95012bd24e0f5e8d62245f98aeac95c0cef9b64889dcbbbbb40841e732fad9764736f6c63430008000033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063c9b298f11161006f578063c9b298f114610823578063d55565441461083f578063e36d64981461086a578063e985e9c514610895578063f2fde38b146108d25761023b565b8063b88d4fde1461073c578063c002d23d14610765578063c875188414610790578063c87b56dd146107bb578063c96fdb33146107f85761023b565b80639aa4a125116100f25780639aa4a1251461069e578063a0712d68146106c9578063a22cb465146106e5578063a475b5dd1461070e578063b66a0e5d146107255761023b565b80636352211e146105b757806370a08231146105f4578063715018a6146106315780638da5cb5b1461064857806395d89b41146106735761023b565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104e4578063533bd5ce1461052157806355367ba91461054c57806355f804b3146105635780635c474f9e1461058c5761023b565b80632f745c591461042057806339ee06611461045d5780633ccfd60b1461048657806342842e0e1461049057806344dbb571146104b95761023b565b8063119e439811610203578063119e43981461034b57806318160ddd1461037657806323b872dd146103a157806325102f27146103ca5780632d913bfb146103f55761023b565b806301ffc9a71461024057806306c933d81461027d57806306fdde03146102ba578063081812fc146102e5578063095ea7b314610322575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136cc565b6108fb565b6040516102749190614480565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906134e4565b610975565b6040516102b19190614480565b60405180910390f35b3480156102c657600080fd5b506102cf610995565b6040516102dc919061449b565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061375f565b610a27565b6040516103199190614419565b60405180910390f35b34801561032e57600080fd5b506103496004803603810190610344919061364f565b610aac565b005b34801561035757600080fd5b50610360610bc4565b60405161036d91906148bd565b60405180910390f35b34801561038257600080fd5b5061038b610bc9565b60405161039891906148bd565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613549565b610bd6565b005b3480156103d657600080fd5b506103df610c36565b6040516103ec91906148bd565b60405180910390f35b34801561040157600080fd5b5061040a610c3e565b60405161041791906148bd565b60405180910390f35b34801561042c57600080fd5b506104476004803603810190610442919061364f565b610c46565b60405161045491906148bd565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f919061368b565b610ceb565b005b61048e610e2e565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613549565b610eea565b005b3480156104c557600080fd5b506104ce610f0a565b6040516104db91906148bd565b60405180910390f35b3480156104f057600080fd5b5061050b6004803603810190610506919061375f565b610f12565b60405161051891906148bd565b60405180910390f35b34801561052d57600080fd5b50610536610fa9565b60405161054391906148bd565b60405180910390f35b34801561055857600080fd5b50610561610faf565b005b34801561056f57600080fd5b5061058a6004803603810190610585919061371e565b611048565b005b34801561059857600080fd5b506105a16110de565b6040516105ae9190614480565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061375f565b6110f1565b6040516105eb9190614419565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906134e4565b6111a3565b60405161062891906148bd565b60405180910390f35b34801561063d57600080fd5b5061064661125b565b005b34801561065457600080fd5b5061065d611398565b60405161066a9190614419565b60405180910390f35b34801561067f57600080fd5b506106886113c2565b604051610695919061449b565b60405180910390f35b3480156106aa57600080fd5b506106b3611454565b6040516106c091906148bd565b60405180910390f35b6106e360048036038101906106de919061375f565b61145a565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613613565b61174a565b005b34801561071a57600080fd5b506107236118cb565b005b34801561073157600080fd5b5061073a611a23565b005b34801561074857600080fd5b50610763600480360381019061075e9190613598565b611abc565b005b34801561077157600080fd5b5061077a611b1e565b60405161078791906148bd565b60405180910390f35b34801561079c57600080fd5b506107a5611b29565b6040516107b291906148bd565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd919061375f565b611b2f565b6040516107ef919061449b565b60405180910390f35b34801561080457600080fd5b5061080d611c08565b60405161081a91906148bd565b60405180910390f35b61083d6004803603810190610838919061375f565b611c0e565b005b34801561084b57600080fd5b50610854611e45565b60405161086191906148bd565b60405180910390f35b34801561087657600080fd5b5061087f611e4b565b60405161088c91906148bd565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b7919061350d565b611e51565b6040516108c99190614480565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f491906134e4565b611ee5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096e575061096d82612091565b5b9050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b6060600080546109a490614ba3565b80601f01602080910402602001604051908101604052809291908181526020018280546109d090614ba3565b8015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a3282612173565b610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061471d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab7826110f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f9061483d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b476121df565b73ffffffffffffffffffffffffffffffffffffffff161480610b765750610b7581610b706121df565b611e51565b5b610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac9061461d565b60405180910390fd5b610bbf83836121e7565b505050565b600a81565b6000600880549050905090565b610be7610be16121df565b826122a0565b610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d9061487d565b60405180910390fd5b610c3183838361237e565b505050565b6361548d8081565b636159fdb081565b6000610c51836111a3565b8210610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c899061451d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cf36121df565b73ffffffffffffffffffffffffffffffffffffffff16610d11611398565b73ffffffffffffffffffffffffffffffffffffffff1614610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e9061477d565b60405180910390fd5b60008151905060005b81811015610e29576000838281518110610db3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080610e2190614bd5565b915050610d70565b505050565b610e366121df565b73ffffffffffffffffffffffffffffffffffffffff16610e54611398565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea19061477d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ee857600080fd5b565b610f0583838360405180602001604052806000815250611abc565b505050565b636155ed1081565b6000610f1c610bc9565b8210610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f549061489d565b60405180910390fd5b60088281548110610f97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600c5481565b610fb76121df565b73ffffffffffffffffffffffffffffffffffffffff16610fd5611398565b73ffffffffffffffffffffffffffffffffffffffff161461102b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110229061477d565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b6110506121df565b73ffffffffffffffffffffffffffffffffffffffff1661106e611398565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061477d565b60405180910390fd5b80600f90805190602001906110da929190613272565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561119a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111919061467d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b9061465d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112636121df565b73ffffffffffffffffffffffffffffffffffffffff16611281611398565b73ffffffffffffffffffffffffffffffffffffffff16146112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce9061477d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113d190614ba3565b80601f01602080910402602001604051908101604052809291908181526020018280546113fd90614ba3565b801561144a5780601f1061141f5761010080835404028352916020019161144a565b820191906000526020600020905b81548152906001019060200180831161142d57829003601f168201915b5050505050905090565b61271081565b60011515600e60009054906101000a900460ff161515146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a7906147fd565b60405180910390fd5b636155ed104210156114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee906144dd565b60405180910390fd5b612710611502610bc9565b10611542576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611539906144bd565b60405180910390fd5b60008111611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c9061479d565b60405180910390fd5b600a8111156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c0906147dd565b60405180910390fd5b612710816115d5610bc9565b6115df91906149d8565b1115611620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611617906144fd565b60405180910390fd5b3461163b8266d529ae9e8600006125da90919063ffffffff16565b1461167b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116729061469d565b60405180910390fd5b60005b818110156116b0576000611690610bc9565b905061169c33826125f0565b5080806116a890614bd5565b91505061167e565b506109c46116bc610bc9565b14156116d1576116ca61260e565b600c819055505b6113886116dc610bc9565b14156116f1576116ea612653565b600b819055505b6127106116fc610bc9565b14156117115761170a612698565b600d819055505b600060105414801561173a5750612710611729610bc9565b14806117395750636159fdb04210155b5b1561174757436010819055505b50565b6117526121df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906145bd565b60405180910390fd5b80600560006117cd6121df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187a6121df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118bf9190614480565b60405180910390a35050565b600060115414611910576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119079061481d565b60405180910390fd5b60006010541415611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d906146fd565b60405180910390fd5b636159fdb042101561199d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119949061473d565b60405180910390fd5b6127106010544060001c6119b19190614c28565b60118190555060ff6119ce601054436126dd90919063ffffffff16565b11156119f9576127106001436119e49190614ab9565b4060001c6119f29190614c28565b6011819055505b60006011541415611a2157611a1a60016011546126f390919063ffffffff16565b6011819055505b565b611a2b6121df565b73ffffffffffffffffffffffffffffffffffffffff16611a49611398565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a969061477d565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b611acd611ac76121df565b836122a0565b611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039061487d565b60405180910390fd5b611b1884848484612709565b50505050565b66d529ae9e86000081565b600b5481565b60606000611b3b612765565b905060006011541415611b8f576000815111611b665760405180602001604052806000815250611b87565b80604051602001611b7791906143cb565b6040516020818303038152906040525b915050611c03565b6000612710611ba9601154866126f390919063ffffffff16565b611bb39190614c28565b90506000825111611bd35760405180602001604052806000815250611bfe565b81611bdd826127f7565b604051602001611bee9291906143a7565b6040516020818303038152906040525b925050505b919050565b600d5481565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c919061485d565b60405180910390fd5b6003611cb782611ca9336111a3565b6126f390919063ffffffff16565b1115611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef9061463d565b60405180910390fd5b60008111611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d329061479d565b60405180910390fd5b6003811115611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d76906146bd565b60405180910390fd5b6361548d80421015611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd906145fd565b60405180910390fd5b636155ed104210611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e039061475d565b60405180910390fd5b60005b81811015611e41576000611e21610bc9565b9050611e2d33826125f0565b508080611e3990614bd5565b915050611e0f565b5050565b60115481565b60105481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eed6121df565b73ffffffffffffffffffffffffffffffffffffffff16611f0b611398565b73ffffffffffffffffffffffffffffffffffffffff1614611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f589061477d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc89061455d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061215c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061216c575061216b826129a4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661225a836110f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122ab82612173565b6122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906145dd565b60405180910390fd5b60006122f5836110f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061236457508373ffffffffffffffffffffffffffffffffffffffff1661234c84610a27565b73ffffffffffffffffffffffffffffffffffffffff16145b8061237557506123748185611e51565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661239e826110f1565b73ffffffffffffffffffffffffffffffffffffffff16146123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb906147bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245b9061459d565b60405180910390fd5b61246f838383612a0e565b61247a6000826121e7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ca9190614ab9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252191906149d8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836125e89190614a5f565b905092915050565b61260a828260405180602001604052806000815250612b22565b5050565b60008044426040516020016126249291906143ed565b6040516020818303038152906040528051906020012060001c90506109c48161264d9190614c28565b91505090565b60008044426040516020016126699291906143ed565b6040516020818303038152906040528051906020012060001c9050611388816126929190614c28565b91505090565b60008044426040516020016126ae9291906143ed565b6040516020818303038152906040528051906020012060001c9050612710816126d79190614c28565b91505090565b600081836126eb9190614ab9565b905092915050565b6000818361270191906149d8565b905092915050565b61271484848461237e565b61272084848484612b7d565b61275f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127569061453d565b60405180910390fd5b50505050565b6060600f805461277490614ba3565b80601f01602080910402602001604051908101604052809291908181526020018280546127a090614ba3565b80156127ed5780601f106127c2576101008083540402835291602001916127ed565b820191906000526020600020905b8154815290600101906020018083116127d057829003601f168201915b5050505050905090565b6060600082141561283f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061299f565b600082905060005b6000821461287157808061285a90614bd5565b915050600a8261286a9190614a2e565b9150612847565b60008167ffffffffffffffff8111156128b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128e55781602001600182028036833780820191505090505b5090505b60008514612998576001826128fe9190614ab9565b9150600a8561290d9190614c28565b603061291991906149d8565b60f81b818381518110612955577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129919190614a2e565b94506128e9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a19838383612d14565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5c57612a5781612d19565b612a9b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a9a57612a998382612d62565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ade57612ad981612ecf565b612b1d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b1c57612b1b8282613012565b5b5b505050565b612b2c8383613091565b612b396000848484612b7d565b612b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6f9061453d565b60405180910390fd5b505050565b6000612b9e8473ffffffffffffffffffffffffffffffffffffffff1661325f565b15612d07578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bc76121df565b8786866040518563ffffffff1660e01b8152600401612be99493929190614434565b602060405180830381600087803b158015612c0357600080fd5b505af1925050508015612c3457506040513d601f19601f82011682018060405250810190612c3191906136f5565b60015b612cb7573d8060008114612c64576040519150601f19603f3d011682016040523d82523d6000602084013e612c69565b606091505b50600081511415612caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca69061453d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d0c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d6f846111a3565b612d799190614ab9565b9050600060076000848152602001908152602001600020549050818114612e5e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ee39190614ab9565b9050600060096000848152602001908152602001600020549050600060088381548110612f39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612f81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ff6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061301d836111a3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f8906146dd565b60405180910390fd5b61310a81612173565b1561314a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131419061457d565b60405180910390fd5b61315660008383612a0e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131a691906149d8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461327e90614ba3565b90600052602060002090601f0160209004810192826132a057600085556132e7565b82601f106132b957805160ff19168380011785556132e7565b828001600101855582156132e7579182015b828111156132e65782518255916020019190600101906132cb565b5b5090506132f491906132f8565b5090565b5b808211156133115760008160009055506001016132f9565b5090565b600061332861332384614909565b6148d8565b9050808382526020820190508285602086028201111561334757600080fd5b60005b85811015613377578161335d88826133fd565b84526020840193506020830192505060018101905061334a565b5050509392505050565b600061339461338f84614935565b6148d8565b9050828152602081018484840111156133ac57600080fd5b6133b7848285614b61565b509392505050565b60006133d26133cd84614965565b6148d8565b9050828152602081018484840111156133ea57600080fd5b6133f5848285614b61565b509392505050565b60008135905061340c81614d26565b92915050565b600082601f83011261342357600080fd5b8135613433848260208601613315565b91505092915050565b60008135905061344b81614d3d565b92915050565b60008135905061346081614d54565b92915050565b60008151905061347581614d54565b92915050565b600082601f83011261348c57600080fd5b813561349c848260208601613381565b91505092915050565b600082601f8301126134b657600080fd5b81356134c68482602086016133bf565b91505092915050565b6000813590506134de81614d6b565b92915050565b6000602082840312156134f657600080fd5b6000613504848285016133fd565b91505092915050565b6000806040838503121561352057600080fd5b600061352e858286016133fd565b925050602061353f858286016133fd565b9150509250929050565b60008060006060848603121561355e57600080fd5b600061356c868287016133fd565b935050602061357d868287016133fd565b925050604061358e868287016134cf565b9150509250925092565b600080600080608085870312156135ae57600080fd5b60006135bc878288016133fd565b94505060206135cd878288016133fd565b93505060406135de878288016134cf565b925050606085013567ffffffffffffffff8111156135fb57600080fd5b6136078782880161347b565b91505092959194509250565b6000806040838503121561362657600080fd5b6000613634858286016133fd565b92505060206136458582860161343c565b9150509250929050565b6000806040838503121561366257600080fd5b6000613670858286016133fd565b9250506020613681858286016134cf565b9150509250929050565b60006020828403121561369d57600080fd5b600082013567ffffffffffffffff8111156136b757600080fd5b6136c384828501613412565b91505092915050565b6000602082840312156136de57600080fd5b60006136ec84828501613451565b91505092915050565b60006020828403121561370757600080fd5b600061371584828501613466565b91505092915050565b60006020828403121561373057600080fd5b600082013567ffffffffffffffff81111561374a57600080fd5b613756848285016134a5565b91505092915050565b60006020828403121561377157600080fd5b600061377f848285016134cf565b91505092915050565b61379181614aed565b82525050565b6137a081614aff565b82525050565b60006137b182614995565b6137bb81856149ab565b93506137cb818560208601614b70565b6137d481614d15565b840191505092915050565b60006137ea826149a0565b6137f481856149bc565b9350613804818560208601614b70565b61380d81614d15565b840191505092915050565b6000613823826149a0565b61382d81856149cd565b935061383d818560208601614b70565b80840191505092915050565b60006138566024836149bc565b91507f416c6c20427562626c6567756d204b6964732068617665206265656e206d696e60008301527f7465642e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138bc6015836149bc565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b60006138fc604b836149bc565b91507f54686520616d6f756e74206f6620427562626c6567756d204b69647320796f7560008301527f2061726520747279696e6720746f206d696e742065786365656473207468652060208301527f6d617820737570706c792e0000000000000000000000000000000000000000006040830152606082019050919050565b6000613988602b836149bc565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006139ee6032836149bc565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613a546026836149bc565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aba601c836149bc565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613afa6024836149bc565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b606019836149bc565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613ba0602c836149bc565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c066018836149bc565b91507f50726573616c6520686173206e6f7420737461727465642e00000000000000006000830152602082019050919050565b6000613c466038836149bc565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613cac602a836149bc565b91507f596f752063616e206f6e6c79206d696e742033206265666f726520746865207360008301527f616c6520626567696e73000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d12602a836149bc565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d786029836149bc565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dde6016836149bc565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000613e1e603c836149bc565b91507f596f752063616e206f6e6c79206d696e7420757020746f203320427562626c6560008301527f67756d204b69647320647572696e67207468652070726573616c652e000000006020830152604082019050919050565b6000613e846020836149bc565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613ec46021836149bc565b91507f5374617274696e6720696e64657820626c6f636b20697320726571756972656460008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f2a602c836149bc565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f906014836149bc565b91507f546f6f206561726c7920746f2072657665616c2e0000000000000000000000006000830152602082019050919050565b6000613fd06012836149bc565b91507f50726573616c652068617320656e6465642e00000000000000000000000000006000830152602082019050919050565b60006140106020836149bc565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006140506020836149bc565b91507f4d696e696d756d206d696e74206973203120427562626c6567756d204b69642e6000830152602082019050919050565b60006140906029836149bc565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006140f66022836149bc565b91507f4d6178696d756d206d696e7420697320323020427562626c6567756d204b696460008301527f732e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061415c6013836149bc565b91507f53616c65206973206e6f74206163746976652e000000000000000000000000006000830152602082019050919050565b600061419c6016836149bc565b91507f4f666673657420697320616c7265616479207365742e000000000000000000006000830152602082019050919050565b60006141dc6021836149bc565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142426031836149bc565b91507f596f75206d757374206265206f6e207468652077686974656c69737420746f2060008301527f6d696e74207468652070726573616c652e0000000000000000000000000000006020830152604082019050919050565b60006142a86000836149cd565b9150600082019050919050565b60006142c26031836149bc565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614328602c836149bc565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61438a81614b57565b82525050565b6143a161439c82614b57565b614c1e565b82525050565b60006143b38285613818565b91506143bf8284613818565b91508190509392505050565b60006143d78284613818565b91506143e28261429b565b915081905092915050565b60006143f98285614390565b6020820191506144098284614390565b6020820191508190509392505050565b600060208201905061442e6000830184613788565b92915050565b60006080820190506144496000830187613788565b6144566020830186613788565b6144636040830185614381565b818103606083015261447581846137a6565b905095945050505050565b60006020820190506144956000830184613797565b92915050565b600060208201905081810360008301526144b581846137df565b905092915050565b600060208201905081810360008301526144d681613849565b9050919050565b600060208201905081810360008301526144f6816138af565b9050919050565b60006020820190508181036000830152614516816138ef565b9050919050565b600060208201905081810360008301526145368161397b565b9050919050565b60006020820190508181036000830152614556816139e1565b9050919050565b6000602082019050818103600083015261457681613a47565b9050919050565b6000602082019050818103600083015261459681613aad565b9050919050565b600060208201905081810360008301526145b681613aed565b9050919050565b600060208201905081810360008301526145d681613b53565b9050919050565b600060208201905081810360008301526145f681613b93565b9050919050565b6000602082019050818103600083015261461681613bf9565b9050919050565b6000602082019050818103600083015261463681613c39565b9050919050565b6000602082019050818103600083015261465681613c9f565b9050919050565b6000602082019050818103600083015261467681613d05565b9050919050565b6000602082019050818103600083015261469681613d6b565b9050919050565b600060208201905081810360008301526146b681613dd1565b9050919050565b600060208201905081810360008301526146d681613e11565b9050919050565b600060208201905081810360008301526146f681613e77565b9050919050565b6000602082019050818103600083015261471681613eb7565b9050919050565b6000602082019050818103600083015261473681613f1d565b9050919050565b6000602082019050818103600083015261475681613f83565b9050919050565b6000602082019050818103600083015261477681613fc3565b9050919050565b6000602082019050818103600083015261479681614003565b9050919050565b600060208201905081810360008301526147b681614043565b9050919050565b600060208201905081810360008301526147d681614083565b9050919050565b600060208201905081810360008301526147f6816140e9565b9050919050565b600060208201905081810360008301526148168161414f565b9050919050565b600060208201905081810360008301526148368161418f565b9050919050565b60006020820190508181036000830152614856816141cf565b9050919050565b6000602082019050818103600083015261487681614235565b9050919050565b60006020820190508181036000830152614896816142b5565b9050919050565b600060208201905081810360008301526148b68161431b565b9050919050565b60006020820190506148d26000830184614381565b92915050565b6000604051905081810181811067ffffffffffffffff821117156148ff576148fe614ce6565b5b8060405250919050565b600067ffffffffffffffff82111561492457614923614ce6565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149505761494f614ce6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156149805761497f614ce6565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149e382614b57565b91506149ee83614b57565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a2357614a22614c59565b5b828201905092915050565b6000614a3982614b57565b9150614a4483614b57565b925082614a5457614a53614c88565b5b828204905092915050565b6000614a6a82614b57565b9150614a7583614b57565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aae57614aad614c59565b5b828202905092915050565b6000614ac482614b57565b9150614acf83614b57565b925082821015614ae257614ae1614c59565b5b828203905092915050565b6000614af882614b37565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b8e578082015181840152602081019050614b73565b83811115614b9d576000848401525b50505050565b60006002820490506001821680614bbb57607f821691505b60208210811415614bcf57614bce614cb7565b5b50919050565b6000614be082614b57565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c1357614c12614c59565b5b600182019050919050565b6000819050919050565b6000614c3382614b57565b9150614c3e83614b57565b925082614c4e57614c4d614c88565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614d2f81614aed565b8114614d3a57600080fd5b50565b614d4681614aff565b8114614d5157600080fd5b50565b614d5d81614b0b565b8114614d6857600080fd5b50565b614d7481614b57565b8114614d7f57600080fd5b5056fea2646970667358221220c95012bd24e0f5e8d62245f98aeac95c0cef9b64889dcbbbbb40841e732fad9764736f6c63430008000033

Deployed Bytecode Sourcemap

49829:5961:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34324:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50846:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22989:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22526:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50017:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34977:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23879:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50154:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50338:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34645:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55240:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55667:120;;;:::i;:::-;;24255:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50248:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35167:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50510:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55583:76;;;;;;;;;;;;;:::i;:::-;;51095:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50655:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21223:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20953:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42196:148;;;;;;;;;;;;;:::i;:::-;;41545:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21698:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49968:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52484:1533;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23282:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54676:557;;;;;;;;;;;;;:::i;:::-;;55500:75;;;;;;;;;;;;;:::i;:::-;;24477:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50065:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50461:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51214:479;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50559:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51701:776;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50816:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50776:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23648:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42499:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34324:237;34426:4;34465:35;34450:50;;;:11;:50;;;;:103;;;;34517:36;34541:11;34517:23;:36::i;:::-;34450:103;34443:110;;34324:237;;;:::o;50846:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;22989:221::-;23065:7;23093:16;23101:7;23093;:16::i;:::-;23085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23178:15;:24;23194:7;23178:24;;;;;;;;;;;;;;;;;;;;;23171:31;;22989:221;;;:::o;22526:397::-;22607:13;22623:23;22638:7;22623:14;:23::i;:::-;22607:39;;22671:5;22665:11;;:2;:11;;;;22657:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22751:5;22735:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22760:37;22777:5;22784:12;:10;:12::i;:::-;22760:16;:37::i;:::-;22735:62;22727:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22894:21;22903:2;22907:7;22894:8;:21::i;:::-;22526:397;;;:::o;50017:41::-;50056:2;50017:41;:::o;34977:113::-;35038:7;35065:10;:17;;;;35058:24;;34977:113;:::o;23879:305::-;24040:41;24059:12;:10;:12::i;:::-;24073:7;24040:18;:41::i;:::-;24032:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24148:28;24158:4;24164:2;24168:7;24148:9;:28::i;:::-;23879:305;;;:::o;50154:55::-;50199:10;50154:55;:::o;50338:48::-;50376:10;50338:48;:::o;34645:256::-;34742:7;34778:23;34795:5;34778:16;:23::i;:::-;34770:5;:31;34762:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34867:12;:19;34880:5;34867:19;;;;;;;;;;;;;;;:26;34887:5;34867:26;;;;;;;;;;;;34860:33;;34645:256;;;;:::o;55240:252::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55316:9:::1;55328:6;:13;55316:25;;55362:9;55358:127;55381:4;55377:1;:8;55358:127;;;55404:12;55419:6;55426:1;55419:9;;;;;;;;;;;;;;;;;;;;;;55404:24;;55470:4;55441:20;:26;55462:4;55441:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;55358:127;55387:3;;;;;:::i;:::-;;;;55358:127;;;;41836:1;55240:252:::0;:::o;55667:120::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55739:10:::1;55731:24;;:47;55756:21;55731:47;;;;;;;;;;;;;;;;;;;;;;;55723:56;;;::::0;::::1;;55667:120::o:0;24255:151::-;24359:39;24376:4;24382:2;24386:7;24359:39;;;;;;;;;;;;:16;:39::i;:::-;24255:151;;;:::o;50248:52::-;50290:10;50248:52;:::o;35167:233::-;35242:7;35278:30;:28;:30::i;:::-;35270:5;:38;35262:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:10;35386:5;35375:17;;;;;;;;;;;;;;;;;;;;;;;;35368:24;;35167:233;;;:::o;50510:42::-;;;;:::o;55583:76::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55646:5:::1;55632:11;;:19;;;;;;;;;;;;;;;;;;55583:76::o:0;51095:111::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51190:8:::1;51171:16;:27;;;;;;;;;;;;:::i;:::-;;51095:111:::0;:::o;50655:30::-;;;;;;;;;;;;;:::o;21223:239::-;21295:7;21315:13;21331:7;:16;21339:7;21331:16;;;;;;;;;;;;;;;;;;;;;21315:32;;21383:1;21366:19;;:5;:19;;;;21358:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21449:5;21442:12;;;21223:239;;;:::o;20953:208::-;21025:7;21070:1;21053:19;;:5;:19;;;;21045:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21137:9;:16;21147:5;21137:16;;;;;;;;;;;;;;;;21130:23;;20953:208;;;:::o;42196:148::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42303:1:::1;42266:40;;42287:6;;;;;;;;;;;42266:40;;;;;;;;;;;;42334:1;42317:6;;:19;;;;;;;;;;;;;;;;;;42196:148::o:0;41545:87::-;41591:7;41618:6;;;;;;;;;;;41611:13;;41545:87;:::o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21698:104;:::o;49968:42::-;50005:5;49968:42;:::o;52484:1533::-;52569:4;52554:19;;:11;;;;;;;;;;;:19;;;52546:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;50290:10;52616:15;:34;;52608:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50005:5;52695:13;:11;:13::i;:::-;:26;52687:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;52796:1;52781:12;:16;52773:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50056:2;52853:12;:31;;52845:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;50005:5;52958:12;52942:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:42;;52934:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;53115:9;53083:28;53098:12;50102:17;53083:14;;:28;;;;:::i;:::-;:41;53075:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53169:9;53164:150;53188:12;53184:1;:16;53164:150;;;53222:17;53242:13;:11;:13::i;:::-;53222:33;;53270:32;53280:10;53292:9;53270;:32::i;:::-;53164:150;53202:3;;;;;:::i;:::-;;;;53164:150;;;;53398:4;53381:13;:11;:13::i;:::-;:21;53377:116;;;53452:29;:27;:29::i;:::-;53419:30;:62;;;;53377:116;53574:4;53557:13;:11;:13::i;:::-;:21;53553:115;;;53628:28;:26;:28::i;:::-;53595:30;:61;;;;53553:115;53746:5;53729:13;:11;:13::i;:::-;:22;53725:118;;;53802:29;:27;:29::i;:::-;53768:31;:63;;;;53725:118;53881:1;53859:18;;:23;:90;;;;;50005:5;53887:13;:11;:13::i;:::-;:27;:61;;;;50376:10;53918:15;:30;;53887:61;53859:90;53855:156;;;53987:12;53966:18;:33;;;;53855:156;52484:1533;:::o;23282:295::-;23397:12;:10;:12::i;:::-;23385:24;;:8;:24;;;;23377:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23497:8;23452:18;:32;23471:12;:10;:12::i;:::-;23452:32;;;;;;;;;;;;;;;:42;23485:8;23452:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23550:8;23521:48;;23536:12;:10;:12::i;:::-;23521:48;;;23560:8;23521:48;;;;;;:::i;:::-;;;;;;;;23282:295;;:::o;54676:557::-;54730:1;54720:6;;:11;54712:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;54799:1;54777:18;;:23;;54769:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50376:10;54857:15;:30;;54849:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50005:5;54957:18;;54947:29;54942:35;;:48;;;;:::i;:::-;54933:6;:57;;;;55054:3;55015:36;55032:18;;55015:12;:16;;:36;;;;:::i;:::-;:42;55011:130;;;50005:5;55113:1;55098:12;:16;;;;:::i;:::-;55088:27;55083:33;;:46;;;;:::i;:::-;55074:6;:55;;;;55011:130;55175:1;55165:6;;:11;55161:66;;;55202:13;55213:1;55202:6;;:10;;:13;;;;:::i;:::-;55193:6;:22;;;;55161:66;54676:557::o;55500:75::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55563:4:::1;55549:11;;:18;;;;;;;;;;;;;;;;;;55500:75::o:0;24477:285::-;24609:41;24628:12;:10;:12::i;:::-;24642:7;24609:18;:41::i;:::-;24601:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24715:39;24729:4;24735:2;24739:7;24748:5;24715:13;:39::i;:::-;24477:285;;;;:::o;50065:54::-;50102:17;50065:54;:::o;50461:42::-;;;;:::o;51214:479::-;51287:13;51313:21;51337:10;:8;:10::i;:::-;51313:34;;51374:1;51364:6;;:11;51360:326;;;51423:1;51405:7;51399:21;:25;:70;;;;;;;;;;;;;;;;;51451:7;51434:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;51399:70;51392:77;;;;;51360:326;51502:22;50005:5;51527:19;51539:6;;51527:7;:11;;:19;;;;:::i;:::-;:32;;;;:::i;:::-;51502:57;;51605:1;51587:7;51581:21;:25;:93;;;;;;;;;;;;;;;;;51633:7;51642:25;:14;:23;:25::i;:::-;51616:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51581:93;51574:100;;;;51214:479;;;;:::o;50559:43::-;;;;:::o;51701:776::-;51778:20;:32;51799:10;51778:32;;;;;;;;;;;;;;;;;;;;;;;;;51770:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51926:1;51883:39;51909:12;51883:21;51893:10;51883:9;:21::i;:::-;:25;;:39;;;;:::i;:::-;:44;;51875:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;52008:1;51993:12;:16;51985:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52081:1;52065:12;:17;;52057:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;50199:10;52166:15;:37;;52158:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;50290:10;52251:15;:33;52243:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;52325:9;52320:150;52344:12;52340:1;:16;52320:150;;;52378:17;52398:13;:11;:13::i;:::-;52378:33;;52426:32;52436:10;52448:9;52426;:32::i;:::-;52320:150;52358:3;;;;;:::i;:::-;;;;52320:150;;;;51701:776;:::o;50816:21::-;;;;:::o;50776:33::-;;;;:::o;23648:164::-;23745:4;23769:18;:25;23788:5;23769:25;;;;;;;;;;;;;;;:35;23795:8;23769:35;;;;;;;;;;;;;;;;;;;;;;;;;23762:42;;23648:164;;;;:::o;42499:244::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42608:1:::1;42588:22;;:8;:22;;;;42580:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42698:8;42669:38;;42690:6;;;;;;;;;;;42669:38;;;;;;;;;;;;42727:8;42718:6;;:17;;;;;;;;;;;;;;;;;;42499:244:::0;:::o;20597:292::-;20699:4;20738:25;20723:40;;;:11;:40;;;;:105;;;;20795:33;20780:48;;;:11;:48;;;;20723:105;:158;;;;20845:36;20869:11;20845:23;:36::i;:::-;20723:158;20716:165;;20597:292;;;:::o;26229:127::-;26294:4;26346:1;26318:30;;:7;:16;26326:7;26318:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26311:37;;26229:127;;;:::o;15885:98::-;15938:7;15965:10;15958:17;;15885:98;:::o;30106:174::-;30208:2;30181:15;:24;30197:7;30181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30264:7;30260:2;30226:46;;30235:23;30250:7;30235:14;:23::i;:::-;30226:46;;;;;;;;;;;;30106:174;;:::o;26523:348::-;26616:4;26641:16;26649:7;26641;:16::i;:::-;26633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26717:13;26733:23;26748:7;26733:14;:23::i;:::-;26717:39;;26786:5;26775:16;;:7;:16;;;:51;;;;26819:7;26795:31;;:20;26807:7;26795:11;:20::i;:::-;:31;;;26775:51;:87;;;;26830:32;26847:5;26854:7;26830:16;:32::i;:::-;26775:87;26767:96;;;26523:348;;;;:::o;29444:544::-;29569:4;29542:31;;:23;29557:7;29542:14;:23::i;:::-;:31;;;29534:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29652:1;29638:16;;:2;:16;;;;29630:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29708:39;29729:4;29735:2;29739:7;29708:20;:39::i;:::-;29812:29;29829:1;29833:7;29812:8;:29::i;:::-;29873:1;29854:9;:15;29864:4;29854:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29902:1;29885:9;:13;29895:2;29885:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29933:2;29914:7;:16;29922:7;29914:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29972:7;29968:2;29953:27;;29962:4;29953:27;;;;;;;;;;;;29444:544;;;:::o;46218:98::-;46276:7;46307:1;46303;:5;;;;:::i;:::-;46296:12;;46218:98;;;;:::o;27213:110::-;27289:26;27299:2;27303:7;27289:26;;;;;;;;;;;;:9;:26::i;:::-;27213:110;;:::o;54024:211::-;54086:4;54103:17;54155:16;54173:15;54138:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54128:62;;;;;;54123:68;;54103:88;;54224:4;54209:12;:19;;;;:::i;:::-;54202:26;;;54024:211;:::o;54242:208::-;54303:4;54320:16;54371;54389:15;54354:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54344:62;;;;;;54339:68;;54320:87;;54439:4;54425:11;:18;;;;:::i;:::-;54418:25;;;54242:208;:::o;54457:212::-;54519:4;54536:17;54588:16;54606:15;54571:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54561:62;;;;;;54556:68;;54536:88;;54657:5;54642:12;:20;;;;:::i;:::-;54635:27;;;54457:212;:::o;45861:98::-;45919:7;45950:1;45946;:5;;;;:::i;:::-;45939:12;;45861:98;;;;:::o;45480:::-;45538:7;45569:1;45565;:5;;;;:::i;:::-;45558:12;;45480:98;;;;:::o;25644:272::-;25758:28;25768:4;25774:2;25778:7;25758:9;:28::i;:::-;25805:48;25828:4;25834:2;25838:7;25847:5;25805:22;:48::i;:::-;25797:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25644:272;;;;:::o;50970:117::-;51030:13;51063:16;51056:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50970:117;:::o;16540:723::-;16596:13;16826:1;16817:5;:10;16813:53;;;16844:10;;;;;;;;;;;;;;;;;;;;;16813:53;16876:12;16891:5;16876:20;;16907:14;16932:78;16947:1;16939:4;:9;16932:78;;16965:8;;;;;:::i;:::-;;;;16996:2;16988:10;;;;;:::i;:::-;;;16932:78;;;17020:19;17052:6;17042:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17020:39;;17070:154;17086:1;17077:5;:10;17070:154;;17114:1;17104:11;;;;;:::i;:::-;;;17181:2;17173:5;:10;;;;:::i;:::-;17160:2;:24;;;;:::i;:::-;17147:39;;17130:6;17137;17130:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17210:2;17201:11;;;;;:::i;:::-;;;17070:154;;;17248:6;17234:21;;;;;16540:723;;;;:::o;19095:157::-;19180:4;19219:25;19204:40;;;:11;:40;;;;19197:47;;19095:157;;;:::o;36013:555::-;36123:45;36150:4;36156:2;36160:7;36123:26;:45::i;:::-;36201:1;36185:18;;:4;:18;;;36181:187;;;36220:40;36252:7;36220:31;:40::i;:::-;36181:187;;;36290:2;36282:10;;:4;:10;;;36278:90;;36309:47;36342:4;36348:7;36309:32;:47::i;:::-;36278:90;36181:187;36396:1;36382:16;;:2;:16;;;36378:183;;;36415:45;36452:7;36415:36;:45::i;:::-;36378:183;;;36488:4;36482:10;;:2;:10;;;36478:83;;36509:40;36537:2;36541:7;36509:27;:40::i;:::-;36478:83;36378:183;36013:555;;;:::o;27550:250::-;27646:18;27652:2;27656:7;27646:5;:18::i;:::-;27683:54;27714:1;27718:2;27722:7;27731:5;27683:22;:54::i;:::-;27675:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27550:250;;;:::o;30845:843::-;30966:4;30992:15;:2;:13;;;:15::i;:::-;30988:693;;;31044:2;31028:36;;;31065:12;:10;:12::i;:::-;31079:4;31085:7;31094:5;31028:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31024:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31291:1;31274:6;:13;:18;31270:341;;;31317:60;;;;;;;;;;:::i;:::-;;;;;;;;31270:341;31561:6;31555:13;31546:6;31542:2;31538:15;31531:38;31024:602;31161:45;;;31151:55;;;:6;:55;;;;31144:62;;;;;30988:693;31665:4;31658:11;;30845:843;;;;;;;:::o;32301:93::-;;;;:::o;37291:164::-;37395:10;:17;;;;37368:15;:24;37384:7;37368:24;;;;;;;;;;;:44;;;;37423:10;37439:7;37423:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37291:164;:::o;38082:988::-;38348:22;38398:1;38373:22;38390:4;38373:16;:22::i;:::-;:26;;;;:::i;:::-;38348:51;;38410:18;38431:17;:26;38449:7;38431:26;;;;;;;;;;;;38410:47;;38578:14;38564:10;:28;38560:328;;38609:19;38631:12;:18;38644:4;38631:18;;;;;;;;;;;;;;;:34;38650:14;38631:34;;;;;;;;;;;;38609:56;;38715:11;38682:12;:18;38695:4;38682:18;;;;;;;;;;;;;;;:30;38701:10;38682:30;;;;;;;;;;;:44;;;;38832:10;38799:17;:30;38817:11;38799:30;;;;;;;;;;;:43;;;;38560:328;;38984:17;:26;39002:7;38984:26;;;;;;;;;;;38977:33;;;39028:12;:18;39041:4;39028:18;;;;;;;;;;;;;;;:34;39047:14;39028:34;;;;;;;;;;;39021:41;;;38082:988;;;;:::o;39365:1079::-;39618:22;39663:1;39643:10;:17;;;;:21;;;;:::i;:::-;39618:46;;39675:18;39696:15;:24;39712:7;39696:24;;;;;;;;;;;;39675:45;;40047:19;40069:10;40080:14;40069:26;;;;;;;;;;;;;;;;;;;;;;;;40047:48;;40133:11;40108:10;40119;40108:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40244:10;40213:15;:28;40229:11;40213:28;;;;;;;;;;;:41;;;;40385:15;:24;40401:7;40385:24;;;;;;;;;;;40378:31;;;40420:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39365:1079;;;;:::o;36869:221::-;36954:14;36971:20;36988:2;36971:16;:20::i;:::-;36954:37;;37029:7;37002:12;:16;37015:2;37002:16;;;;;;;;;;;;;;;:24;37019:6;37002:24;;;;;;;;;;;:34;;;;37076:6;37047:17;:26;37065:7;37047:26;;;;;;;;;;;:35;;;;36869:221;;;:::o;28136:382::-;28230:1;28216:16;;:2;:16;;;;28208:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28289:16;28297:7;28289;:16::i;:::-;28288:17;28280:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28351:45;28380:1;28384:2;28388:7;28351:20;:45::i;:::-;28426:1;28409:9;:13;28419:2;28409:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28457:2;28438:7;:16;28446:7;28438:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28502:7;28498:2;28477:33;;28494:1;28477:33;;;;;;;;;;;;28136:382;;:::o;8002:422::-;8062:4;8270:12;8381:7;8369:20;8361:28;;8415:1;8408:4;:8;8401:15;;;8002:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:401::-;;;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;5213:1;5238:53;5283:7;5274:6;5263:9;5259:22;5238:53;:::i;:::-;5228:63;;5184:117;5340:2;5366:50;5408:7;5399:6;5388:9;5384:22;5366:50;:::i;:::-;5356:60;;5311:115;5112:321;;;;;:::o;5439:407::-;;;5564:2;5552:9;5543:7;5539:23;5535:32;5532:2;;;5580:1;5577;5570:12;5532:2;5623:1;5648:53;5693:7;5684:6;5673:9;5669:22;5648:53;:::i;:::-;5638:63;;5594:117;5750:2;5776:53;5821:7;5812:6;5801:9;5797:22;5776:53;:::i;:::-;5766:63;;5721:118;5522:324;;;;;:::o;5852:405::-;;5985:2;5973:9;5964:7;5960:23;5956:32;5953:2;;;6001:1;5998;5991:12;5953:2;6072:1;6061:9;6057:17;6044:31;6102:18;6094:6;6091:30;6088:2;;;6134:1;6131;6124:12;6088:2;6162:78;6232:7;6223:6;6212:9;6208:22;6162:78;:::i;:::-;6152:88;;6015:235;5943:314;;;;:::o;6263:260::-;;6370:2;6358:9;6349:7;6345:23;6341:32;6338:2;;;6386:1;6383;6376:12;6338:2;6429:1;6454:52;6498:7;6489:6;6478:9;6474:22;6454:52;:::i;:::-;6444:62;;6400:116;6328:195;;;;:::o;6529:282::-;;6647:2;6635:9;6626:7;6622:23;6618:32;6615:2;;;6663:1;6660;6653:12;6615:2;6706:1;6731:63;6786:7;6777:6;6766:9;6762:22;6731:63;:::i;:::-;6721:73;;6677:127;6605:206;;;;:::o;6817:375::-;;6935:2;6923:9;6914:7;6910:23;6906:32;6903:2;;;6951:1;6948;6941:12;6903:2;7022:1;7011:9;7007:17;6994:31;7052:18;7044:6;7041:30;7038:2;;;7084:1;7081;7074:12;7038:2;7112:63;7167:7;7158:6;7147:9;7143:22;7112:63;:::i;:::-;7102:73;;6965:220;6893:299;;;;:::o;7198:262::-;;7306:2;7294:9;7285:7;7281:23;7277:32;7274:2;;;7322:1;7319;7312:12;7274:2;7365:1;7390:53;7435:7;7426:6;7415:9;7411:22;7390:53;:::i;:::-;7380:63;;7336:117;7264:196;;;;:::o;7466:118::-;7553:24;7571:5;7553:24;:::i;:::-;7548:3;7541:37;7531:53;;:::o;7590:109::-;7671:21;7686:5;7671:21;:::i;:::-;7666:3;7659:34;7649:50;;:::o;7705:360::-;;7819:38;7851:5;7819:38;:::i;:::-;7873:70;7936:6;7931:3;7873:70;:::i;:::-;7866:77;;7952:52;7997:6;7992:3;7985:4;7978:5;7974:16;7952:52;:::i;:::-;8029:29;8051:6;8029:29;:::i;:::-;8024:3;8020:39;8013:46;;7795:270;;;;;:::o;8071:364::-;;8187:39;8220:5;8187:39;:::i;:::-;8242:71;8306:6;8301:3;8242:71;:::i;:::-;8235:78;;8322:52;8367:6;8362:3;8355:4;8348:5;8344:16;8322:52;:::i;:::-;8399:29;8421:6;8399:29;:::i;:::-;8394:3;8390:39;8383:46;;8163:272;;;;;:::o;8441:377::-;;8575:39;8608:5;8575:39;:::i;:::-;8630:89;8712:6;8707:3;8630:89;:::i;:::-;8623:96;;8728:52;8773:6;8768:3;8761:4;8754:5;8750:16;8728:52;:::i;:::-;8805:6;8800:3;8796:16;8789:23;;8551:267;;;;;:::o;8824:368::-;;8987:67;9051:2;9046:3;8987:67;:::i;:::-;8980:74;;9084:34;9080:1;9075:3;9071:11;9064:55;9150:6;9145:2;9140:3;9136:12;9129:28;9183:2;9178:3;9174:12;9167:19;;8970:222;;;:::o;9198:319::-;;9361:67;9425:2;9420:3;9361:67;:::i;:::-;9354:74;;9458:23;9454:1;9449:3;9445:11;9438:44;9508:2;9503:3;9499:12;9492:19;;9344:173;;;:::o;9523:441::-;;9686:67;9750:2;9745:3;9686:67;:::i;:::-;9679:74;;9783:34;9779:1;9774:3;9770:11;9763:55;9849:34;9844:2;9839:3;9835:12;9828:56;9915:13;9910:2;9905:3;9901:12;9894:35;9955:2;9950:3;9946:12;9939:19;;9669:295;;;:::o;9970:375::-;;10133:67;10197:2;10192:3;10133:67;:::i;:::-;10126:74;;10230:34;10226:1;10221:3;10217:11;10210:55;10296:13;10291:2;10286:3;10282:12;10275:35;10336:2;10331:3;10327:12;10320:19;;10116:229;;;:::o;10351:382::-;;10514:67;10578:2;10573:3;10514:67;:::i;:::-;10507:74;;10611:34;10607:1;10602:3;10598:11;10591:55;10677:20;10672:2;10667:3;10663:12;10656:42;10724:2;10719:3;10715:12;10708:19;;10497:236;;;:::o;10739:370::-;;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10999:34;10995:1;10990:3;10986:11;10979:55;11065:8;11060:2;11055:3;11051:12;11044:30;11100:2;11095:3;11091:12;11084:19;;10885:224;;;:::o;11115:326::-;;11278:67;11342:2;11337:3;11278:67;:::i;:::-;11271:74;;11375:30;11371:1;11366:3;11362:11;11355:51;11432:2;11427:3;11423:12;11416:19;;11261:180;;;:::o;11447:368::-;;11610:67;11674:2;11669:3;11610:67;:::i;:::-;11603:74;;11707:34;11703:1;11698:3;11694:11;11687:55;11773:6;11768:2;11763:3;11759:12;11752:28;11806:2;11801:3;11797:12;11790:19;;11593:222;;;:::o;11821:323::-;;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12081:27;12077:1;12072:3;12068:11;12061:48;12135:2;12130:3;12126:12;12119:19;;11967:177;;;:::o;12150:376::-;;12313:67;12377:2;12372:3;12313:67;:::i;:::-;12306:74;;12410:34;12406:1;12401:3;12397:11;12390:55;12476:14;12471:2;12466:3;12462:12;12455:36;12517:2;12512:3;12508:12;12501:19;;12296:230;;;:::o;12532:322::-;;12695:67;12759:2;12754:3;12695:67;:::i;:::-;12688:74;;12792:26;12788:1;12783:3;12779:11;12772:47;12845:2;12840:3;12836:12;12829:19;;12678:176;;;:::o;12860:388::-;;13023:67;13087:2;13082:3;13023:67;:::i;:::-;13016:74;;13120:34;13116:1;13111:3;13107:11;13100:55;13186:26;13181:2;13176:3;13172:12;13165:48;13239:2;13234:3;13230:12;13223:19;;13006:242;;;:::o;13254:374::-;;13417:67;13481:2;13476:3;13417:67;:::i;:::-;13410:74;;13514:34;13510:1;13505:3;13501:11;13494:55;13580:12;13575:2;13570:3;13566:12;13559:34;13619:2;13614:3;13610:12;13603:19;;13400:228;;;:::o;13634:374::-;;13797:67;13861:2;13856:3;13797:67;:::i;:::-;13790:74;;13894:34;13890:1;13885:3;13881:11;13874:55;13960:12;13955:2;13950:3;13946:12;13939:34;13999:2;13994:3;13990:12;13983:19;;13780:228;;;:::o;14014:373::-;;14177:67;14241:2;14236:3;14177:67;:::i;:::-;14170:74;;14274:34;14270:1;14265:3;14261:11;14254:55;14340:11;14335:2;14330:3;14326:12;14319:33;14378:2;14373:3;14369:12;14362:19;;14160:227;;;:::o;14393:320::-;;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14653:24;14649:1;14644:3;14640:11;14633:45;14704:2;14699:3;14695:12;14688:19;;14539:174;;;:::o;14719:392::-;;14882:67;14946:2;14941:3;14882:67;:::i;:::-;14875:74;;14979:34;14975:1;14970:3;14966:11;14959:55;15045:30;15040:2;15035:3;15031:12;15024:52;15102:2;15097:3;15093:12;15086:19;;14865:246;;;:::o;15117:330::-;;15280:67;15344:2;15339:3;15280:67;:::i;:::-;15273:74;;15377:34;15373:1;15368:3;15364:11;15357:55;15438:2;15433:3;15429:12;15422:19;;15263:184;;;:::o;15453:365::-;;15616:67;15680:2;15675:3;15616:67;:::i;:::-;15609:74;;15713:34;15709:1;15704:3;15700:11;15693:55;15779:3;15774:2;15769:3;15765:12;15758:25;15809:2;15804:3;15800:12;15793:19;;15599:219;;;:::o;15824:376::-;;15987:67;16051:2;16046:3;15987:67;:::i;:::-;15980:74;;16084:34;16080:1;16075:3;16071:11;16064:55;16150:14;16145:2;16140:3;16136:12;16129:36;16191:2;16186:3;16182:12;16175:19;;15970:230;;;:::o;16206:318::-;;16369:67;16433:2;16428:3;16369:67;:::i;:::-;16362:74;;16466:22;16462:1;16457:3;16453:11;16446:43;16515:2;16510:3;16506:12;16499:19;;16352:172;;;:::o;16530:316::-;;16693:67;16757:2;16752:3;16693:67;:::i;:::-;16686:74;;16790:20;16786:1;16781:3;16777:11;16770:41;16837:2;16832:3;16828:12;16821:19;;16676:170;;;:::o;16852:330::-;;17015:67;17079:2;17074:3;17015:67;:::i;:::-;17008:74;;17112:34;17108:1;17103:3;17099:11;17092:55;17173:2;17168:3;17164:12;17157:19;;16998:184;;;:::o;17188:330::-;;17351:67;17415:2;17410:3;17351:67;:::i;:::-;17344:74;;17448:34;17444:1;17439:3;17435:11;17428:55;17509:2;17504:3;17500:12;17493:19;;17334:184;;;:::o;17524:373::-;;17687:67;17751:2;17746:3;17687:67;:::i;:::-;17680:74;;17784:34;17780:1;17775:3;17771:11;17764:55;17850:11;17845:2;17840:3;17836:12;17829:33;17888:2;17883:3;17879:12;17872:19;;17670:227;;;:::o;17903:366::-;;18066:67;18130:2;18125:3;18066:67;:::i;:::-;18059:74;;18163:34;18159:1;18154:3;18150:11;18143:55;18229:4;18224:2;18219:3;18215:12;18208:26;18260:2;18255:3;18251:12;18244:19;;18049:220;;;:::o;18275:317::-;;18438:67;18502:2;18497:3;18438:67;:::i;:::-;18431:74;;18535:21;18531:1;18526:3;18522:11;18515:42;18583:2;18578:3;18574:12;18567:19;;18421:171;;;:::o;18598:320::-;;18761:67;18825:2;18820:3;18761:67;:::i;:::-;18754:74;;18858:24;18854:1;18849:3;18845:11;18838:45;18909:2;18904:3;18900:12;18893:19;;18744:174;;;:::o;18924:365::-;;19087:67;19151:2;19146:3;19087:67;:::i;:::-;19080:74;;19184:34;19180:1;19175:3;19171:11;19164:55;19250:3;19245:2;19240:3;19236:12;19229:25;19280:2;19275:3;19271:12;19264:19;;19070:219;;;:::o;19295:381::-;;19458:67;19522:2;19517:3;19458:67;:::i;:::-;19451:74;;19555:34;19551:1;19546:3;19542:11;19535:55;19621:19;19616:2;19611:3;19607:12;19600:41;19667:2;19662:3;19658:12;19651:19;;19441:235;;;:::o;19682:299::-;;19863:84;19945:1;19940:3;19863:84;:::i;:::-;19856:91;;19973:1;19968:3;19964:11;19957:18;;19846:135;;;:::o;19987:381::-;;20150:67;20214:2;20209:3;20150:67;:::i;:::-;20143:74;;20247:34;20243:1;20238:3;20234:11;20227:55;20313:19;20308:2;20303:3;20299:12;20292:41;20359:2;20354:3;20350:12;20343:19;;20133:235;;;:::o;20374:376::-;;20537:67;20601:2;20596:3;20537:67;:::i;:::-;20530:74;;20634:34;20630:1;20625:3;20621:11;20614:55;20700:14;20695:2;20690:3;20686:12;20679:36;20741:2;20736:3;20732:12;20725:19;;20520:230;;;:::o;20756:118::-;20843:24;20861:5;20843:24;:::i;:::-;20838:3;20831:37;20821:53;;:::o;20880:157::-;20985:45;21005:24;21023:5;21005:24;:::i;:::-;20985:45;:::i;:::-;20980:3;20973:58;20963:74;;:::o;21043:435::-;;21245:95;21336:3;21327:6;21245:95;:::i;:::-;21238:102;;21357:95;21448:3;21439:6;21357:95;:::i;:::-;21350:102;;21469:3;21462:10;;21227:251;;;;;:::o;21484:541::-;;21739:95;21830:3;21821:6;21739:95;:::i;:::-;21732:102;;21851:148;21995:3;21851:148;:::i;:::-;21844:155;;22016:3;22009:10;;21721:304;;;;:::o;22031:397::-;;22186:75;22257:3;22248:6;22186:75;:::i;:::-;22286:2;22281:3;22277:12;22270:19;;22299:75;22370:3;22361:6;22299:75;:::i;:::-;22399:2;22394:3;22390:12;22383:19;;22419:3;22412:10;;22175:253;;;;;:::o;22434:222::-;;22565:2;22554:9;22550:18;22542:26;;22578:71;22646:1;22635:9;22631:17;22622:6;22578:71;:::i;:::-;22532:124;;;;:::o;22662:640::-;;22895:3;22884:9;22880:19;22872:27;;22909:71;22977:1;22966:9;22962:17;22953:6;22909:71;:::i;:::-;22990:72;23058:2;23047:9;23043:18;23034:6;22990:72;:::i;:::-;23072;23140:2;23129:9;23125:18;23116:6;23072:72;:::i;:::-;23191:9;23185:4;23181:20;23176:2;23165:9;23161:18;23154:48;23219:76;23290:4;23281:6;23219:76;:::i;:::-;23211:84;;22862:440;;;;;;;:::o;23308:210::-;;23433:2;23422:9;23418:18;23410:26;;23446:65;23508:1;23497:9;23493:17;23484:6;23446:65;:::i;:::-;23400:118;;;;:::o;23524:313::-;;23675:2;23664:9;23660:18;23652:26;;23724:9;23718:4;23714:20;23710:1;23699:9;23695:17;23688:47;23752:78;23825:4;23816:6;23752:78;:::i;:::-;23744:86;;23642:195;;;;:::o;23843:419::-;;24047:2;24036:9;24032:18;24024:26;;24096:9;24090:4;24086:20;24082:1;24071:9;24067:17;24060:47;24124:131;24250:4;24124:131;:::i;:::-;24116:139;;24014:248;;;:::o;24268:419::-;;24472:2;24461:9;24457:18;24449:26;;24521:9;24515:4;24511:20;24507:1;24496:9;24492:17;24485:47;24549:131;24675:4;24549:131;:::i;:::-;24541:139;;24439:248;;;:::o;24693:419::-;;24897:2;24886:9;24882:18;24874:26;;24946:9;24940:4;24936:20;24932:1;24921:9;24917:17;24910:47;24974:131;25100:4;24974:131;:::i;:::-;24966:139;;24864:248;;;:::o;25118:419::-;;25322:2;25311:9;25307:18;25299:26;;25371:9;25365:4;25361:20;25357:1;25346:9;25342:17;25335:47;25399:131;25525:4;25399:131;:::i;:::-;25391:139;;25289:248;;;:::o;25543:419::-;;25747:2;25736:9;25732:18;25724:26;;25796:9;25790:4;25786:20;25782:1;25771:9;25767:17;25760:47;25824:131;25950:4;25824:131;:::i;:::-;25816:139;;25714:248;;;:::o;25968:419::-;;26172:2;26161:9;26157:18;26149:26;;26221:9;26215:4;26211:20;26207:1;26196:9;26192:17;26185:47;26249:131;26375:4;26249:131;:::i;:::-;26241:139;;26139:248;;;:::o;26393:419::-;;26597:2;26586:9;26582:18;26574:26;;26646:9;26640:4;26636:20;26632:1;26621:9;26617:17;26610:47;26674:131;26800:4;26674:131;:::i;:::-;26666:139;;26564:248;;;:::o;26818:419::-;;27022:2;27011:9;27007:18;26999:26;;27071:9;27065:4;27061:20;27057:1;27046:9;27042:17;27035:47;27099:131;27225:4;27099:131;:::i;:::-;27091:139;;26989:248;;;:::o;27243:419::-;;27447:2;27436:9;27432:18;27424:26;;27496:9;27490:4;27486:20;27482:1;27471:9;27467:17;27460:47;27524:131;27650:4;27524:131;:::i;:::-;27516:139;;27414:248;;;:::o;27668:419::-;;27872:2;27861:9;27857:18;27849:26;;27921:9;27915:4;27911:20;27907:1;27896:9;27892:17;27885:47;27949:131;28075:4;27949:131;:::i;:::-;27941:139;;27839:248;;;:::o;28093:419::-;;28297:2;28286:9;28282:18;28274:26;;28346:9;28340:4;28336:20;28332:1;28321:9;28317:17;28310:47;28374:131;28500:4;28374:131;:::i;:::-;28366:139;;28264:248;;;:::o;28518:419::-;;28722:2;28711:9;28707:18;28699:26;;28771:9;28765:4;28761:20;28757:1;28746:9;28742:17;28735:47;28799:131;28925:4;28799:131;:::i;:::-;28791:139;;28689:248;;;:::o;28943:419::-;;29147:2;29136:9;29132:18;29124:26;;29196:9;29190:4;29186:20;29182:1;29171:9;29167:17;29160:47;29224:131;29350:4;29224:131;:::i;:::-;29216:139;;29114:248;;;:::o;29368:419::-;;29572:2;29561:9;29557:18;29549:26;;29621:9;29615:4;29611:20;29607:1;29596:9;29592:17;29585:47;29649:131;29775:4;29649:131;:::i;:::-;29641:139;;29539:248;;;:::o;29793:419::-;;29997:2;29986:9;29982:18;29974:26;;30046:9;30040:4;30036:20;30032:1;30021:9;30017:17;30010:47;30074:131;30200:4;30074:131;:::i;:::-;30066:139;;29964:248;;;:::o;30218:419::-;;30422:2;30411:9;30407:18;30399:26;;30471:9;30465:4;30461:20;30457:1;30446:9;30442:17;30435:47;30499:131;30625:4;30499:131;:::i;:::-;30491:139;;30389:248;;;:::o;30643:419::-;;30847:2;30836:9;30832:18;30824:26;;30896:9;30890:4;30886:20;30882:1;30871:9;30867:17;30860:47;30924:131;31050:4;30924:131;:::i;:::-;30916:139;;30814:248;;;:::o;31068:419::-;;31272:2;31261:9;31257:18;31249:26;;31321:9;31315:4;31311:20;31307:1;31296:9;31292:17;31285:47;31349:131;31475:4;31349:131;:::i;:::-;31341:139;;31239:248;;;:::o;31493:419::-;;31697:2;31686:9;31682:18;31674:26;;31746:9;31740:4;31736:20;31732:1;31721:9;31717:17;31710:47;31774:131;31900:4;31774:131;:::i;:::-;31766:139;;31664:248;;;:::o;31918:419::-;;32122:2;32111:9;32107:18;32099:26;;32171:9;32165:4;32161:20;32157:1;32146:9;32142:17;32135:47;32199:131;32325:4;32199:131;:::i;:::-;32191:139;;32089:248;;;:::o;32343:419::-;;32547:2;32536:9;32532:18;32524:26;;32596:9;32590:4;32586:20;32582:1;32571:9;32567:17;32560:47;32624:131;32750:4;32624:131;:::i;:::-;32616:139;;32514:248;;;:::o;32768:419::-;;32972:2;32961:9;32957:18;32949:26;;33021:9;33015:4;33011:20;33007:1;32996:9;32992:17;32985:47;33049:131;33175:4;33049:131;:::i;:::-;33041:139;;32939:248;;;:::o;33193:419::-;;33397:2;33386:9;33382:18;33374:26;;33446:9;33440:4;33436:20;33432:1;33421:9;33417:17;33410:47;33474:131;33600:4;33474:131;:::i;:::-;33466:139;;33364:248;;;:::o;33618:419::-;;33822:2;33811:9;33807:18;33799:26;;33871:9;33865:4;33861:20;33857:1;33846:9;33842:17;33835:47;33899:131;34025:4;33899:131;:::i;:::-;33891:139;;33789:248;;;:::o;34043:419::-;;34247:2;34236:9;34232:18;34224:26;;34296:9;34290:4;34286:20;34282:1;34271:9;34267:17;34260:47;34324:131;34450:4;34324:131;:::i;:::-;34316:139;;34214:248;;;:::o;34468:419::-;;34672:2;34661:9;34657:18;34649:26;;34721:9;34715:4;34711:20;34707:1;34696:9;34692:17;34685:47;34749:131;34875:4;34749:131;:::i;:::-;34741:139;;34639:248;;;:::o;34893:419::-;;35097:2;35086:9;35082:18;35074:26;;35146:9;35140:4;35136:20;35132:1;35121:9;35117:17;35110:47;35174:131;35300:4;35174:131;:::i;:::-;35166:139;;35064:248;;;:::o;35318:419::-;;35522:2;35511:9;35507:18;35499:26;;35571:9;35565:4;35561:20;35557:1;35546:9;35542:17;35535:47;35599:131;35725:4;35599:131;:::i;:::-;35591:139;;35489:248;;;:::o;35743:419::-;;35947:2;35936:9;35932:18;35924:26;;35996:9;35990:4;35986:20;35982:1;35971:9;35967:17;35960:47;36024:131;36150:4;36024:131;:::i;:::-;36016:139;;35914:248;;;:::o;36168:419::-;;36372:2;36361:9;36357:18;36349:26;;36421:9;36415:4;36411:20;36407:1;36396:9;36392:17;36385:47;36449:131;36575:4;36449:131;:::i;:::-;36441:139;;36339:248;;;:::o;36593:419::-;;36797:2;36786:9;36782:18;36774:26;;36846:9;36840:4;36836:20;36832:1;36821:9;36817:17;36810:47;36874:131;37000:4;36874:131;:::i;:::-;36866:139;;36764:248;;;:::o;37018:419::-;;37222:2;37211:9;37207:18;37199:26;;37271:9;37265:4;37261:20;37257:1;37246:9;37242:17;37235:47;37299:131;37425:4;37299:131;:::i;:::-;37291:139;;37189:248;;;:::o;37443:222::-;;37574:2;37563:9;37559:18;37551:26;;37587:71;37655:1;37644:9;37640:17;37631:6;37587:71;:::i;:::-;37541:124;;;;:::o;37671:283::-;;37737:2;37731:9;37721:19;;37779:4;37771:6;37767:17;37886:6;37874:10;37871:22;37850:18;37838:10;37835:34;37832:62;37829:2;;;37897:18;;:::i;:::-;37829:2;37937:10;37933:2;37926:22;37711:243;;;;:::o;37960:311::-;;38127:18;38119:6;38116:30;38113:2;;;38149:18;;:::i;:::-;38113:2;38199:4;38191:6;38187:17;38179:25;;38259:4;38253;38249:15;38241:23;;38042:229;;;:::o;38277:331::-;;38428:18;38420:6;38417:30;38414:2;;;38450:18;;:::i;:::-;38414:2;38535:4;38531:9;38524:4;38516:6;38512:17;38508:33;38500:41;;38596:4;38590;38586:15;38578:23;;38343:265;;;:::o;38614:332::-;;38766:18;38758:6;38755:30;38752:2;;;38788:18;;:::i;:::-;38752:2;38873:4;38869:9;38862:4;38854:6;38850:17;38846:33;38838:41;;38934:4;38928;38924:15;38916:23;;38681:265;;;:::o;38952:98::-;;39037:5;39031:12;39021:22;;39010:40;;;:::o;39056:99::-;;39142:5;39136:12;39126:22;;39115:40;;;:::o;39161:168::-;;39278:6;39273:3;39266:19;39318:4;39313:3;39309:14;39294:29;;39256:73;;;;:::o;39335:169::-;;39453:6;39448:3;39441:19;39493:4;39488:3;39484:14;39469:29;;39431:73;;;;:::o;39510:148::-;;39649:3;39634:18;;39624:34;;;;:::o;39664:305::-;;39723:20;39741:1;39723:20;:::i;:::-;39718:25;;39757:20;39775:1;39757:20;:::i;:::-;39752:25;;39911:1;39843:66;39839:74;39836:1;39833:81;39830:2;;;39917:18;;:::i;:::-;39830:2;39961:1;39958;39954:9;39947:16;;39708:261;;;;:::o;39975:185::-;;40032:20;40050:1;40032:20;:::i;:::-;40027:25;;40066:20;40084:1;40066:20;:::i;:::-;40061:25;;40105:1;40095:2;;40110:18;;:::i;:::-;40095:2;40152:1;40149;40145:9;40140:14;;40017:143;;;;:::o;40166:348::-;;40229:20;40247:1;40229:20;:::i;:::-;40224:25;;40263:20;40281:1;40263:20;:::i;:::-;40258:25;;40451:1;40383:66;40379:74;40376:1;40373:81;40368:1;40361:9;40354:17;40350:105;40347:2;;;40458:18;;:::i;:::-;40347:2;40506:1;40503;40499:9;40488:20;;40214:300;;;;:::o;40520:191::-;;40580:20;40598:1;40580:20;:::i;:::-;40575:25;;40614:20;40632:1;40614:20;:::i;:::-;40609:25;;40653:1;40650;40647:8;40644:2;;;40658:18;;:::i;:::-;40644:2;40703:1;40700;40696:9;40688:17;;40565:146;;;;:::o;40717:96::-;;40783:24;40801:5;40783:24;:::i;:::-;40772:35;;40762:51;;;:::o;40819:90::-;;40896:5;40889:13;40882:21;40871:32;;40861:48;;;:::o;40915:149::-;;40991:66;40984:5;40980:78;40969:89;;40959:105;;;:::o;41070:126::-;;41147:42;41140:5;41136:54;41125:65;;41115:81;;;:::o;41202:77::-;;41268:5;41257:16;;41247:32;;;:::o;41285:154::-;41369:6;41364:3;41359;41346:30;41431:1;41422:6;41417:3;41413:16;41406:27;41336:103;;;:::o;41445:307::-;41513:1;41523:113;41537:6;41534:1;41531:13;41523:113;;;41622:1;41617:3;41613:11;41607:18;41603:1;41598:3;41594:11;41587:39;41559:2;41556:1;41552:10;41547:15;;41523:113;;;41654:6;41651:1;41648:13;41645:2;;;41734:1;41725:6;41720:3;41716:16;41709:27;41645:2;41494:258;;;;:::o;41758:320::-;;41839:1;41833:4;41829:12;41819:22;;41886:1;41880:4;41876:12;41907:18;41897:2;;41963:4;41955:6;41951:17;41941:27;;41897:2;42025;42017:6;42014:14;41994:18;41991:38;41988:2;;;42044:18;;:::i;:::-;41988:2;41809:269;;;;:::o;42084:233::-;;42146:24;42164:5;42146:24;:::i;:::-;42137:33;;42192:66;42185:5;42182:77;42179:2;;;42262:18;;:::i;:::-;42179:2;42309:1;42302:5;42298:13;42291:20;;42127:190;;;:::o;42323:79::-;;42391:5;42380:16;;42370:32;;;:::o;42408:176::-;;42457:20;42475:1;42457:20;:::i;:::-;42452:25;;42491:20;42509:1;42491:20;:::i;:::-;42486:25;;42530:1;42520:2;;42535:18;;:::i;:::-;42520:2;42576:1;42573;42569:9;42564:14;;42442:142;;;;:::o;42590:180::-;42638:77;42635:1;42628:88;42735:4;42732:1;42725:15;42759:4;42756:1;42749:15;42776:180;42824:77;42821:1;42814:88;42921:4;42918:1;42911:15;42945:4;42942:1;42935:15;42962:180;43010:77;43007:1;43000:88;43107:4;43104:1;43097:15;43131:4;43128:1;43121:15;43148:180;43196:77;43193:1;43186:88;43293:4;43290:1;43283:15;43317:4;43314:1;43307:15;43334:102;;43426:2;43422:7;43417:2;43410:5;43406:14;43402:28;43392:38;;43382:54;;;:::o;43442:122::-;43515:24;43533:5;43515:24;:::i;:::-;43508:5;43505:35;43495:2;;43554:1;43551;43544:12;43495:2;43485:79;:::o;43570:116::-;43640:21;43655:5;43640:21;:::i;:::-;43633:5;43630:32;43620:2;;43676:1;43673;43666:12;43620:2;43610:76;:::o;43692:120::-;43764:23;43781:5;43764:23;:::i;:::-;43757:5;43754:34;43744:2;;43802:1;43799;43792:12;43744:2;43734:78;:::o;43818:122::-;43891:24;43909:5;43891:24;:::i;:::-;43884:5;43881:35;43871:2;;43930:1;43927;43920:12;43871:2;43861:79;:::o

Swarm Source

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