ETH Price: $3,352.17 (-2.83%)
Gas: 2 Gwei

Token

Magnum (MAGNUM)
 

Overview

Max Total Supply

999 MAGNUM

Holders

364

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MAGNUM
0x9250b2Ac03ffFb86FD14f6fBA9a8dea0Dcf18720
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Magnum

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-11-30
*/

// 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: Magnum.sol
pragma solidity ^0.8.0;

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

    uint256 public constant MAX_SUPPLY = 10000;

    // Pre-Presale
    bool public claimActive = true;
    uint256 public constant PRE_PRESALE_START_TIME = 1638297020; // 1:30pm EST November 30th 2021

    // Presale
    uint256 public constant PRESALE_START_TIME = 1638302400; // 3pm EST November 30th 2021
    uint256 public constant PRESALE_MINT_PRICE = 100000000000000000; // 0.1 ETH
    uint256 public constant PRESALE_SUPPLY = 3333;
    
    // Public Sale 1
    bool public firstPublicSaleStarted = false;
    uint256 public constant PUBLIC_SALE_1_MINT_PRICE = 150000000000000000; // 0.15 ETH
    uint256 public constant PUBLIC_SALE_1_SUPPLY = 6666;
    
    // Public Sale 2
    bool public secondPublicSaleStarted = false;
    uint256 public PUBLIC_SALE_2_MINT_PRICE = 200000000000000000; // 0.2 ETH

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

    // Base URI
    string private _baseURIextended;

    struct PreviousHolders {
        uint256 amtPrePresaleMints;
        uint256 amtPrePresaleMinted;
        uint256 amtClaimable;
        uint256 amtClaimed;
    }

    struct WhitelistedUser {
        uint256 amtMinted;
        bool exists;
    }

    mapping(address => PreviousHolders) prevHolders;
    mapping(address => WhitelistedUser) whitelistedUsers;

    constructor() ERC721("Magnum", "MAGNUM") {
    }
 
    function batchAddPrevHolders(address[] memory _addresses, uint256 amtPrePresaleMints, uint256 amtClaimable) public onlyOwner {
       uint size = _addresses.length;
       for (uint256 i = 0; i < size; i++){
          prevHolders[_addresses[i]].amtPrePresaleMints = amtPrePresaleMints;
          prevHolders[_addresses[i]].amtClaimable = amtClaimable;
       }
    }

    function batchAddToWhitelist(address[] memory _addresses) public onlyOwner {
        uint size = _addresses.length;
        for (uint256 i = 0; i < size; i++){
            whitelistedUsers[_addresses[i]].amtMinted = 0;
            whitelistedUsers[_addresses[i]].exists = true;
        }
    }

    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();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    function getClaimAmount(address _addr) public view returns (uint256) {
        return prevHolders[_addr].amtClaimable;
    }

    function getAmountClaimed(address _addr) public view returns (uint256) {
        return prevHolders[_addr].amtClaimed;
    }

    function getPrePresaleAmount(address _addr) public view returns (uint256) {
        return prevHolders[_addr].amtPrePresaleMints;
    }

    function getPrePresaleMintedAmount(address _addr) public view returns (uint256) {
        return prevHolders[_addr].amtPrePresaleMinted;
    }

    function claim(uint256 amountToClaim) public {
        require(prevHolders[msg.sender].amtClaimable != 0, "You cannot claim.");

        uint256 maxClaimable = prevHolders[msg.sender].amtClaimable;

        require(claimActive == true, "Claiming is closed.");
        require(block.timestamp >= PRE_PRESALE_START_TIME, "Presale has not started.");
        require(saleStarted == true, "Sale is not active.");
        require(maxClaimable != 0, "Max claimable must be set.");
        require(amountToClaim > 0, "Must mint 1.");
        require(amountToClaim <= maxClaimable, "Exceeds max mintable.");
        require(prevHolders[msg.sender].amtClaimed + amountToClaim <= maxClaimable, "You cannot claim this many.");
        require(totalSupply() + amountToClaim <= MAX_SUPPLY, "Exceeds max supply.");

        for (uint256 i = 0; i < amountToClaim; i++) {
            uint256 mintIndex = totalSupply();
            prevHolders[msg.sender].amtClaimed += 1;
            _safeMint(msg.sender, mintIndex);
        }
    }

    function mintPrePresale(uint256 amountToMint) public payable {
        uint256 maxMintable = prevHolders[msg.sender].amtPrePresaleMints;

        require(saleStarted == true, "Sale is not active.");
        require(amountToMint > 0, "Must mint 1.");
        require(maxMintable > 0, "Must be able to mint more than one.");
        require(block.timestamp >= PRE_PRESALE_START_TIME, "Presale has not started.");
        require(prevHolders[msg.sender].amtPrePresaleMinted + amountToMint <= maxMintable, "You cannot mint this many.");

        require(PRESALE_MINT_PRICE.mul(amountToMint) == msg.value, "Incorrect Ether value.");

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

    function mintPresale(uint256 amountToMint) public payable {
        require(saleStarted == true, "Sale is not active.");
        require(whitelistedUsers[msg.sender].exists == true, "Must be on the whitelist.");
        require(amountToMint > 0, "Must mint 1.");
        require(amountToMint <= 2, "Exceeds max mintable.");
        require(whitelistedUsers[msg.sender].amtMinted + amountToMint <= 2, "You cannot mint this many.");
        require(block.timestamp >= PRESALE_START_TIME, "Presale has not started.");
        require(firstPublicSaleStarted == false, "Presale has ended.");
        require(totalSupply() + amountToMint <= PRESALE_SUPPLY, "Max supply for the presale is 3333.");

        require(PRESALE_MINT_PRICE.mul(amountToMint) == msg.value, "Incorrect Ether value.");

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

    function mintPublicSale1(uint256 amountToMint) public payable {
        require(saleStarted == true, "Sale is not active.");
        require(amountToMint > 0, "Must mint 1.");
        require(amountToMint <= 10, "Max mint is 10 per transaction.");
        require(firstPublicSaleStarted == true, "The first public sale has not started.");
        require(secondPublicSaleStarted == false, "You cannot mint during this time.");
        require(totalSupply() + amountToMint <= PUBLIC_SALE_1_SUPPLY, "Max supply for this part of the sale is 6666.");

        require(PUBLIC_SALE_1_MINT_PRICE.mul(amountToMint) == msg.value, "Incorrect Ether value.");

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

    function mintPublicSale2(uint256 amountToMint) public payable {
        require(saleStarted == true, "Sale is not active.");
        require(secondPublicSaleStarted == true, "Sale has not started.");
        require(totalSupply() < MAX_SUPPLY, "All NFTs have been minted.");
        require(totalSupply() + amountToMint <= MAX_SUPPLY, "Transaction exceeds max supply.");
        require(amountToMint > 0, "Must mint 1.");
        require(amountToMint <= 10, "Max mint is 10 per transaction.");
        
        require(PUBLIC_SALE_2_MINT_PRICE.mul(amountToMint) == msg.value, "Incorrect Ether value.");

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

    function flipSaleState() public onlyOwner {
        saleStarted = !saleStarted;
    }

    function flipClaimState() public onlyOwner {
        claimActive = !claimActive;
    }

    function flipFirstPublicSaleState() public onlyOwner {
        firstPublicSaleStarted = !firstPublicSaleStarted;
    }

    function flipSecondPublicSaleState() public onlyOwner {
        secondPublicSaleStarted = !secondPublicSaleStarted;
    }

    function setSecondPublicSaleMintPrice(uint256 newPrice) public onlyOwner {
        PUBLIC_SALE_2_MINT_PRICE = newPrice;
    }

    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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_PRICE","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":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_PRESALE_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_1_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_1_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_2_MINT_PRICE","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":"_addresses","type":"address[]"},{"internalType":"uint256","name":"amtPrePresaleMints","type":"uint256"},{"internalType":"uint256","name":"amtClaimable","type":"uint256"}],"name":"batchAddPrevHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"batchAddToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToClaim","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstPublicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipClaimState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipFirstPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSecondPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getAmountClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getClaimAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getPrePresaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getPrePresaleMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mintPrePresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mintPublicSale1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mintPublicSale2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondPublicSaleStarted","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":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setSecondPublicSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506000600a60166101000a81548160ff0219169083151502179055506702c68af0bb140000600b556001600c60006101000a81548160ff0219169083151502179055503480156200008957600080fd5b506040518060400160405280600681526020017f4d61676e756d00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d41474e554d000000000000000000000000000000000000000000000000000081525081600090805190602001906200010e929190620001e9565b50806001908051906020019062000127929190620001e9565b50505060006200013c620001e160201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002fe565b600033905090565b828054620001f79062000299565b90600052602060002090601f0160209004810192826200021b576000855562000267565b82601f106200023657805160ff191683800117855562000267565b8280016001018555821562000267579182015b828111156200026657825182559160200191906001019062000249565b5b5090506200027691906200027a565b5090565b5b80821115620002955760008160009055506001016200027b565b5090565b60006002820490506001821680620002b257607f821691505b60208210811415620002c957620002c8620002cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615ede806200030e6000396000f3fe6080604052600436106102ae5760003560e01c80635e66dde511610175578063b515ac31116100dc578063dde070e811610095578063ed096ca51161006f578063ed096ca514610a65578063f2fde38b14610a81578063f49716a014610aaa578063f759867a14610ad3576102ae565b8063dde070e8146109cf578063e215b53314610a0c578063e985e9c514610a28576102ae565b8063b515ac31146108d3578063b88d4fde146108ea578063c87b56dd14610913578063d1b73b8a14610950578063d36862e814610967578063d4a6a2fd146109a4576102ae565b80638da5cb5b1161012e5780638da5cb5b146107c157806395d89b41146107ec57806396fea84214610817578063a22cb46514610842578063a7a62fd51461086b578063af68eb4e146108a8576102ae565b80635e66dde5146106c55780636352211e146106ee5780636d60e6c11461072b57806370a0823114610742578063715018a61461077f57806373138e4f14610796576102ae565b806333d1626b116102195780633d5d82ee116101d25780633d5d82ee146105b557806342842e0e146105e0578063466410b7146106095780634f6ccce71461063457806355f804b3146106715780635c474f9e1461069a576102ae565b806333d1626b146104d857806334918dfd14610515578063379607f51461052c5780633bfc38a7146105555780633ccfd60b146105805780633ce174171461058a576102ae565b806323b872dd1161026b57806323b872dd146103c857806325102f27146103f15780632a234e571461041c5780632db6fa36146104475780632f745c591461047057806332cb6b0c146104ad576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b31461035857806318160ddd146103815780631a8939e2146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d5919061464d565b610aef565b6040516102e791906154d0565b60405180910390f35b3480156102fc57600080fd5b50610305610b69565b60405161031291906154eb565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d91906146e0565b610bfb565b60405161034f9190615469565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190614569565b610c80565b005b34801561038d57600080fd5b50610396610d98565b6040516103a391906159ed565b60405180910390f35b6103c660048036038101906103c191906146e0565b610da5565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190614463565b61101a565b005b3480156103fd57600080fd5b5061040661107a565b60405161041391906159ed565b60405180910390f35b34801561042857600080fd5b50610431611082565b60405161043e91906159ed565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906145a5565b61108e565b005b34801561047c57600080fd5b5061049760048036038101906104929190614569565b611256565b6040516104a491906159ed565b60405180910390f35b3480156104b957600080fd5b506104c26112fb565b6040516104cf91906159ed565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906143fe565b611301565b60405161050c91906159ed565b60405180910390f35b34801561052157600080fd5b5061052a61134d565b005b34801561053857600080fd5b50610553600480360381019061054e91906146e0565b6113f5565b005b34801561056157600080fd5b5061056a6117fa565b60405161057791906159ed565b60405180910390f35b610588611802565b005b34801561059657600080fd5b5061059f6118be565b6040516105ac91906159ed565b60405180910390f35b3480156105c157600080fd5b506105ca6118c4565b6040516105d791906159ed565b60405180910390f35b3480156105ec57600080fd5b5061060760048036038101906106029190614463565b6118d0565b005b34801561061557600080fd5b5061061e6118f0565b60405161062b91906154d0565b60405180910390f35b34801561064057600080fd5b5061065b600480360381019061065691906146e0565b611903565b60405161066891906159ed565b60405180910390f35b34801561067d57600080fd5b506106986004803603810190610693919061469f565b61199a565b005b3480156106a657600080fd5b506106af611a30565b6040516106bc91906154d0565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e791906146e0565b611a43565b005b3480156106fa57600080fd5b50610715600480360381019061071091906146e0565b611ac9565b6040516107229190615469565b60405180910390f35b34801561073757600080fd5b50610740611b7b565b005b34801561074e57600080fd5b50610769600480360381019061076491906143fe565b611c23565b60405161077691906159ed565b60405180910390f35b34801561078b57600080fd5b50610794611cdb565b005b3480156107a257600080fd5b506107ab611e18565b6040516107b891906159ed565b60405180910390f35b3480156107cd57600080fd5b506107d6611e1e565b6040516107e39190615469565b60405180910390f35b3480156107f857600080fd5b50610801611e48565b60405161080e91906154eb565b60405180910390f35b34801561082357600080fd5b5061082c611eda565b60405161083991906159ed565b60405180910390f35b34801561084e57600080fd5b506108696004803603810190610864919061452d565b611ee0565b005b34801561087757600080fd5b50610892600480360381019061088d91906143fe565b612061565b60405161089f91906159ed565b60405180910390f35b3480156108b457600080fd5b506108bd6120ad565b6040516108ca91906154d0565b60405180910390f35b3480156108df57600080fd5b506108e86120c0565b005b3480156108f657600080fd5b50610911600480360381019061090c91906144b2565b612168565b005b34801561091f57600080fd5b5061093a600480360381019061093591906146e0565b6121ca565b60405161094791906154eb565b60405180910390f35b34801561095c57600080fd5b50610965612229565b005b34801561097357600080fd5b5061098e600480360381019061098991906143fe565b6122d1565b60405161099b91906159ed565b60405180910390f35b3480156109b057600080fd5b506109b961231d565b6040516109c691906154d0565b60405180910390f35b3480156109db57600080fd5b506109f660048036038101906109f191906143fe565b612330565b604051610a0391906159ed565b60405180910390f35b610a266004803603810190610a2191906146e0565b61237c565b005b348015610a3457600080fd5b50610a4f6004803603810190610a4a9190614427565b6125e0565b604051610a5c91906154d0565b60405180910390f35b610a7f6004803603810190610a7a91906146e0565b612674565b005b348015610a8d57600080fd5b50610aa86004803603810190610aa391906143fe565b61295e565b005b348015610ab657600080fd5b50610ad16004803603810190610acc91906145e6565b612b0a565b005b610aed6004803603810190610ae891906146e0565b612cbf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b625750610b61826130a6565b5b9050919050565b606060008054610b7890615cd3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba490615cd3565b8015610bf15780601f10610bc657610100808354040283529160200191610bf1565b820191906000526020600020905b815481529060010190602001808311610bd457829003601f168201915b5050505050905090565b6000610c0682613188565b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c906157cd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8b82611ac9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf3906158cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1b6131f4565b73ffffffffffffffffffffffffffffffffffffffff161480610d4a5750610d4981610d446131f4565b6125e0565b5b610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d80906156cd565b60405180910390fd5b610d9383836131fc565b505050565b6000600880549050905090565b60011515600c60009054906101000a900460ff16151514610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061586d565b60405180910390fd5b60008111610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e359061594d565b60405180910390fd5b600a811115610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906156ad565b60405180910390fd5b60011515600a60159054906101000a900460ff16151514610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf9061554d565b60405180910390fd5b60001515600a60169054906101000a900460ff16151514610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f259061578d565b60405180910390fd5b611a0a81610f3a610d98565b610f449190615b08565b1115610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c906158ad565b60405180910390fd5b34610fa182670214e8348c4f00006132b590919063ffffffff16565b14610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061574d565b60405180910390fd5b60005b81811015611016576000610ff6610d98565b905061100233826132cb565b50808061100e90615d05565b915050610fe4565b5050565b61102b6110256131f4565b826132e9565b61106a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110619061590d565b60405180910390fd5b6110758383836133c7565b505050565b6361a682c081565b67016345785d8a000081565b6110966131f4565b73ffffffffffffffffffffffffffffffffffffffff166110b4611e1e565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061580d565b60405180910390fd5b60008151905060005b81811015611251576000600f600085848151811061115a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506001600f60008584815181106111e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548160ff021916908315150217905550808061124990615d05565b915050611113565b505050565b600061126183611c23565b82106112a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112999061556d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b6113556131f4565b73ffffffffffffffffffffffffffffffffffffffff16611373611e1e565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c09061580d565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154141561147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114729061558d565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154905060011515600a60149054906101000a900460ff16151514611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061576d565b60405180910390fd5b6361a66dbc42101561155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061568d565b60405180910390fd5b60011515600c60009054906101000a900460ff161515146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061586d565b60405180910390fd5b60008114156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f0906159cd565b60405180910390fd5b6000821161163c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116339061594d565b60405180910390fd5b8082111561167f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116769061588d565b60405180910390fd5b8082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301546116ce9190615b08565b111561170f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117069061596d565b60405180910390fd5b6127108261171b610d98565b6117259190615b08565b1115611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d9061584d565b60405180910390fd5b60005b828110156117f557600061177b610d98565b90506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160008282546117d09190615b08565b925050819055506117e133826132cb565b5080806117ed90615d05565b915050611769565b505050565b6361a66dbc81565b61180a6131f4565b73ffffffffffffffffffffffffffffffffffffffff16611828611e1e565b73ffffffffffffffffffffffffffffffffffffffff161461187e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118759061580d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506118bc57600080fd5b565b600b5481565b670214e8348c4f000081565b6118eb83838360405180602001604052806000815250612168565b505050565b600a60159054906101000a900460ff1681565b600061190d610d98565b821061194e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119459061598d565b60405180910390fd5b60088281548110611988577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6119a26131f4565b73ffffffffffffffffffffffffffffffffffffffff166119c0611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d9061580d565b60405180910390fd5b80600d9080519060200190611a2c92919061418c565b5050565b600c60009054906101000a900460ff1681565b611a4b6131f4565b73ffffffffffffffffffffffffffffffffffffffff16611a69611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab69061580d565b60405180910390fd5b80600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b699061572d565b60405180910390fd5b80915050919050565b611b836131f4565b73ffffffffffffffffffffffffffffffffffffffff16611ba1611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee9061580d565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b9061570d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ce36131f4565b73ffffffffffffffffffffffffffffffffffffffff16611d01611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e9061580d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610d0581565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e5790615cd3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8390615cd3565b8015611ed05780601f10611ea557610100808354040283529160200191611ed0565b820191906000526020600020905b815481529060010190602001808311611eb357829003601f168201915b5050505050905090565b611a0a81565b611ee86131f4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d9061562d565b60405180910390fd5b8060056000611f636131f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120106131f4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205591906154d0565b60405180910390a35050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600a60169054906101000a900460ff1681565b6120c86131f4565b73ffffffffffffffffffffffffffffffffffffffff166120e6611e1e565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121339061580d565b60405180910390fd5b600a60169054906101000a900460ff1615600a60166101000a81548160ff021916908315150217905550565b6121796121736131f4565b836132e9565b6121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af9061590d565b60405180910390fd5b6121c484848484613623565b50505050565b606060006121d661367f565b905060008151116121f65760405180602001604052806000815250612221565b8061220084613711565b604051602001612211929190615445565b6040516020818303038152906040525b915050919050565b6122316131f4565b73ffffffffffffffffffffffffffffffffffffffff1661224f611e1e565b73ffffffffffffffffffffffffffffffffffffffff16146122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c9061580d565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301549050919050565b600a60149054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60011515600c60009054906101000a900460ff161515146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c99061586d565b60405180910390fd5b60011515600a60169054906101000a900460ff16151514612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f9061552d565b60405180910390fd5b612710612433610d98565b10612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a9061564d565b60405180910390fd5b6127108161247f610d98565b6124899190615b08565b11156124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c19061550d565b60405180910390fd5b6000811161250d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125049061594d565b60405180910390fd5b600a811115612551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612548906156ad565b60405180910390fd5b3461256782600b546132b590919063ffffffff16565b146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e9061574d565b60405180910390fd5b60005b818110156125dc5760006125bc610d98565b90506125c833826132cb565b5080806125d490615d05565b9150506125aa565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905060011515600c60009054906101000a900460ff16151514612711576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127089061586d565b60405180910390fd5b60008211612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b9061594d565b60405180910390fd5b60008111612797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e906156ed565b60405180910390fd5b6361a66dbc4210156127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d59061568d565b60405180910390fd5b8082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461282d9190615b08565b111561286e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128659061592d565b60405180910390fd5b3461288a8367016345785d8a00006132b590919063ffffffff16565b146128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c19061574d565b60405180910390fd5b60005b828110156129595760006128df610d98565b90506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008282546129349190615b08565b9250508190555061294533826132cb565b50808061295190615d05565b9150506128cd565b505050565b6129666131f4565b73ffffffffffffffffffffffffffffffffffffffff16612984611e1e565b73ffffffffffffffffffffffffffffffffffffffff16146129da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d19061580d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a41906155cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b126131f4565b73ffffffffffffffffffffffffffffffffffffffff16612b30611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614612b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7d9061580d565b60405180910390fd5b60008351905060005b81811015612cb85783600e6000878481518110612bd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555082600e6000878481518110612c5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055508080612cb090615d05565b915050612b8f565b5050505050565b60011515600c60009054906101000a900460ff16151514612d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c9061586d565b60405180910390fd5b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16151514612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da2906159ad565b60405180910390fd5b60008111612dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de59061594d565b60405180910390fd5b6002811115612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e299061588d565b60405180910390fd5b600281600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154612e829190615b08565b1115612ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eba9061592d565b60405180910390fd5b6361a682c0421015612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f019061568d565b60405180910390fd5b60001515600a60159054906101000a900460ff16151514612f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f57906157ed565b60405180910390fd5b610d0581612f6c610d98565b612f769190615b08565b1115612fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fae906158ed565b60405180910390fd5b34612fd38267016345785d8a00006132b590919063ffffffff16565b14613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a9061574d565b60405180910390fd5b60005b818110156130a2576000613028610d98565b90506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461307d9190615b08565b9250508190555061308e33826132cb565b50808061309a90615d05565b915050613016565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061317157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131815750613180826138be565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661326f83611ac9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836132c39190615b8f565b905092915050565b6132e5828260405180602001604052806000815250613928565b5050565b60006132f482613188565b613333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332a9061566d565b60405180910390fd5b600061333e83611ac9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806133ad57508373ffffffffffffffffffffffffffffffffffffffff1661339584610bfb565b73ffffffffffffffffffffffffffffffffffffffff16145b806133be57506133bd81856125e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166133e782611ac9565b73ffffffffffffffffffffffffffffffffffffffff161461343d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134349061582d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a49061560d565b60405180910390fd5b6134b8838383613983565b6134c36000826131fc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135139190615be9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461356a9190615b08565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61362e8484846133c7565b61363a84848484613a97565b613679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613670906155ad565b60405180910390fd5b50505050565b6060600d805461368e90615cd3565b80601f01602080910402602001604051908101604052809291908181526020018280546136ba90615cd3565b80156137075780601f106136dc57610100808354040283529160200191613707565b820191906000526020600020905b8154815290600101906020018083116136ea57829003601f168201915b5050505050905090565b60606000821415613759576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138b9565b600082905060005b6000821461378b57808061377490615d05565b915050600a826137849190615b5e565b9150613761565b60008167ffffffffffffffff8111156137cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137ff5781602001600182028036833780820191505090505b5090505b600085146138b2576001826138189190615be9565b9150600a856138279190615d4e565b60306138339190615b08565b60f81b81838151811061386f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138ab9190615b5e565b9450613803565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6139328383613c2e565b61393f6000848484613a97565b61397e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613975906155ad565b60405180910390fd5b505050565b61398e838383613dfc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139d1576139cc81613e01565b613a10565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a0f57613a0e8382613e4a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a5357613a4e81613fb7565b613a92565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613a9157613a9082826140fa565b5b5b505050565b6000613ab88473ffffffffffffffffffffffffffffffffffffffff16614179565b15613c21578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613ae16131f4565b8786866040518563ffffffff1660e01b8152600401613b039493929190615484565b602060405180830381600087803b158015613b1d57600080fd5b505af1925050508015613b4e57506040513d601f19601f82011682018060405250810190613b4b9190614676565b60015b613bd1573d8060008114613b7e576040519150601f19603f3d011682016040523d82523d6000602084013e613b83565b606091505b50600081511415613bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bc0906155ad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c26565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c95906157ad565b60405180910390fd5b613ca781613188565b15613ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cde906155ed565b60405180910390fd5b613cf360008383613983565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d439190615b08565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613e5784611c23565b613e619190615be9565b9050600060076000848152602001908152602001600020549050818114613f46576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613fcb9190615be9565b9050600060096000848152602001908152602001600020549050600060088381548110614021577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110614069577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806140de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061410583611c23565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461419890615cd3565b90600052602060002090601f0160209004810192826141ba5760008555614201565b82601f106141d357805160ff1916838001178555614201565b82800160010185558215614201579182015b828111156142005782518255916020019190600101906141e5565b5b50905061420e9190614212565b5090565b5b8082111561422b576000816000905550600101614213565b5090565b600061424261423d84615a39565b615a08565b9050808382526020820190508285602086028201111561426157600080fd5b60005b8581101561429157816142778882614317565b845260208401935060208301925050600181019050614264565b5050509392505050565b60006142ae6142a984615a65565b615a08565b9050828152602081018484840111156142c657600080fd5b6142d1848285615c91565b509392505050565b60006142ec6142e784615a95565b615a08565b90508281526020810184848401111561430457600080fd5b61430f848285615c91565b509392505050565b60008135905061432681615e4c565b92915050565b600082601f83011261433d57600080fd5b813561434d84826020860161422f565b91505092915050565b60008135905061436581615e63565b92915050565b60008135905061437a81615e7a565b92915050565b60008151905061438f81615e7a565b92915050565b600082601f8301126143a657600080fd5b81356143b684826020860161429b565b91505092915050565b600082601f8301126143d057600080fd5b81356143e08482602086016142d9565b91505092915050565b6000813590506143f881615e91565b92915050565b60006020828403121561441057600080fd5b600061441e84828501614317565b91505092915050565b6000806040838503121561443a57600080fd5b600061444885828601614317565b925050602061445985828601614317565b9150509250929050565b60008060006060848603121561447857600080fd5b600061448686828701614317565b935050602061449786828701614317565b92505060406144a8868287016143e9565b9150509250925092565b600080600080608085870312156144c857600080fd5b60006144d687828801614317565b94505060206144e787828801614317565b93505060406144f8878288016143e9565b925050606085013567ffffffffffffffff81111561451557600080fd5b61452187828801614395565b91505092959194509250565b6000806040838503121561454057600080fd5b600061454e85828601614317565b925050602061455f85828601614356565b9150509250929050565b6000806040838503121561457c57600080fd5b600061458a85828601614317565b925050602061459b858286016143e9565b9150509250929050565b6000602082840312156145b757600080fd5b600082013567ffffffffffffffff8111156145d157600080fd5b6145dd8482850161432c565b91505092915050565b6000806000606084860312156145fb57600080fd5b600084013567ffffffffffffffff81111561461557600080fd5b6146218682870161432c565b9350506020614632868287016143e9565b9250506040614643868287016143e9565b9150509250925092565b60006020828403121561465f57600080fd5b600061466d8482850161436b565b91505092915050565b60006020828403121561468857600080fd5b600061469684828501614380565b91505092915050565b6000602082840312156146b157600080fd5b600082013567ffffffffffffffff8111156146cb57600080fd5b6146d7848285016143bf565b91505092915050565b6000602082840312156146f257600080fd5b6000614700848285016143e9565b91505092915050565b61471281615c1d565b82525050565b61472181615c2f565b82525050565b600061473282615ac5565b61473c8185615adb565b935061474c818560208601615ca0565b61475581615e3b565b840191505092915050565b600061476b82615ad0565b6147758185615aec565b9350614785818560208601615ca0565b61478e81615e3b565b840191505092915050565b60006147a482615ad0565b6147ae8185615afd565b93506147be818560208601615ca0565b80840191505092915050565b60006147d7601f83615aec565b91507f5472616e73616374696f6e2065786365656473206d617820737570706c792e006000830152602082019050919050565b6000614817601583615aec565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b6000614857602683615aec565b91507f546865206669727374207075626c69632073616c6520686173206e6f7420737460008301527f61727465642e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148bd602b83615aec565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614923601183615aec565b91507f596f752063616e6e6f7420636c61696d2e0000000000000000000000000000006000830152602082019050919050565b6000614963603283615aec565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006149c9602683615aec565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a2f601c83615aec565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614a6f602483615aec565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ad5601983615aec565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614b15601a83615aec565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b6000614b55602c83615aec565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bbb601883615aec565b91507f50726573616c6520686173206e6f7420737461727465642e00000000000000006000830152602082019050919050565b6000614bfb601f83615aec565b91507f4d6178206d696e7420697320313020706572207472616e73616374696f6e2e006000830152602082019050919050565b6000614c3b603883615aec565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614ca1602383615aec565b91507f4d7573742062652061626c6520746f206d696e74206d6f7265207468616e206f60008301527f6e652e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d07602a83615aec565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d6d602983615aec565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dd3601683615aec565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000614e13601383615aec565b91507f436c61696d696e6720697320636c6f7365642e000000000000000000000000006000830152602082019050919050565b6000614e53602183615aec565b91507f596f752063616e6e6f74206d696e7420647572696e6720746869732074696d6560008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eb9602083615aec565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614ef9602c83615aec565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614f5f601283615aec565b91507f50726573616c652068617320656e6465642e00000000000000000000000000006000830152602082019050919050565b6000614f9f602083615aec565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614fdf602983615aec565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000615045601383615aec565b91507f45786365656473206d617820737570706c792e000000000000000000000000006000830152602082019050919050565b6000615085601383615aec565b91507f53616c65206973206e6f74206163746976652e000000000000000000000000006000830152602082019050919050565b60006150c5601583615aec565b91507f45786365656473206d6178206d696e7461626c652e00000000000000000000006000830152602082019050919050565b6000615105602d83615aec565b91507f4d617820737570706c7920666f7220746869732070617274206f66207468652060008301527f73616c6520697320363636362e000000000000000000000000000000000000006020830152604082019050919050565b600061516b602183615aec565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006151d1602383615aec565b91507f4d617820737570706c7920666f72207468652070726573616c6520697320333360008301527f33332e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615237603183615aec565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061529d601a83615aec565b91507f596f752063616e6e6f74206d696e742074686973206d616e792e0000000000006000830152602082019050919050565b60006152dd600c83615aec565b91507f4d757374206d696e7420312e00000000000000000000000000000000000000006000830152602082019050919050565b600061531d601b83615aec565b91507f596f752063616e6e6f7420636c61696d2074686973206d616e792e00000000006000830152602082019050919050565b600061535d602c83615aec565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006153c3601983615aec565b91507f4d757374206265206f6e207468652077686974656c6973742e000000000000006000830152602082019050919050565b6000615403601a83615aec565b91507f4d617820636c61696d61626c65206d757374206265207365742e0000000000006000830152602082019050919050565b61543f81615c87565b82525050565b60006154518285614799565b915061545d8284614799565b91508190509392505050565b600060208201905061547e6000830184614709565b92915050565b60006080820190506154996000830187614709565b6154a66020830186614709565b6154b36040830185615436565b81810360608301526154c58184614727565b905095945050505050565b60006020820190506154e56000830184614718565b92915050565b600060208201905081810360008301526155058184614760565b905092915050565b60006020820190508181036000830152615526816147ca565b9050919050565b600060208201905081810360008301526155468161480a565b9050919050565b600060208201905081810360008301526155668161484a565b9050919050565b60006020820190508181036000830152615586816148b0565b9050919050565b600060208201905081810360008301526155a681614916565b9050919050565b600060208201905081810360008301526155c681614956565b9050919050565b600060208201905081810360008301526155e6816149bc565b9050919050565b6000602082019050818103600083015261560681614a22565b9050919050565b6000602082019050818103600083015261562681614a62565b9050919050565b6000602082019050818103600083015261564681614ac8565b9050919050565b6000602082019050818103600083015261566681614b08565b9050919050565b6000602082019050818103600083015261568681614b48565b9050919050565b600060208201905081810360008301526156a681614bae565b9050919050565b600060208201905081810360008301526156c681614bee565b9050919050565b600060208201905081810360008301526156e681614c2e565b9050919050565b6000602082019050818103600083015261570681614c94565b9050919050565b6000602082019050818103600083015261572681614cfa565b9050919050565b6000602082019050818103600083015261574681614d60565b9050919050565b6000602082019050818103600083015261576681614dc6565b9050919050565b6000602082019050818103600083015261578681614e06565b9050919050565b600060208201905081810360008301526157a681614e46565b9050919050565b600060208201905081810360008301526157c681614eac565b9050919050565b600060208201905081810360008301526157e681614eec565b9050919050565b6000602082019050818103600083015261580681614f52565b9050919050565b6000602082019050818103600083015261582681614f92565b9050919050565b6000602082019050818103600083015261584681614fd2565b9050919050565b6000602082019050818103600083015261586681615038565b9050919050565b6000602082019050818103600083015261588681615078565b9050919050565b600060208201905081810360008301526158a6816150b8565b9050919050565b600060208201905081810360008301526158c6816150f8565b9050919050565b600060208201905081810360008301526158e68161515e565b9050919050565b60006020820190508181036000830152615906816151c4565b9050919050565b600060208201905081810360008301526159268161522a565b9050919050565b6000602082019050818103600083015261594681615290565b9050919050565b60006020820190508181036000830152615966816152d0565b9050919050565b6000602082019050818103600083015261598681615310565b9050919050565b600060208201905081810360008301526159a681615350565b9050919050565b600060208201905081810360008301526159c6816153b6565b9050919050565b600060208201905081810360008301526159e6816153f6565b9050919050565b6000602082019050615a026000830184615436565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615a2f57615a2e615e0c565b5b8060405250919050565b600067ffffffffffffffff821115615a5457615a53615e0c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615a8057615a7f615e0c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615ab057615aaf615e0c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615b1382615c87565b9150615b1e83615c87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b5357615b52615d7f565b5b828201905092915050565b6000615b6982615c87565b9150615b7483615c87565b925082615b8457615b83615dae565b5b828204905092915050565b6000615b9a82615c87565b9150615ba583615c87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615bde57615bdd615d7f565b5b828202905092915050565b6000615bf482615c87565b9150615bff83615c87565b925082821015615c1257615c11615d7f565b5b828203905092915050565b6000615c2882615c67565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615cbe578082015181840152602081019050615ca3565b83811115615ccd576000848401525b50505050565b60006002820490506001821680615ceb57607f821691505b60208210811415615cff57615cfe615ddd565b5b50919050565b6000615d1082615c87565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d4357615d42615d7f565b5b600182019050919050565b6000615d5982615c87565b9150615d6483615c87565b925082615d7457615d73615dae565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615e5581615c1d565b8114615e6057600080fd5b50565b615e6c81615c2f565b8114615e7757600080fd5b50565b615e8381615c3b565b8114615e8e57600080fd5b50565b615e9a81615c87565b8114615ea557600080fd5b5056fea2646970667358221220e00c8bcfdda615260cce7b727dc28412ccd564db29989563e3de7c9f8923443964736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80635e66dde511610175578063b515ac31116100dc578063dde070e811610095578063ed096ca51161006f578063ed096ca514610a65578063f2fde38b14610a81578063f49716a014610aaa578063f759867a14610ad3576102ae565b8063dde070e8146109cf578063e215b53314610a0c578063e985e9c514610a28576102ae565b8063b515ac31146108d3578063b88d4fde146108ea578063c87b56dd14610913578063d1b73b8a14610950578063d36862e814610967578063d4a6a2fd146109a4576102ae565b80638da5cb5b1161012e5780638da5cb5b146107c157806395d89b41146107ec57806396fea84214610817578063a22cb46514610842578063a7a62fd51461086b578063af68eb4e146108a8576102ae565b80635e66dde5146106c55780636352211e146106ee5780636d60e6c11461072b57806370a0823114610742578063715018a61461077f57806373138e4f14610796576102ae565b806333d1626b116102195780633d5d82ee116101d25780633d5d82ee146105b557806342842e0e146105e0578063466410b7146106095780634f6ccce71461063457806355f804b3146106715780635c474f9e1461069a576102ae565b806333d1626b146104d857806334918dfd14610515578063379607f51461052c5780633bfc38a7146105555780633ccfd60b146105805780633ce174171461058a576102ae565b806323b872dd1161026b57806323b872dd146103c857806325102f27146103f15780632a234e571461041c5780632db6fa36146104475780632f745c591461047057806332cb6b0c146104ad576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b31461035857806318160ddd146103815780631a8939e2146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d5919061464d565b610aef565b6040516102e791906154d0565b60405180910390f35b3480156102fc57600080fd5b50610305610b69565b60405161031291906154eb565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d91906146e0565b610bfb565b60405161034f9190615469565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190614569565b610c80565b005b34801561038d57600080fd5b50610396610d98565b6040516103a391906159ed565b60405180910390f35b6103c660048036038101906103c191906146e0565b610da5565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190614463565b61101a565b005b3480156103fd57600080fd5b5061040661107a565b60405161041391906159ed565b60405180910390f35b34801561042857600080fd5b50610431611082565b60405161043e91906159ed565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906145a5565b61108e565b005b34801561047c57600080fd5b5061049760048036038101906104929190614569565b611256565b6040516104a491906159ed565b60405180910390f35b3480156104b957600080fd5b506104c26112fb565b6040516104cf91906159ed565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906143fe565b611301565b60405161050c91906159ed565b60405180910390f35b34801561052157600080fd5b5061052a61134d565b005b34801561053857600080fd5b50610553600480360381019061054e91906146e0565b6113f5565b005b34801561056157600080fd5b5061056a6117fa565b60405161057791906159ed565b60405180910390f35b610588611802565b005b34801561059657600080fd5b5061059f6118be565b6040516105ac91906159ed565b60405180910390f35b3480156105c157600080fd5b506105ca6118c4565b6040516105d791906159ed565b60405180910390f35b3480156105ec57600080fd5b5061060760048036038101906106029190614463565b6118d0565b005b34801561061557600080fd5b5061061e6118f0565b60405161062b91906154d0565b60405180910390f35b34801561064057600080fd5b5061065b600480360381019061065691906146e0565b611903565b60405161066891906159ed565b60405180910390f35b34801561067d57600080fd5b506106986004803603810190610693919061469f565b61199a565b005b3480156106a657600080fd5b506106af611a30565b6040516106bc91906154d0565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e791906146e0565b611a43565b005b3480156106fa57600080fd5b50610715600480360381019061071091906146e0565b611ac9565b6040516107229190615469565b60405180910390f35b34801561073757600080fd5b50610740611b7b565b005b34801561074e57600080fd5b50610769600480360381019061076491906143fe565b611c23565b60405161077691906159ed565b60405180910390f35b34801561078b57600080fd5b50610794611cdb565b005b3480156107a257600080fd5b506107ab611e18565b6040516107b891906159ed565b60405180910390f35b3480156107cd57600080fd5b506107d6611e1e565b6040516107e39190615469565b60405180910390f35b3480156107f857600080fd5b50610801611e48565b60405161080e91906154eb565b60405180910390f35b34801561082357600080fd5b5061082c611eda565b60405161083991906159ed565b60405180910390f35b34801561084e57600080fd5b506108696004803603810190610864919061452d565b611ee0565b005b34801561087757600080fd5b50610892600480360381019061088d91906143fe565b612061565b60405161089f91906159ed565b60405180910390f35b3480156108b457600080fd5b506108bd6120ad565b6040516108ca91906154d0565b60405180910390f35b3480156108df57600080fd5b506108e86120c0565b005b3480156108f657600080fd5b50610911600480360381019061090c91906144b2565b612168565b005b34801561091f57600080fd5b5061093a600480360381019061093591906146e0565b6121ca565b60405161094791906154eb565b60405180910390f35b34801561095c57600080fd5b50610965612229565b005b34801561097357600080fd5b5061098e600480360381019061098991906143fe565b6122d1565b60405161099b91906159ed565b60405180910390f35b3480156109b057600080fd5b506109b961231d565b6040516109c691906154d0565b60405180910390f35b3480156109db57600080fd5b506109f660048036038101906109f191906143fe565b612330565b604051610a0391906159ed565b60405180910390f35b610a266004803603810190610a2191906146e0565b61237c565b005b348015610a3457600080fd5b50610a4f6004803603810190610a4a9190614427565b6125e0565b604051610a5c91906154d0565b60405180910390f35b610a7f6004803603810190610a7a91906146e0565b612674565b005b348015610a8d57600080fd5b50610aa86004803603810190610aa391906143fe565b61295e565b005b348015610ab657600080fd5b50610ad16004803603810190610acc91906145e6565b612b0a565b005b610aed6004803603810190610ae891906146e0565b612cbf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b625750610b61826130a6565b5b9050919050565b606060008054610b7890615cd3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba490615cd3565b8015610bf15780601f10610bc657610100808354040283529160200191610bf1565b820191906000526020600020905b815481529060010190602001808311610bd457829003601f168201915b5050505050905090565b6000610c0682613188565b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c906157cd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8b82611ac9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf3906158cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1b6131f4565b73ffffffffffffffffffffffffffffffffffffffff161480610d4a5750610d4981610d446131f4565b6125e0565b5b610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d80906156cd565b60405180910390fd5b610d9383836131fc565b505050565b6000600880549050905090565b60011515600c60009054906101000a900460ff16151514610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061586d565b60405180910390fd5b60008111610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e359061594d565b60405180910390fd5b600a811115610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906156ad565b60405180910390fd5b60011515600a60159054906101000a900460ff16151514610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf9061554d565b60405180910390fd5b60001515600a60169054906101000a900460ff16151514610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f259061578d565b60405180910390fd5b611a0a81610f3a610d98565b610f449190615b08565b1115610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c906158ad565b60405180910390fd5b34610fa182670214e8348c4f00006132b590919063ffffffff16565b14610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd89061574d565b60405180910390fd5b60005b81811015611016576000610ff6610d98565b905061100233826132cb565b50808061100e90615d05565b915050610fe4565b5050565b61102b6110256131f4565b826132e9565b61106a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110619061590d565b60405180910390fd5b6110758383836133c7565b505050565b6361a682c081565b67016345785d8a000081565b6110966131f4565b73ffffffffffffffffffffffffffffffffffffffff166110b4611e1e565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061580d565b60405180910390fd5b60008151905060005b81811015611251576000600f600085848151811061115a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506001600f60008584815181106111e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548160ff021916908315150217905550808061124990615d05565b915050611113565b505050565b600061126183611c23565b82106112a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112999061556d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b6113556131f4565b73ffffffffffffffffffffffffffffffffffffffff16611373611e1e565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c09061580d565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154141561147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114729061558d565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154905060011515600a60149054906101000a900460ff16151514611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061576d565b60405180910390fd5b6361a66dbc42101561155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061568d565b60405180910390fd5b60011515600c60009054906101000a900460ff161515146115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061586d565b60405180910390fd5b60008114156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f0906159cd565b60405180910390fd5b6000821161163c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116339061594d565b60405180910390fd5b8082111561167f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116769061588d565b60405180910390fd5b8082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301546116ce9190615b08565b111561170f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117069061596d565b60405180910390fd5b6127108261171b610d98565b6117259190615b08565b1115611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d9061584d565b60405180910390fd5b60005b828110156117f557600061177b610d98565b90506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160008282546117d09190615b08565b925050819055506117e133826132cb565b5080806117ed90615d05565b915050611769565b505050565b6361a66dbc81565b61180a6131f4565b73ffffffffffffffffffffffffffffffffffffffff16611828611e1e565b73ffffffffffffffffffffffffffffffffffffffff161461187e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118759061580d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506118bc57600080fd5b565b600b5481565b670214e8348c4f000081565b6118eb83838360405180602001604052806000815250612168565b505050565b600a60159054906101000a900460ff1681565b600061190d610d98565b821061194e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119459061598d565b60405180910390fd5b60088281548110611988577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6119a26131f4565b73ffffffffffffffffffffffffffffffffffffffff166119c0611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d9061580d565b60405180910390fd5b80600d9080519060200190611a2c92919061418c565b5050565b600c60009054906101000a900460ff1681565b611a4b6131f4565b73ffffffffffffffffffffffffffffffffffffffff16611a69611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab69061580d565b60405180910390fd5b80600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b699061572d565b60405180910390fd5b80915050919050565b611b836131f4565b73ffffffffffffffffffffffffffffffffffffffff16611ba1611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee9061580d565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b9061570d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ce36131f4565b73ffffffffffffffffffffffffffffffffffffffff16611d01611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e9061580d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610d0581565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e5790615cd3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8390615cd3565b8015611ed05780601f10611ea557610100808354040283529160200191611ed0565b820191906000526020600020905b815481529060010190602001808311611eb357829003601f168201915b5050505050905090565b611a0a81565b611ee86131f4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d9061562d565b60405180910390fd5b8060056000611f636131f4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120106131f4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205591906154d0565b60405180910390a35050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600a60169054906101000a900460ff1681565b6120c86131f4565b73ffffffffffffffffffffffffffffffffffffffff166120e6611e1e565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121339061580d565b60405180910390fd5b600a60169054906101000a900460ff1615600a60166101000a81548160ff021916908315150217905550565b6121796121736131f4565b836132e9565b6121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af9061590d565b60405180910390fd5b6121c484848484613623565b50505050565b606060006121d661367f565b905060008151116121f65760405180602001604052806000815250612221565b8061220084613711565b604051602001612211929190615445565b6040516020818303038152906040525b915050919050565b6122316131f4565b73ffffffffffffffffffffffffffffffffffffffff1661224f611e1e565b73ffffffffffffffffffffffffffffffffffffffff16146122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c9061580d565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301549050919050565b600a60149054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60011515600c60009054906101000a900460ff161515146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c99061586d565b60405180910390fd5b60011515600a60169054906101000a900460ff16151514612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f9061552d565b60405180910390fd5b612710612433610d98565b10612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a9061564d565b60405180910390fd5b6127108161247f610d98565b6124899190615b08565b11156124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c19061550d565b60405180910390fd5b6000811161250d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125049061594d565b60405180910390fd5b600a811115612551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612548906156ad565b60405180910390fd5b3461256782600b546132b590919063ffffffff16565b146125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e9061574d565b60405180910390fd5b60005b818110156125dc5760006125bc610d98565b90506125c833826132cb565b5080806125d490615d05565b9150506125aa565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905060011515600c60009054906101000a900460ff16151514612711576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127089061586d565b60405180910390fd5b60008211612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b9061594d565b60405180910390fd5b60008111612797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e906156ed565b60405180910390fd5b6361a66dbc4210156127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d59061568d565b60405180910390fd5b8082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461282d9190615b08565b111561286e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128659061592d565b60405180910390fd5b3461288a8367016345785d8a00006132b590919063ffffffff16565b146128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c19061574d565b60405180910390fd5b60005b828110156129595760006128df610d98565b90506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008282546129349190615b08565b9250508190555061294533826132cb565b50808061295190615d05565b9150506128cd565b505050565b6129666131f4565b73ffffffffffffffffffffffffffffffffffffffff16612984611e1e565b73ffffffffffffffffffffffffffffffffffffffff16146129da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d19061580d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a41906155cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612b126131f4565b73ffffffffffffffffffffffffffffffffffffffff16612b30611e1e565b73ffffffffffffffffffffffffffffffffffffffff1614612b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7d9061580d565b60405180910390fd5b60008351905060005b81811015612cb85783600e6000878481518110612bd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555082600e6000878481518110612c5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201819055508080612cb090615d05565b915050612b8f565b5050505050565b60011515600c60009054906101000a900460ff16151514612d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c9061586d565b60405180910390fd5b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16151514612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da2906159ad565b60405180910390fd5b60008111612dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de59061594d565b60405180910390fd5b6002811115612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e299061588d565b60405180910390fd5b600281600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154612e829190615b08565b1115612ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eba9061592d565b60405180910390fd5b6361a682c0421015612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f019061568d565b60405180910390fd5b60001515600a60159054906101000a900460ff16151514612f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f57906157ed565b60405180910390fd5b610d0581612f6c610d98565b612f769190615b08565b1115612fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fae906158ed565b60405180910390fd5b34612fd38267016345785d8a00006132b590919063ffffffff16565b14613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a9061574d565b60405180910390fd5b60005b818110156130a2576000613028610d98565b90506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461307d9190615b08565b9250508190555061308e33826132cb565b50808061309a90615d05565b915050613016565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061317157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806131815750613180826138be565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661326f83611ac9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836132c39190615b8f565b905092915050565b6132e5828260405180602001604052806000815250613928565b5050565b60006132f482613188565b613333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332a9061566d565b60405180910390fd5b600061333e83611ac9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806133ad57508373ffffffffffffffffffffffffffffffffffffffff1661339584610bfb565b73ffffffffffffffffffffffffffffffffffffffff16145b806133be57506133bd81856125e0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166133e782611ac9565b73ffffffffffffffffffffffffffffffffffffffff161461343d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134349061582d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a49061560d565b60405180910390fd5b6134b8838383613983565b6134c36000826131fc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135139190615be9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461356a9190615b08565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61362e8484846133c7565b61363a84848484613a97565b613679576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613670906155ad565b60405180910390fd5b50505050565b6060600d805461368e90615cd3565b80601f01602080910402602001604051908101604052809291908181526020018280546136ba90615cd3565b80156137075780601f106136dc57610100808354040283529160200191613707565b820191906000526020600020905b8154815290600101906020018083116136ea57829003601f168201915b5050505050905090565b60606000821415613759576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138b9565b600082905060005b6000821461378b57808061377490615d05565b915050600a826137849190615b5e565b9150613761565b60008167ffffffffffffffff8111156137cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137ff5781602001600182028036833780820191505090505b5090505b600085146138b2576001826138189190615be9565b9150600a856138279190615d4e565b60306138339190615b08565b60f81b81838151811061386f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138ab9190615b5e565b9450613803565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6139328383613c2e565b61393f6000848484613a97565b61397e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613975906155ad565b60405180910390fd5b505050565b61398e838383613dfc565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139d1576139cc81613e01565b613a10565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a0f57613a0e8382613e4a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a5357613a4e81613fb7565b613a92565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613a9157613a9082826140fa565b5b5b505050565b6000613ab88473ffffffffffffffffffffffffffffffffffffffff16614179565b15613c21578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613ae16131f4565b8786866040518563ffffffff1660e01b8152600401613b039493929190615484565b602060405180830381600087803b158015613b1d57600080fd5b505af1925050508015613b4e57506040513d601f19601f82011682018060405250810190613b4b9190614676565b60015b613bd1573d8060008114613b7e576040519150601f19603f3d011682016040523d82523d6000602084013e613b83565b606091505b50600081511415613bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bc0906155ad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c26565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c95906157ad565b60405180910390fd5b613ca781613188565b15613ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cde906155ed565b60405180910390fd5b613cf360008383613983565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d439190615b08565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613e5784611c23565b613e619190615be9565b9050600060076000848152602001908152602001600020549050818114613f46576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613fcb9190615be9565b9050600060096000848152602001908152602001600020549050600060088381548110614021577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110614069577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806140de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061410583611c23565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461419890615cd3565b90600052602060002090601f0160209004810192826141ba5760008555614201565b82601f106141d357805160ff1916838001178555614201565b82800160010185558215614201579182015b828111156142005782518255916020019190600101906141e5565b5b50905061420e9190614212565b5090565b5b8082111561422b576000816000905550600101614213565b5090565b600061424261423d84615a39565b615a08565b9050808382526020820190508285602086028201111561426157600080fd5b60005b8581101561429157816142778882614317565b845260208401935060208301925050600181019050614264565b5050509392505050565b60006142ae6142a984615a65565b615a08565b9050828152602081018484840111156142c657600080fd5b6142d1848285615c91565b509392505050565b60006142ec6142e784615a95565b615a08565b90508281526020810184848401111561430457600080fd5b61430f848285615c91565b509392505050565b60008135905061432681615e4c565b92915050565b600082601f83011261433d57600080fd5b813561434d84826020860161422f565b91505092915050565b60008135905061436581615e63565b92915050565b60008135905061437a81615e7a565b92915050565b60008151905061438f81615e7a565b92915050565b600082601f8301126143a657600080fd5b81356143b684826020860161429b565b91505092915050565b600082601f8301126143d057600080fd5b81356143e08482602086016142d9565b91505092915050565b6000813590506143f881615e91565b92915050565b60006020828403121561441057600080fd5b600061441e84828501614317565b91505092915050565b6000806040838503121561443a57600080fd5b600061444885828601614317565b925050602061445985828601614317565b9150509250929050565b60008060006060848603121561447857600080fd5b600061448686828701614317565b935050602061449786828701614317565b92505060406144a8868287016143e9565b9150509250925092565b600080600080608085870312156144c857600080fd5b60006144d687828801614317565b94505060206144e787828801614317565b93505060406144f8878288016143e9565b925050606085013567ffffffffffffffff81111561451557600080fd5b61452187828801614395565b91505092959194509250565b6000806040838503121561454057600080fd5b600061454e85828601614317565b925050602061455f85828601614356565b9150509250929050565b6000806040838503121561457c57600080fd5b600061458a85828601614317565b925050602061459b858286016143e9565b9150509250929050565b6000602082840312156145b757600080fd5b600082013567ffffffffffffffff8111156145d157600080fd5b6145dd8482850161432c565b91505092915050565b6000806000606084860312156145fb57600080fd5b600084013567ffffffffffffffff81111561461557600080fd5b6146218682870161432c565b9350506020614632868287016143e9565b9250506040614643868287016143e9565b9150509250925092565b60006020828403121561465f57600080fd5b600061466d8482850161436b565b91505092915050565b60006020828403121561468857600080fd5b600061469684828501614380565b91505092915050565b6000602082840312156146b157600080fd5b600082013567ffffffffffffffff8111156146cb57600080fd5b6146d7848285016143bf565b91505092915050565b6000602082840312156146f257600080fd5b6000614700848285016143e9565b91505092915050565b61471281615c1d565b82525050565b61472181615c2f565b82525050565b600061473282615ac5565b61473c8185615adb565b935061474c818560208601615ca0565b61475581615e3b565b840191505092915050565b600061476b82615ad0565b6147758185615aec565b9350614785818560208601615ca0565b61478e81615e3b565b840191505092915050565b60006147a482615ad0565b6147ae8185615afd565b93506147be818560208601615ca0565b80840191505092915050565b60006147d7601f83615aec565b91507f5472616e73616374696f6e2065786365656473206d617820737570706c792e006000830152602082019050919050565b6000614817601583615aec565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b6000614857602683615aec565b91507f546865206669727374207075626c69632073616c6520686173206e6f7420737460008301527f61727465642e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148bd602b83615aec565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614923601183615aec565b91507f596f752063616e6e6f7420636c61696d2e0000000000000000000000000000006000830152602082019050919050565b6000614963603283615aec565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006149c9602683615aec565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a2f601c83615aec565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614a6f602483615aec565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ad5601983615aec565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614b15601a83615aec565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b6000614b55602c83615aec565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bbb601883615aec565b91507f50726573616c6520686173206e6f7420737461727465642e00000000000000006000830152602082019050919050565b6000614bfb601f83615aec565b91507f4d6178206d696e7420697320313020706572207472616e73616374696f6e2e006000830152602082019050919050565b6000614c3b603883615aec565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614ca1602383615aec565b91507f4d7573742062652061626c6520746f206d696e74206d6f7265207468616e206f60008301527f6e652e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d07602a83615aec565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d6d602983615aec565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dd3601683615aec565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000614e13601383615aec565b91507f436c61696d696e6720697320636c6f7365642e000000000000000000000000006000830152602082019050919050565b6000614e53602183615aec565b91507f596f752063616e6e6f74206d696e7420647572696e6720746869732074696d6560008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eb9602083615aec565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614ef9602c83615aec565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614f5f601283615aec565b91507f50726573616c652068617320656e6465642e00000000000000000000000000006000830152602082019050919050565b6000614f9f602083615aec565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614fdf602983615aec565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000615045601383615aec565b91507f45786365656473206d617820737570706c792e000000000000000000000000006000830152602082019050919050565b6000615085601383615aec565b91507f53616c65206973206e6f74206163746976652e000000000000000000000000006000830152602082019050919050565b60006150c5601583615aec565b91507f45786365656473206d6178206d696e7461626c652e00000000000000000000006000830152602082019050919050565b6000615105602d83615aec565b91507f4d617820737570706c7920666f7220746869732070617274206f66207468652060008301527f73616c6520697320363636362e000000000000000000000000000000000000006020830152604082019050919050565b600061516b602183615aec565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006151d1602383615aec565b91507f4d617820737570706c7920666f72207468652070726573616c6520697320333360008301527f33332e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000615237603183615aec565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061529d601a83615aec565b91507f596f752063616e6e6f74206d696e742074686973206d616e792e0000000000006000830152602082019050919050565b60006152dd600c83615aec565b91507f4d757374206d696e7420312e00000000000000000000000000000000000000006000830152602082019050919050565b600061531d601b83615aec565b91507f596f752063616e6e6f7420636c61696d2074686973206d616e792e00000000006000830152602082019050919050565b600061535d602c83615aec565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006153c3601983615aec565b91507f4d757374206265206f6e207468652077686974656c6973742e000000000000006000830152602082019050919050565b6000615403601a83615aec565b91507f4d617820636c61696d61626c65206d757374206265207365742e0000000000006000830152602082019050919050565b61543f81615c87565b82525050565b60006154518285614799565b915061545d8284614799565b91508190509392505050565b600060208201905061547e6000830184614709565b92915050565b60006080820190506154996000830187614709565b6154a66020830186614709565b6154b36040830185615436565b81810360608301526154c58184614727565b905095945050505050565b60006020820190506154e56000830184614718565b92915050565b600060208201905081810360008301526155058184614760565b905092915050565b60006020820190508181036000830152615526816147ca565b9050919050565b600060208201905081810360008301526155468161480a565b9050919050565b600060208201905081810360008301526155668161484a565b9050919050565b60006020820190508181036000830152615586816148b0565b9050919050565b600060208201905081810360008301526155a681614916565b9050919050565b600060208201905081810360008301526155c681614956565b9050919050565b600060208201905081810360008301526155e6816149bc565b9050919050565b6000602082019050818103600083015261560681614a22565b9050919050565b6000602082019050818103600083015261562681614a62565b9050919050565b6000602082019050818103600083015261564681614ac8565b9050919050565b6000602082019050818103600083015261566681614b08565b9050919050565b6000602082019050818103600083015261568681614b48565b9050919050565b600060208201905081810360008301526156a681614bae565b9050919050565b600060208201905081810360008301526156c681614bee565b9050919050565b600060208201905081810360008301526156e681614c2e565b9050919050565b6000602082019050818103600083015261570681614c94565b9050919050565b6000602082019050818103600083015261572681614cfa565b9050919050565b6000602082019050818103600083015261574681614d60565b9050919050565b6000602082019050818103600083015261576681614dc6565b9050919050565b6000602082019050818103600083015261578681614e06565b9050919050565b600060208201905081810360008301526157a681614e46565b9050919050565b600060208201905081810360008301526157c681614eac565b9050919050565b600060208201905081810360008301526157e681614eec565b9050919050565b6000602082019050818103600083015261580681614f52565b9050919050565b6000602082019050818103600083015261582681614f92565b9050919050565b6000602082019050818103600083015261584681614fd2565b9050919050565b6000602082019050818103600083015261586681615038565b9050919050565b6000602082019050818103600083015261588681615078565b9050919050565b600060208201905081810360008301526158a6816150b8565b9050919050565b600060208201905081810360008301526158c6816150f8565b9050919050565b600060208201905081810360008301526158e68161515e565b9050919050565b60006020820190508181036000830152615906816151c4565b9050919050565b600060208201905081810360008301526159268161522a565b9050919050565b6000602082019050818103600083015261594681615290565b9050919050565b60006020820190508181036000830152615966816152d0565b9050919050565b6000602082019050818103600083015261598681615310565b9050919050565b600060208201905081810360008301526159a681615350565b9050919050565b600060208201905081810360008301526159c6816153b6565b9050919050565b600060208201905081810360008301526159e6816153f6565b9050919050565b6000602082019050615a026000830184615436565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615a2f57615a2e615e0c565b5b8060405250919050565b600067ffffffffffffffff821115615a5457615a53615e0c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615a8057615a7f615e0c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615ab057615aaf615e0c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615b1382615c87565b9150615b1e83615c87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b5357615b52615d7f565b5b828201905092915050565b6000615b6982615c87565b9150615b7483615c87565b925082615b8457615b83615dae565b5b828204905092915050565b6000615b9a82615c87565b9150615ba583615c87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615bde57615bdd615d7f565b5b828202905092915050565b6000615bf482615c87565b9150615bff83615c87565b925082821015615c1257615c11615d7f565b5b828203905092915050565b6000615c2882615c67565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615cbe578082015181840152602081019050615ca3565b83811115615ccd576000848401525b50505050565b60006002820490506001821680615ceb57607f821691505b60208210811415615cff57615cfe615ddd565b5b50919050565b6000615d1082615c87565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615d4357615d42615d7f565b5b600182019050919050565b6000615d5982615c87565b9150615d6483615c87565b925082615d7457615d73615dae565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615e5581615c1d565b8114615e6057600080fd5b50565b615e6c81615c2f565b8114615e7757600080fd5b50565b615e8381615c3b565b8114615e8e57600080fd5b50565b615e9a81615c87565b8114615ea557600080fd5b5056fea2646970667358221220e00c8bcfdda615260cce7b727dc28412ccd564db29989563e3de7c9f8923443964736f6c63430008000033

Deployed Bytecode Sourcemap

49750:8550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34256:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21461:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22921:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22458:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34909:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55973:824;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23811:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50094:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50186:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51656:299;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34577:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49869:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52871:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57592:87;;;;;;;;;;;;;:::i;:::-;;53023:1036;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49977:59;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58177:120;;;:::i;:::-;;50620:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50396:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24187:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50347:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35099:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52088:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50744:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58042:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21155:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57687:88;;;;;;;;;;;;;:::i;:::-;;20885:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42128:148;;;;;;;;;;;;;:::i;:::-;;50267:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41477:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21630:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50484:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23214:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52726:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50570:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57911:123;;;;;;;;;;;;;:::i;:::-;;24409:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52205:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57783:120;;;;;;;;;;;;;:::i;:::-;;52592:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49940:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52458:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56805:779;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23580:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54067:868;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42431:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51276:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54943:1022;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34256:237;34358:4;34397:35;34382:50;;;:11;:50;;;;:103;;;;34449:36;34473:11;34449:23;:36::i;:::-;34382:103;34375:110;;34256:237;;;:::o;21461:100::-;21515:13;21548:5;21541:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21461:100;:::o;22921:221::-;22997:7;23025:16;23033:7;23025;:16::i;:::-;23017:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23110:15;:24;23126:7;23110:24;;;;;;;;;;;;;;;;;;;;;23103:31;;22921:221;;;:::o;22458:397::-;22539:13;22555:23;22570:7;22555:14;:23::i;:::-;22539:39;;22603:5;22597:11;;:2;:11;;;;22589:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22683:5;22667:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22692:37;22709:5;22716:12;:10;:12::i;:::-;22692:16;:37::i;:::-;22667:62;22659:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22826:21;22835:2;22839:7;22826:8;:21::i;:::-;22458:397;;;:::o;34909:113::-;34970:7;34997:10;:17;;;;34990:24;;34909:113;:::o;55973:824::-;56069:4;56054:19;;:11;;;;;;;;;;;:19;;;56046:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;56131:1;56116:12;:16;56108:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;56184:2;56168:12;:18;;56160:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56267:4;56241:30;;:22;;;;;;;;;;;:30;;;56233:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56360:5;56333:32;;:23;;;;;;;;;;;:32;;;56325:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;50531:4;56438:12;56422:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:52;;56414:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;56591:9;56545:42;56574:12;50447:18;56545:28;;:42;;;;:::i;:::-;:55;56537:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;56645:9;56640:150;56664:12;56660:1;:16;56640:150;;;56698:17;56718:13;:11;:13::i;:::-;56698:33;;56746:32;56756:10;56768:9;56746;:32::i;:::-;56640:150;56678:3;;;;;:::i;:::-;;;;56640:150;;;;55973:824;:::o;23811:305::-;23972:41;23991:12;:10;:12::i;:::-;24005:7;23972:18;:41::i;:::-;23964:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24080:28;24090:4;24096:2;24100:7;24080:9;:28::i;:::-;23811:305;;;:::o;50094:55::-;50139:10;50094:55;:::o;50186:63::-;50231:18;50186:63;:::o;51656:299::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51742:9:::1;51754:10;:17;51742:29;;51787:9;51782:166;51806:4;51802:1;:8;51782:166;;;51875:1;51831:16;:31;51848:10;51859:1;51848:13;;;;;;;;;;;;;;;;;;;;;;51831:31;;;;;;;;;;;;;;;:41;;:45;;;;51932:4;51891:16;:31;51908:10;51919:1;51908:13;;;;;;;;;;;;;;;;;;;;;;51891:31;;;;;;;;;;;;;;;:38;;;:45;;;;;;;;;;;;;;;;;;51812:3;;;;;:::i;:::-;;;;51782:166;;;;41768:1;51656:299:::0;:::o;34577:256::-;34674:7;34710:23;34727:5;34710:16;:23::i;:::-;34702:5;:31;34694:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34799:12;:19;34812:5;34799:19;;;;;;;;;;;;;;;:26;34819:5;34799:26;;;;;;;;;;;;34792:33;;34577:256;;;;:::o;49869:42::-;49906:5;49869:42;:::o;52871:144::-;52942:7;52969:11;:18;52981:5;52969:18;;;;;;;;;;;;;;;:38;;;52962:45;;52871:144;;;:::o;57592:87::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57660:11:::1;;;;;;;;;;;57659:12;57645:11;;:26;;;;;;;;;;;;;;;;;;57592:87::o:0;53023:1036::-;53127:1;53087:11;:23;53099:10;53087:23;;;;;;;;;;;;;;;:36;;;:41;;53079:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;53163:20;53186:11;:23;53198:10;53186:23;;;;;;;;;;;;;;;:36;;;53163:59;;53258:4;53243:19;;:11;;;;;;;;;;;:19;;;53235:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;50026:10;53305:15;:41;;53297:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;53409:4;53394:19;;:11;;;;;;;;;;;:19;;;53386:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;53472:1;53456:12;:17;;53448:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;53539:1;53523:13;:17;53515:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;53593:12;53576:13;:29;;53568:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53704:12;53687:13;53650:11;:23;53662:10;53650:23;;;;;;;;;;;;;;;:34;;;:50;;;;:::i;:::-;:66;;53642:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;49906:5;53783:13;53767;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;53759:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;53852:9;53847:205;53871:13;53867:1;:17;53847:205;;;53906:17;53926:13;:11;:13::i;:::-;53906:33;;53992:1;53954:11;:23;53966:10;53954:23;;;;;;;;;;;;;;;:34;;;:39;;;;;;;:::i;:::-;;;;;;;;54008:32;54018:10;54030:9;54008;:32::i;:::-;53847:205;53886:3;;;;;:::i;:::-;;;;53847:205;;;;53023:1036;;:::o;49977:59::-;50026:10;49977:59;:::o;58177:120::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58249:10:::1;58241:24;;:47;58266:21;58241:47;;;;;;;;;;;;;;;;;;;;;;;58233:56;;;::::0;::::1;;58177:120::o:0;50620:60::-;;;;:::o;50396:69::-;50447:18;50396:69;:::o;24187:151::-;24291:39;24308:4;24314:2;24318:7;24291:39;;;;;;;;;;;;:16;:39::i;:::-;24187:151;;;:::o;50347:42::-;;;;;;;;;;;;;:::o;35099:233::-;35174:7;35210:30;:28;:30::i;:::-;35202:5;:38;35194:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35307:10;35318:5;35307:17;;;;;;;;;;;;;;;;;;;;;;;;35300:24;;35099:233;;;:::o;52088:109::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52181:8:::1;52162:16;:27;;;;;;;;;;;;:::i;:::-;;52088:109:::0;:::o;50744:30::-;;;;;;;;;;;;;:::o;58042:127::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58153:8:::1;58126:24;:35;;;;58042:127:::0;:::o;21155:239::-;21227:7;21247:13;21263:7;:16;21271:7;21263:16;;;;;;;;;;;;;;;;;;;;;21247:32;;21315:1;21298:19;;:5;:19;;;;21290:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21381:5;21374:12;;;21155:239;;;:::o;57687:88::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57756:11:::1;;;;;;;;;;;57755:12;57741:11;;:26;;;;;;;;;;;;;;;;;;57687:88::o:0;20885:208::-;20957:7;21002:1;20985:19;;:5;:19;;;;20977:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21069:9;:16;21079:5;21069:16;;;;;;;;;;;;;;;;21062:23;;20885:208;;;:::o;42128:148::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42235:1:::1;42198:40;;42219:6;;;;;;;;;;;42198:40;;;;;;;;;;;;42266:1;42249:6;;:19;;;;;;;;;;;;;;;;;;42128:148::o:0;50267:45::-;50308:4;50267:45;:::o;41477:87::-;41523:7;41550:6;;;;;;;;;;;41543:13;;41477:87;:::o;21630:104::-;21686:13;21719:7;21712:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21630:104;:::o;50484:51::-;50531:4;50484:51;:::o;23214:295::-;23329:12;:10;:12::i;:::-;23317:24;;:8;:24;;;;23309:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23429:8;23384:18;:32;23403:12;:10;:12::i;:::-;23384:32;;;;;;;;;;;;;;;:42;23417:8;23384:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23482:8;23453:48;;23468:12;:10;:12::i;:::-;23453:48;;;23492:8;23453:48;;;;;;:::i;:::-;;;;;;;;23214:295;;:::o;52726:137::-;52791:7;52818:11;:18;52830:5;52818:18;;;;;;;;;;;;;;;:37;;;52811:44;;52726:137;;;:::o;50570:43::-;;;;;;;;;;;;;:::o;57911:123::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58003:23:::1;;;;;;;;;;;58002:24;57976:23;;:50;;;;;;;;;;;;;;;;;;57911:123::o:0;24409:285::-;24541:41;24560:12;:10;:12::i;:::-;24574:7;24541:18;:41::i;:::-;24533:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24647:39;24661:4;24667:2;24671:7;24680:5;24647:13;:39::i;:::-;24409:285;;;;:::o;52205:245::-;52278:13;52304:21;52328:10;:8;:10::i;:::-;52304:34;;52380:1;52362:7;52356:21;:25;:86;;;;;;;;;;;;;;;;;52408:7;52417:18;:7;:16;:18::i;:::-;52391:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52356:86;52349:93;;;52205:245;;;:::o;57783:120::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57873:22:::1;;;;;;;;;;;57872:23;57847:22;;:48;;;;;;;;;;;;;;;;;;57783:120::o:0;52592:126::-;52654:7;52681:11;:18;52693:5;52681:18;;;;;;;;;;;;;;;:29;;;52674:36;;52592:126;;;:::o;49940:30::-;;;;;;;;;;;;;:::o;52458:126::-;52518:7;52545:11;:18;52557:5;52545:18;;;;;;;;;;;;;;;:31;;;52538:38;;52458:126;;;:::o;56805:779::-;56901:4;56886:19;;:11;;;;;;;;;;;:19;;;56878:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;56975:4;56948:31;;:23;;;;;;;;;;;:31;;;56940:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49906:5;57024:13;:11;:13::i;:::-;:26;57016:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49906:5;57116:12;57100:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:42;;57092:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;57212:1;57197:12;:16;57189:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;57265:2;57249:12;:18;;57241:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57378:9;57332:42;57361:12;57332:24;;:28;;:42;;;;:::i;:::-;:55;57324:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;57432:9;57427:150;57451:12;57447:1;:16;57427:150;;;57485:17;57505:13;:11;:13::i;:::-;57485:33;;57533:32;57543:10;57555:9;57533;:32::i;:::-;57427:150;57465:3;;;;;:::i;:::-;;;;57427:150;;;;56805:779;:::o;23580:164::-;23677:4;23701:18;:25;23720:5;23701:25;;;;;;;;;;;;;;;:35;23727:8;23701:35;;;;;;;;;;;;;;;;;;;;;;;;;23694:42;;23580:164;;;;:::o;54067:868::-;54139:19;54161:11;:23;54173:10;54161:23;;;;;;;;;;;;;;;:42;;;54139:64;;54239:4;54224:19;;:11;;;;;;;;;;;:19;;;54216:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54301:1;54286:12;:16;54278:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;54352:1;54338:11;:15;54330:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50026:10;54412:15;:41;;54404:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;54563:11;54547:12;54501:11;:23;54513:10;54501:23;;;;;;;;;;;;;;;:43;;;:58;;;;:::i;:::-;:73;;54493:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;54666:9;54626:36;54649:12;50231:18;54626:22;;:36;;;;:::i;:::-;:49;54618:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;54720:9;54715:213;54739:12;54735:1;:16;54715:213;;;54773:17;54793:13;:11;:13::i;:::-;54773:33;;54868:1;54821:11;:23;54833:10;54821:23;;;;;;;;;;;;;;;:43;;;:48;;;;;;;:::i;:::-;;;;;;;;54884:32;54894:10;54906:9;54884;:32::i;:::-;54715:213;54753:3;;;;;:::i;:::-;;;;54715:213;;;;54067:868;;:::o;42431:244::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42540:1:::1;42520:22;;:8;:22;;;;42512:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42630:8;42601:38;;42622:6;;;;;;;;;;;42601:38;;;;;;;;;;;;42659:8;42650:6;;:17;;;;;;;;;;;;;;;;;;42431:244:::0;:::o;51276:372::-;41708:12;:10;:12::i;:::-;41697:23;;:7;:5;:7::i;:::-;:23;;;41689:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51411:9:::1;51423:10;:17;51411:29;;51455:9;51450:191;51474:4;51470:1;:8;51450:191;;;51545:18;51497:11;:26;51509:10;51520:1;51509:13;;;;;;;;;;;;;;;;;;;;;;51497:26;;;;;;;;;;;;;;;:45;;:66;;;;51618:12;51576:11;:26;51588:10;51599:1;51588:13;;;;;;;;;;;;;;;;;;;;;;51576:26;;;;;;;;;;;;;;;:39;;:54;;;;51480:3;;;;;:::i;:::-;;;;51450:191;;;;41768:1;51276:372:::0;;;:::o;54943:1022::-;55035:4;55020:19;;:11;;;;;;;;;;;:19;;;55012:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;55121:4;55082:43;;:16;:28;55099:10;55082:28;;;;;;;;;;;;;;;:35;;;;;;;;;;;;:43;;;55074:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55189:1;55174:12;:16;55166:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;55242:1;55226:12;:17;;55218:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;55345:1;55329:12;55288:16;:28;55305:10;55288:28;;;;;;;;;;;;;;;:38;;;:53;;;;:::i;:::-;:58;;55280:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;50139:10;55396:15;:37;;55388:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;55507:5;55481:31;;:22;;;;;;;;;;;:31;;;55473:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50308:4;55570:12;55554:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:46;;55546:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55701:9;55661:36;55684:12;50231:18;55661:22;;:36;;;;:::i;:::-;:49;55653:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;55755:9;55750:208;55774:12;55770:1;:16;55750:208;;;55808:17;55828:13;:11;:13::i;:::-;55808:33;;55898:1;55856:16;:28;55873:10;55856:28;;;;;;;;;;;;;;;:38;;;:43;;;;;;;:::i;:::-;;;;;;;;55914:32;55924:10;55936:9;55914;:32::i;:::-;55750:208;55788:3;;;;;:::i;:::-;;;;55750:208;;;;54943:1022;:::o;20529:292::-;20631:4;20670:25;20655:40;;;:11;:40;;;;:105;;;;20727:33;20712:48;;;:11;:48;;;;20655:105;:158;;;;20777:36;20801:11;20777:23;:36::i;:::-;20655:158;20648:165;;20529:292;;;:::o;26161:127::-;26226:4;26278:1;26250:30;;:7;:16;26258:7;26250:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26243:37;;26161:127;;;:::o;15849:98::-;15902:7;15929:10;15922:17;;15849:98;:::o;30038:174::-;30140:2;30113:15;:24;30129:7;30113:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30196:7;30192:2;30158:46;;30167:23;30182:7;30167:14;:23::i;:::-;30158:46;;;;;;;;;;;;30038:174;;:::o;46150:98::-;46208:7;46239:1;46235;:5;;;;:::i;:::-;46228:12;;46150:98;;;;:::o;27145:110::-;27221:26;27231:2;27235:7;27221:26;;;;;;;;;;;;:9;:26::i;:::-;27145:110;;:::o;26455:348::-;26548:4;26573:16;26581:7;26573;:16::i;:::-;26565:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26649:13;26665:23;26680:7;26665:14;:23::i;:::-;26649:39;;26718:5;26707:16;;:7;:16;;;:51;;;;26751:7;26727:31;;:20;26739:7;26727:11;:20::i;:::-;:31;;;26707:51;:87;;;;26762:32;26779:5;26786:7;26762:16;:32::i;:::-;26707:87;26699:96;;;26455:348;;;;:::o;29376:544::-;29501:4;29474:31;;:23;29489:7;29474:14;:23::i;:::-;:31;;;29466:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29584:1;29570:16;;:2;:16;;;;29562:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29640:39;29661:4;29667:2;29671:7;29640:20;:39::i;:::-;29744:29;29761:1;29765:7;29744:8;:29::i;:::-;29805:1;29786:9;:15;29796:4;29786:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29834:1;29817:9;:13;29827:2;29817:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29865:2;29846:7;:16;29854:7;29846:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29904:7;29900:2;29885:27;;29894:4;29885:27;;;;;;;;;;;;29376:544;;;:::o;25576:272::-;25690:28;25700:4;25706:2;25710:7;25690:9;:28::i;:::-;25737:48;25760:4;25766:2;25770:7;25779:5;25737:22;:48::i;:::-;25729:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25576:272;;;;:::o;51963:117::-;52023:13;52056:16;52049:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51963:117;:::o;16498:723::-;16554:13;16784:1;16775:5;:10;16771:53;;;16802:10;;;;;;;;;;;;;;;;;;;;;16771:53;16834:12;16849:5;16834:20;;16865:14;16890:78;16905:1;16897:4;:9;16890:78;;16923:8;;;;;:::i;:::-;;;;16954:2;16946:10;;;;;:::i;:::-;;;16890:78;;;16978:19;17010:6;17000:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16978:39;;17028:154;17044:1;17035:5;:10;17028:154;;17072:1;17062:11;;;;;:::i;:::-;;;17139:2;17131:5;:10;;;;:::i;:::-;17118:2;:24;;;;:::i;:::-;17105:39;;17088:6;17095;17088:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17168:2;17159:11;;;;;:::i;:::-;;;17028:154;;;17206:6;17192:21;;;;;16498:723;;;;:::o;19047:157::-;19132:4;19171:25;19156:40;;;:11;:40;;;;19149:47;;19047:157;;;:::o;27482:250::-;27578:18;27584:2;27588:7;27578:5;:18::i;:::-;27615:54;27646:1;27650:2;27654:7;27663:5;27615:22;:54::i;:::-;27607:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27482:250;;;:::o;35945:555::-;36055:45;36082:4;36088:2;36092:7;36055:26;:45::i;:::-;36133:1;36117:18;;:4;:18;;;36113:187;;;36152:40;36184:7;36152:31;:40::i;:::-;36113:187;;;36222:2;36214:10;;:4;:10;;;36210:90;;36241:47;36274:4;36280:7;36241:32;:47::i;:::-;36210:90;36113:187;36328:1;36314:16;;:2;:16;;;36310:183;;;36347:45;36384:7;36347:36;:45::i;:::-;36310:183;;;36420:4;36414:10;;:2;:10;;;36410:83;;36441:40;36469:2;36473:7;36441:27;:40::i;:::-;36410:83;36310:183;35945:555;;;:::o;30777:843::-;30898:4;30924:15;:2;:13;;;:15::i;:::-;30920:693;;;30976:2;30960:36;;;30997:12;:10;:12::i;:::-;31011:4;31017:7;31026:5;30960:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30956:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31223:1;31206:6;:13;:18;31202:341;;;31249:60;;;;;;;;;;:::i;:::-;;;;;;;;31202:341;31493:6;31487:13;31478:6;31474:2;31470:15;31463:38;30956:602;31093:45;;;31083:55;;;:6;:55;;;;31076:62;;;;;30920:693;31597:4;31590:11;;30777:843;;;;;;;:::o;28068:382::-;28162:1;28148:16;;:2;:16;;;;28140:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28221:16;28229:7;28221;:16::i;:::-;28220:17;28212:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28283:45;28312:1;28316:2;28320:7;28283:20;:45::i;:::-;28358:1;28341:9;:13;28351:2;28341:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28389:2;28370:7;:16;28378:7;28370:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28434:7;28430:2;28409:33;;28426:1;28409:33;;;;;;;;;;;;28068:382;;:::o;32233:93::-;;;;:::o;37223:164::-;37327:10;:17;;;;37300:15;:24;37316:7;37300:24;;;;;;;;;;;:44;;;;37355:10;37371:7;37355:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37223:164;:::o;38014:988::-;38280:22;38330:1;38305:22;38322:4;38305:16;:22::i;:::-;:26;;;;:::i;:::-;38280:51;;38342:18;38363:17;:26;38381:7;38363:26;;;;;;;;;;;;38342:47;;38510:14;38496:10;:28;38492:328;;38541:19;38563:12;:18;38576:4;38563:18;;;;;;;;;;;;;;;:34;38582:14;38563:34;;;;;;;;;;;;38541:56;;38647:11;38614:12;:18;38627:4;38614:18;;;;;;;;;;;;;;;:30;38633:10;38614:30;;;;;;;;;;;:44;;;;38764:10;38731:17;:30;38749:11;38731:30;;;;;;;;;;;:43;;;;38492:328;;38916:17;:26;38934:7;38916:26;;;;;;;;;;;38909:33;;;38960:12;:18;38973:4;38960:18;;;;;;;;;;;;;;;:34;38979:14;38960:34;;;;;;;;;;;38953:41;;;38014:988;;;;:::o;39297:1079::-;39550:22;39595:1;39575:10;:17;;;;:21;;;;:::i;:::-;39550:46;;39607:18;39628:15;:24;39644:7;39628:24;;;;;;;;;;;;39607:45;;39979:19;40001:10;40012:14;40001:26;;;;;;;;;;;;;;;;;;;;;;;;39979:48;;40065:11;40040:10;40051;40040:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40176:10;40145:15;:28;40161:11;40145:28;;;;;;;;;;;:41;;;;40317:15;:24;40333:7;40317:24;;;;;;;;;;;40310:31;;;40352:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39297:1079;;;;:::o;36801:221::-;36886:14;36903:20;36920:2;36903:16;:20::i;:::-;36886:37;;36961:7;36934:12;:16;36947:2;36934:16;;;;;;;;;;;;;;;:24;36951:6;36934:24;;;;;;;;;;;:34;;;;37008:6;36979:17;:26;36997:7;36979:26;;;;;;;;;;;:35;;;;36801:221;;;:::o;7972:422::-;8032:4;8240:12;8351:7;8339:20;8331:28;;8385:1;8378:4;:8;8371:15;;;7972: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:695::-;;;;6430:2;6418:9;6409:7;6405:23;6401:32;6398:2;;;6446:1;6443;6436:12;6398:2;6517:1;6506:9;6502:17;6489:31;6547:18;6539:6;6536:30;6533:2;;;6579:1;6576;6569:12;6533:2;6607:78;6677:7;6668:6;6657:9;6653:22;6607:78;:::i;:::-;6597:88;;6460:235;6734:2;6760:53;6805:7;6796:6;6785:9;6781:22;6760:53;:::i;:::-;6750:63;;6705:118;6862:2;6888:53;6933:7;6924:6;6913:9;6909:22;6888:53;:::i;:::-;6878:63;;6833:118;6388:570;;;;;:::o;6964:260::-;;7071:2;7059:9;7050:7;7046:23;7042:32;7039:2;;;7087:1;7084;7077:12;7039:2;7130:1;7155:52;7199:7;7190:6;7179:9;7175:22;7155:52;:::i;:::-;7145:62;;7101:116;7029:195;;;;:::o;7230:282::-;;7348:2;7336:9;7327:7;7323:23;7319:32;7316:2;;;7364:1;7361;7354:12;7316:2;7407:1;7432:63;7487:7;7478:6;7467:9;7463:22;7432:63;:::i;:::-;7422:73;;7378:127;7306:206;;;;:::o;7518:375::-;;7636:2;7624:9;7615:7;7611:23;7607:32;7604:2;;;7652:1;7649;7642:12;7604:2;7723:1;7712:9;7708:17;7695:31;7753:18;7745:6;7742:30;7739:2;;;7785:1;7782;7775:12;7739:2;7813:63;7868:7;7859:6;7848:9;7844:22;7813:63;:::i;:::-;7803:73;;7666:220;7594:299;;;;:::o;7899:262::-;;8007:2;7995:9;7986:7;7982:23;7978:32;7975:2;;;8023:1;8020;8013:12;7975:2;8066:1;8091:53;8136:7;8127:6;8116:9;8112:22;8091:53;:::i;:::-;8081:63;;8037:117;7965:196;;;;:::o;8167:118::-;8254:24;8272:5;8254:24;:::i;:::-;8249:3;8242:37;8232:53;;:::o;8291:109::-;8372:21;8387:5;8372:21;:::i;:::-;8367:3;8360:34;8350:50;;:::o;8406:360::-;;8520:38;8552:5;8520:38;:::i;:::-;8574:70;8637:6;8632:3;8574:70;:::i;:::-;8567:77;;8653:52;8698:6;8693:3;8686:4;8679:5;8675:16;8653:52;:::i;:::-;8730:29;8752:6;8730:29;:::i;:::-;8725:3;8721:39;8714:46;;8496:270;;;;;:::o;8772:364::-;;8888:39;8921:5;8888:39;:::i;:::-;8943:71;9007:6;9002:3;8943:71;:::i;:::-;8936:78;;9023:52;9068:6;9063:3;9056:4;9049:5;9045:16;9023:52;:::i;:::-;9100:29;9122:6;9100:29;:::i;:::-;9095:3;9091:39;9084:46;;8864:272;;;;;:::o;9142:377::-;;9276:39;9309:5;9276:39;:::i;:::-;9331:89;9413:6;9408:3;9331:89;:::i;:::-;9324:96;;9429:52;9474:6;9469:3;9462:4;9455:5;9451:16;9429:52;:::i;:::-;9506:6;9501:3;9497:16;9490:23;;9252:267;;;;;:::o;9525:329::-;;9688:67;9752:2;9747:3;9688:67;:::i;:::-;9681:74;;9785:33;9781:1;9776:3;9772:11;9765:54;9845:2;9840:3;9836:12;9829:19;;9671:183;;;:::o;9860:319::-;;10023:67;10087:2;10082:3;10023:67;:::i;:::-;10016:74;;10120:23;10116:1;10111:3;10107:11;10100:44;10170:2;10165:3;10161:12;10154:19;;10006:173;;;:::o;10185:370::-;;10348:67;10412:2;10407:3;10348:67;:::i;:::-;10341:74;;10445:34;10441:1;10436:3;10432:11;10425:55;10511:8;10506:2;10501:3;10497:12;10490:30;10546:2;10541:3;10537:12;10530:19;;10331:224;;;:::o;10561:375::-;;10724:67;10788:2;10783:3;10724:67;:::i;:::-;10717:74;;10821:34;10817:1;10812:3;10808:11;10801:55;10887:13;10882:2;10877:3;10873:12;10866:35;10927:2;10922:3;10918:12;10911:19;;10707:229;;;:::o;10942:315::-;;11105:67;11169:2;11164:3;11105:67;:::i;:::-;11098:74;;11202:19;11198:1;11193:3;11189:11;11182:40;11248:2;11243:3;11239:12;11232:19;;11088:169;;;:::o;11263:382::-;;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11523:34;11519:1;11514:3;11510:11;11503:55;11589:20;11584:2;11579:3;11575:12;11568:42;11636:2;11631:3;11627:12;11620:19;;11409:236;;;:::o;11651:370::-;;11814:67;11878:2;11873:3;11814:67;:::i;:::-;11807:74;;11911:34;11907:1;11902:3;11898:11;11891:55;11977:8;11972:2;11967:3;11963:12;11956:30;12012:2;12007:3;12003:12;11996:19;;11797:224;;;:::o;12027:326::-;;12190:67;12254:2;12249:3;12190:67;:::i;:::-;12183:74;;12287:30;12283:1;12278:3;12274:11;12267:51;12344:2;12339:3;12335:12;12328:19;;12173:180;;;:::o;12359:368::-;;12522:67;12586:2;12581:3;12522:67;:::i;:::-;12515:74;;12619:34;12615:1;12610:3;12606:11;12599:55;12685:6;12680:2;12675:3;12671:12;12664:28;12718:2;12713:3;12709:12;12702:19;;12505:222;;;:::o;12733:323::-;;12896:67;12960:2;12955:3;12896:67;:::i;:::-;12889:74;;12993:27;12989:1;12984:3;12980:11;12973:48;13047:2;13042:3;13038:12;13031:19;;12879:177;;;:::o;13062:324::-;;13225:67;13289:2;13284:3;13225:67;:::i;:::-;13218:74;;13322:28;13318:1;13313:3;13309:11;13302:49;13377:2;13372:3;13368:12;13361:19;;13208:178;;;:::o;13392:376::-;;13555:67;13619:2;13614:3;13555:67;:::i;:::-;13548:74;;13652:34;13648:1;13643:3;13639:11;13632:55;13718:14;13713:2;13708:3;13704:12;13697:36;13759:2;13754:3;13750:12;13743:19;;13538:230;;;:::o;13774:322::-;;13937:67;14001:2;13996:3;13937:67;:::i;:::-;13930:74;;14034:26;14030:1;14025:3;14021:11;14014:47;14087:2;14082:3;14078:12;14071:19;;13920:176;;;:::o;14102:329::-;;14265:67;14329:2;14324:3;14265:67;:::i;:::-;14258:74;;14362:33;14358:1;14353:3;14349:11;14342:54;14422:2;14417:3;14413:12;14406:19;;14248:183;;;:::o;14437:388::-;;14600:67;14664:2;14659:3;14600:67;:::i;:::-;14593:74;;14697:34;14693:1;14688:3;14684:11;14677:55;14763:26;14758:2;14753:3;14749:12;14742:48;14816:2;14811:3;14807:12;14800:19;;14583:242;;;:::o;14831:367::-;;14994:67;15058:2;15053:3;14994:67;:::i;:::-;14987:74;;15091:34;15087:1;15082:3;15078:11;15071:55;15157:5;15152:2;15147:3;15143:12;15136:27;15189:2;15184:3;15180:12;15173:19;;14977:221;;;:::o;15204:374::-;;15367:67;15431:2;15426:3;15367:67;:::i;:::-;15360:74;;15464:34;15460:1;15455:3;15451:11;15444:55;15530:12;15525:2;15520:3;15516:12;15509:34;15569:2;15564:3;15560:12;15553:19;;15350:228;;;:::o;15584:373::-;;15747:67;15811:2;15806:3;15747:67;:::i;:::-;15740:74;;15844:34;15840:1;15835:3;15831:11;15824:55;15910:11;15905:2;15900:3;15896:12;15889:33;15948:2;15943:3;15939:12;15932:19;;15730:227;;;:::o;15963:320::-;;16126:67;16190:2;16185:3;16126:67;:::i;:::-;16119:74;;16223:24;16219:1;16214:3;16210:11;16203:45;16274:2;16269:3;16265:12;16258:19;;16109:174;;;:::o;16289:317::-;;16452:67;16516:2;16511:3;16452:67;:::i;:::-;16445:74;;16549:21;16545:1;16540:3;16536:11;16529:42;16597:2;16592:3;16588:12;16581:19;;16435:171;;;:::o;16612:365::-;;16775:67;16839:2;16834:3;16775:67;:::i;:::-;16768:74;;16872:34;16868:1;16863:3;16859:11;16852:55;16938:3;16933:2;16928:3;16924:12;16917:25;16968:2;16963:3;16959:12;16952:19;;16758:219;;;:::o;16983:330::-;;17146:67;17210:2;17205:3;17146:67;:::i;:::-;17139:74;;17243:34;17239:1;17234:3;17230:11;17223:55;17304:2;17299:3;17295:12;17288:19;;17129:184;;;:::o;17319:376::-;;17482:67;17546:2;17541:3;17482:67;:::i;:::-;17475:74;;17579:34;17575:1;17570:3;17566:11;17559:55;17645:14;17640:2;17635:3;17631:12;17624:36;17686:2;17681:3;17677:12;17670:19;;17465:230;;;:::o;17701:316::-;;17864:67;17928:2;17923:3;17864:67;:::i;:::-;17857:74;;17961:20;17957:1;17952:3;17948:11;17941:41;18008:2;18003:3;17999:12;17992:19;;17847:170;;;:::o;18023:330::-;;18186:67;18250:2;18245:3;18186:67;:::i;:::-;18179:74;;18283:34;18279:1;18274:3;18270:11;18263:55;18344:2;18339:3;18335:12;18328:19;;18169:184;;;:::o;18359:373::-;;18522:67;18586:2;18581:3;18522:67;:::i;:::-;18515:74;;18619:34;18615:1;18610:3;18606:11;18599:55;18685:11;18680:2;18675:3;18671:12;18664:33;18723:2;18718:3;18714:12;18707:19;;18505:227;;;:::o;18738:317::-;;18901:67;18965:2;18960:3;18901:67;:::i;:::-;18894:74;;18998:21;18994:1;18989:3;18985:11;18978:42;19046:2;19041:3;19037:12;19030:19;;18884:171;;;:::o;19061:317::-;;19224:67;19288:2;19283:3;19224:67;:::i;:::-;19217:74;;19321:21;19317:1;19312:3;19308:11;19301:42;19369:2;19364:3;19360:12;19353:19;;19207:171;;;:::o;19384:319::-;;19547:67;19611:2;19606:3;19547:67;:::i;:::-;19540:74;;19644:23;19640:1;19635:3;19631:11;19624:44;19694:2;19689:3;19685:12;19678:19;;19530:173;;;:::o;19709:377::-;;19872:67;19936:2;19931:3;19872:67;:::i;:::-;19865:74;;19969:34;19965:1;19960:3;19956:11;19949:55;20035:15;20030:2;20025:3;20021:12;20014:37;20077:2;20072:3;20068:12;20061:19;;19855:231;;;:::o;20092:365::-;;20255:67;20319:2;20314:3;20255:67;:::i;:::-;20248:74;;20352:34;20348:1;20343:3;20339:11;20332:55;20418:3;20413:2;20408:3;20404:12;20397:25;20448:2;20443:3;20439:12;20432:19;;20238:219;;;:::o;20463:367::-;;20626:67;20690:2;20685:3;20626:67;:::i;:::-;20619:74;;20723:34;20719:1;20714:3;20710:11;20703:55;20789:5;20784:2;20779:3;20775:12;20768:27;20821:2;20816:3;20812:12;20805:19;;20609:221;;;:::o;20836:381::-;;20999:67;21063:2;21058:3;20999:67;:::i;:::-;20992:74;;21096:34;21092:1;21087:3;21083:11;21076:55;21162:19;21157:2;21152:3;21148:12;21141:41;21208:2;21203:3;21199:12;21192:19;;20982:235;;;:::o;21223:324::-;;21386:67;21450:2;21445:3;21386:67;:::i;:::-;21379:74;;21483:28;21479:1;21474:3;21470:11;21463:49;21538:2;21533:3;21529:12;21522:19;;21369:178;;;:::o;21553:310::-;;21716:67;21780:2;21775:3;21716:67;:::i;:::-;21709:74;;21813:14;21809:1;21804:3;21800:11;21793:35;21854:2;21849:3;21845:12;21838:19;;21699:164;;;:::o;21869:325::-;;22032:67;22096:2;22091:3;22032:67;:::i;:::-;22025:74;;22129:29;22125:1;22120:3;22116:11;22109:50;22185:2;22180:3;22176:12;22169:19;;22015:179;;;:::o;22200:376::-;;22363:67;22427:2;22422:3;22363:67;:::i;:::-;22356:74;;22460:34;22456:1;22451:3;22447:11;22440:55;22526:14;22521:2;22516:3;22512:12;22505:36;22567:2;22562:3;22558:12;22551:19;;22346:230;;;:::o;22582:323::-;;22745:67;22809:2;22804:3;22745:67;:::i;:::-;22738:74;;22842:27;22838:1;22833:3;22829:11;22822:48;22896:2;22891:3;22887:12;22880:19;;22728:177;;;:::o;22911:324::-;;23074:67;23138:2;23133:3;23074:67;:::i;:::-;23067:74;;23171:28;23167:1;23162:3;23158:11;23151:49;23226:2;23221:3;23217:12;23210:19;;23057:178;;;:::o;23241:118::-;23328:24;23346:5;23328:24;:::i;:::-;23323:3;23316:37;23306:53;;:::o;23365:435::-;;23567:95;23658:3;23649:6;23567:95;:::i;:::-;23560:102;;23679:95;23770:3;23761:6;23679:95;:::i;:::-;23672:102;;23791:3;23784:10;;23549:251;;;;;:::o;23806:222::-;;23937:2;23926:9;23922:18;23914:26;;23950:71;24018:1;24007:9;24003:17;23994:6;23950:71;:::i;:::-;23904:124;;;;:::o;24034:640::-;;24267:3;24256:9;24252:19;24244:27;;24281:71;24349:1;24338:9;24334:17;24325:6;24281:71;:::i;:::-;24362:72;24430:2;24419:9;24415:18;24406:6;24362:72;:::i;:::-;24444;24512:2;24501:9;24497:18;24488:6;24444:72;:::i;:::-;24563:9;24557:4;24553:20;24548:2;24537:9;24533:18;24526:48;24591:76;24662:4;24653:6;24591:76;:::i;:::-;24583:84;;24234:440;;;;;;;:::o;24680:210::-;;24805:2;24794:9;24790:18;24782:26;;24818:65;24880:1;24869:9;24865:17;24856:6;24818:65;:::i;:::-;24772:118;;;;:::o;24896:313::-;;25047:2;25036:9;25032:18;25024:26;;25096:9;25090:4;25086:20;25082:1;25071:9;25067:17;25060:47;25124:78;25197:4;25188:6;25124:78;:::i;:::-;25116:86;;25014:195;;;;:::o;25215:419::-;;25419:2;25408:9;25404:18;25396:26;;25468:9;25462:4;25458:20;25454:1;25443:9;25439:17;25432:47;25496:131;25622:4;25496:131;:::i;:::-;25488:139;;25386:248;;;:::o;25640:419::-;;25844:2;25833:9;25829:18;25821:26;;25893:9;25887:4;25883:20;25879:1;25868:9;25864:17;25857:47;25921:131;26047:4;25921:131;:::i;:::-;25913:139;;25811:248;;;:::o;26065:419::-;;26269:2;26258:9;26254:18;26246:26;;26318:9;26312:4;26308:20;26304:1;26293:9;26289:17;26282:47;26346:131;26472:4;26346:131;:::i;:::-;26338:139;;26236:248;;;:::o;26490:419::-;;26694:2;26683:9;26679:18;26671:26;;26743:9;26737:4;26733:20;26729:1;26718:9;26714:17;26707:47;26771:131;26897:4;26771:131;:::i;:::-;26763:139;;26661:248;;;:::o;26915:419::-;;27119:2;27108:9;27104:18;27096:26;;27168:9;27162:4;27158:20;27154:1;27143:9;27139:17;27132:47;27196:131;27322:4;27196:131;:::i;:::-;27188:139;;27086:248;;;:::o;27340:419::-;;27544:2;27533:9;27529:18;27521:26;;27593:9;27587:4;27583:20;27579:1;27568:9;27564:17;27557:47;27621:131;27747:4;27621:131;:::i;:::-;27613:139;;27511:248;;;:::o;27765:419::-;;27969:2;27958:9;27954:18;27946:26;;28018:9;28012:4;28008:20;28004:1;27993:9;27989:17;27982:47;28046:131;28172:4;28046:131;:::i;:::-;28038:139;;27936:248;;;:::o;28190:419::-;;28394:2;28383:9;28379:18;28371:26;;28443:9;28437:4;28433:20;28429:1;28418:9;28414:17;28407:47;28471:131;28597:4;28471:131;:::i;:::-;28463:139;;28361:248;;;:::o;28615:419::-;;28819:2;28808:9;28804:18;28796:26;;28868:9;28862:4;28858:20;28854:1;28843:9;28839:17;28832:47;28896:131;29022:4;28896:131;:::i;:::-;28888:139;;28786:248;;;:::o;29040:419::-;;29244:2;29233:9;29229:18;29221:26;;29293:9;29287:4;29283:20;29279:1;29268:9;29264:17;29257:47;29321:131;29447:4;29321:131;:::i;:::-;29313:139;;29211:248;;;:::o;29465:419::-;;29669:2;29658:9;29654:18;29646:26;;29718:9;29712:4;29708:20;29704:1;29693:9;29689:17;29682:47;29746:131;29872:4;29746:131;:::i;:::-;29738:139;;29636:248;;;:::o;29890:419::-;;30094:2;30083:9;30079:18;30071:26;;30143:9;30137:4;30133:20;30129:1;30118:9;30114:17;30107:47;30171:131;30297:4;30171:131;:::i;:::-;30163:139;;30061:248;;;:::o;30315:419::-;;30519:2;30508:9;30504:18;30496:26;;30568:9;30562:4;30558:20;30554:1;30543:9;30539:17;30532:47;30596:131;30722:4;30596:131;:::i;:::-;30588:139;;30486:248;;;:::o;30740:419::-;;30944:2;30933:9;30929:18;30921:26;;30993:9;30987:4;30983:20;30979:1;30968:9;30964:17;30957:47;31021:131;31147:4;31021:131;:::i;:::-;31013:139;;30911:248;;;:::o;31165:419::-;;31369:2;31358:9;31354:18;31346:26;;31418:9;31412:4;31408:20;31404:1;31393:9;31389:17;31382:47;31446:131;31572:4;31446:131;:::i;:::-;31438:139;;31336:248;;;:::o;31590:419::-;;31794:2;31783:9;31779:18;31771:26;;31843:9;31837:4;31833:20;31829:1;31818:9;31814:17;31807:47;31871:131;31997:4;31871:131;:::i;:::-;31863:139;;31761:248;;;:::o;32015:419::-;;32219:2;32208:9;32204:18;32196:26;;32268:9;32262:4;32258:20;32254:1;32243:9;32239:17;32232:47;32296:131;32422:4;32296:131;:::i;:::-;32288:139;;32186:248;;;:::o;32440:419::-;;32644:2;32633:9;32629:18;32621:26;;32693:9;32687:4;32683:20;32679:1;32668:9;32664:17;32657:47;32721:131;32847:4;32721:131;:::i;:::-;32713:139;;32611:248;;;:::o;32865:419::-;;33069:2;33058:9;33054:18;33046:26;;33118:9;33112:4;33108:20;33104:1;33093:9;33089:17;33082:47;33146:131;33272:4;33146:131;:::i;:::-;33138:139;;33036:248;;;:::o;33290:419::-;;33494:2;33483:9;33479:18;33471:26;;33543:9;33537:4;33533:20;33529:1;33518:9;33514:17;33507:47;33571:131;33697:4;33571:131;:::i;:::-;33563:139;;33461:248;;;:::o;33715:419::-;;33919:2;33908:9;33904:18;33896:26;;33968:9;33962:4;33958:20;33954:1;33943:9;33939:17;33932:47;33996:131;34122:4;33996:131;:::i;:::-;33988:139;;33886:248;;;:::o;34140:419::-;;34344:2;34333:9;34329:18;34321:26;;34393:9;34387:4;34383:20;34379:1;34368:9;34364:17;34357:47;34421:131;34547:4;34421:131;:::i;:::-;34413:139;;34311:248;;;:::o;34565:419::-;;34769:2;34758:9;34754:18;34746:26;;34818:9;34812:4;34808:20;34804:1;34793:9;34789:17;34782:47;34846:131;34972:4;34846:131;:::i;:::-;34838:139;;34736:248;;;:::o;34990:419::-;;35194:2;35183:9;35179:18;35171:26;;35243:9;35237:4;35233:20;35229:1;35218:9;35214:17;35207:47;35271:131;35397:4;35271:131;:::i;:::-;35263:139;;35161:248;;;:::o;35415:419::-;;35619:2;35608:9;35604:18;35596:26;;35668:9;35662:4;35658:20;35654:1;35643:9;35639:17;35632:47;35696:131;35822:4;35696:131;:::i;:::-;35688:139;;35586:248;;;:::o;35840:419::-;;36044:2;36033:9;36029:18;36021:26;;36093:9;36087:4;36083:20;36079:1;36068:9;36064:17;36057:47;36121:131;36247:4;36121:131;:::i;:::-;36113:139;;36011:248;;;:::o;36265:419::-;;36469:2;36458:9;36454:18;36446:26;;36518:9;36512:4;36508:20;36504:1;36493:9;36489:17;36482:47;36546:131;36672:4;36546:131;:::i;:::-;36538:139;;36436:248;;;:::o;36690:419::-;;36894:2;36883:9;36879:18;36871:26;;36943:9;36937:4;36933:20;36929:1;36918:9;36914:17;36907:47;36971:131;37097:4;36971:131;:::i;:::-;36963:139;;36861:248;;;:::o;37115:419::-;;37319:2;37308:9;37304:18;37296:26;;37368:9;37362:4;37358:20;37354:1;37343:9;37339:17;37332:47;37396:131;37522:4;37396:131;:::i;:::-;37388:139;;37286:248;;;:::o;37540:419::-;;37744:2;37733:9;37729:18;37721:26;;37793:9;37787:4;37783:20;37779:1;37768:9;37764:17;37757:47;37821:131;37947:4;37821:131;:::i;:::-;37813:139;;37711:248;;;:::o;37965:419::-;;38169:2;38158:9;38154:18;38146:26;;38218:9;38212:4;38208:20;38204:1;38193:9;38189:17;38182:47;38246:131;38372:4;38246:131;:::i;:::-;38238:139;;38136:248;;;:::o;38390:419::-;;38594:2;38583:9;38579:18;38571:26;;38643:9;38637:4;38633:20;38629:1;38618:9;38614:17;38607:47;38671:131;38797:4;38671:131;:::i;:::-;38663:139;;38561:248;;;:::o;38815:419::-;;39019:2;39008:9;39004:18;38996:26;;39068:9;39062:4;39058:20;39054:1;39043:9;39039:17;39032:47;39096:131;39222:4;39096:131;:::i;:::-;39088:139;;38986:248;;;:::o;39240:419::-;;39444:2;39433:9;39429:18;39421:26;;39493:9;39487:4;39483:20;39479:1;39468:9;39464:17;39457:47;39521:131;39647:4;39521:131;:::i;:::-;39513:139;;39411:248;;;:::o;39665:419::-;;39869:2;39858:9;39854:18;39846:26;;39918:9;39912:4;39908:20;39904:1;39893:9;39889:17;39882:47;39946:131;40072:4;39946:131;:::i;:::-;39938:139;;39836:248;;;:::o;40090:419::-;;40294:2;40283:9;40279:18;40271:26;;40343:9;40337:4;40333:20;40329:1;40318:9;40314:17;40307:47;40371:131;40497:4;40371:131;:::i;:::-;40363:139;;40261:248;;;:::o;40515:419::-;;40719:2;40708:9;40704:18;40696:26;;40768:9;40762:4;40758:20;40754:1;40743:9;40739:17;40732:47;40796:131;40922:4;40796:131;:::i;:::-;40788:139;;40686:248;;;:::o;40940:419::-;;41144:2;41133:9;41129:18;41121:26;;41193:9;41187:4;41183:20;41179:1;41168:9;41164:17;41157:47;41221:131;41347:4;41221:131;:::i;:::-;41213:139;;41111:248;;;:::o;41365:419::-;;41569:2;41558:9;41554:18;41546:26;;41618:9;41612:4;41608:20;41604:1;41593:9;41589:17;41582:47;41646:131;41772:4;41646:131;:::i;:::-;41638:139;;41536:248;;;:::o;41790:222::-;;41921:2;41910:9;41906:18;41898:26;;41934:71;42002:1;41991:9;41987:17;41978:6;41934:71;:::i;:::-;41888:124;;;;:::o;42018:283::-;;42084:2;42078:9;42068:19;;42126:4;42118:6;42114:17;42233:6;42221:10;42218:22;42197:18;42185:10;42182:34;42179:62;42176:2;;;42244:18;;:::i;:::-;42176:2;42284:10;42280:2;42273:22;42058:243;;;;:::o;42307:311::-;;42474:18;42466:6;42463:30;42460:2;;;42496:18;;:::i;:::-;42460:2;42546:4;42538:6;42534:17;42526:25;;42606:4;42600;42596:15;42588:23;;42389:229;;;:::o;42624:331::-;;42775:18;42767:6;42764:30;42761:2;;;42797:18;;:::i;:::-;42761:2;42882:4;42878:9;42871:4;42863:6;42859:17;42855:33;42847:41;;42943:4;42937;42933:15;42925:23;;42690:265;;;:::o;42961:332::-;;43113:18;43105:6;43102:30;43099:2;;;43135:18;;:::i;:::-;43099:2;43220:4;43216:9;43209:4;43201:6;43197:17;43193:33;43185:41;;43281:4;43275;43271:15;43263:23;;43028:265;;;:::o;43299:98::-;;43384:5;43378:12;43368:22;;43357:40;;;:::o;43403:99::-;;43489:5;43483:12;43473:22;;43462:40;;;:::o;43508:168::-;;43625:6;43620:3;43613:19;43665:4;43660:3;43656:14;43641:29;;43603:73;;;;:::o;43682:169::-;;43800:6;43795:3;43788:19;43840:4;43835:3;43831:14;43816:29;;43778:73;;;;:::o;43857:148::-;;43996:3;43981:18;;43971:34;;;;:::o;44011:305::-;;44070:20;44088:1;44070:20;:::i;:::-;44065:25;;44104:20;44122:1;44104:20;:::i;:::-;44099:25;;44258:1;44190:66;44186:74;44183:1;44180:81;44177:2;;;44264:18;;:::i;:::-;44177:2;44308:1;44305;44301:9;44294:16;;44055:261;;;;:::o;44322:185::-;;44379:20;44397:1;44379:20;:::i;:::-;44374:25;;44413:20;44431:1;44413:20;:::i;:::-;44408:25;;44452:1;44442:2;;44457:18;;:::i;:::-;44442:2;44499:1;44496;44492:9;44487:14;;44364:143;;;;:::o;44513:348::-;;44576:20;44594:1;44576:20;:::i;:::-;44571:25;;44610:20;44628:1;44610:20;:::i;:::-;44605:25;;44798:1;44730:66;44726:74;44723:1;44720:81;44715:1;44708:9;44701:17;44697:105;44694:2;;;44805:18;;:::i;:::-;44694:2;44853:1;44850;44846:9;44835:20;;44561:300;;;;:::o;44867:191::-;;44927:20;44945:1;44927:20;:::i;:::-;44922:25;;44961:20;44979:1;44961:20;:::i;:::-;44956:25;;45000:1;44997;44994:8;44991:2;;;45005:18;;:::i;:::-;44991:2;45050:1;45047;45043:9;45035:17;;44912:146;;;;:::o;45064:96::-;;45130:24;45148:5;45130:24;:::i;:::-;45119:35;;45109:51;;;:::o;45166:90::-;;45243:5;45236:13;45229:21;45218:32;;45208:48;;;:::o;45262:149::-;;45338:66;45331:5;45327:78;45316:89;;45306:105;;;:::o;45417:126::-;;45494:42;45487:5;45483:54;45472:65;;45462:81;;;:::o;45549:77::-;;45615:5;45604:16;;45594:32;;;:::o;45632:154::-;45716:6;45711:3;45706;45693:30;45778:1;45769:6;45764:3;45760:16;45753:27;45683:103;;;:::o;45792:307::-;45860:1;45870:113;45884:6;45881:1;45878:13;45870:113;;;45969:1;45964:3;45960:11;45954:18;45950:1;45945:3;45941:11;45934:39;45906:2;45903:1;45899:10;45894:15;;45870:113;;;46001:6;45998:1;45995:13;45992:2;;;46081:1;46072:6;46067:3;46063:16;46056:27;45992:2;45841:258;;;;:::o;46105:320::-;;46186:1;46180:4;46176:12;46166:22;;46233:1;46227:4;46223:12;46254:18;46244:2;;46310:4;46302:6;46298:17;46288:27;;46244:2;46372;46364:6;46361:14;46341:18;46338:38;46335:2;;;46391:18;;:::i;:::-;46335:2;46156:269;;;;:::o;46431:233::-;;46493:24;46511:5;46493:24;:::i;:::-;46484:33;;46539:66;46532:5;46529:77;46526:2;;;46609:18;;:::i;:::-;46526:2;46656:1;46649:5;46645:13;46638:20;;46474:190;;;:::o;46670:176::-;;46719:20;46737:1;46719:20;:::i;:::-;46714:25;;46753:20;46771:1;46753:20;:::i;:::-;46748:25;;46792:1;46782:2;;46797:18;;:::i;:::-;46782:2;46838:1;46835;46831:9;46826:14;;46704:142;;;;:::o;46852:180::-;46900:77;46897:1;46890:88;46997:4;46994:1;46987:15;47021:4;47018:1;47011:15;47038:180;47086:77;47083:1;47076:88;47183:4;47180:1;47173:15;47207:4;47204:1;47197:15;47224:180;47272:77;47269:1;47262:88;47369:4;47366:1;47359:15;47393:4;47390:1;47383:15;47410:180;47458:77;47455:1;47448:88;47555:4;47552:1;47545:15;47579:4;47576:1;47569:15;47596:102;;47688:2;47684:7;47679:2;47672:5;47668:14;47664:28;47654:38;;47644:54;;;:::o;47704:122::-;47777:24;47795:5;47777:24;:::i;:::-;47770:5;47767:35;47757:2;;47816:1;47813;47806:12;47757:2;47747:79;:::o;47832:116::-;47902:21;47917:5;47902:21;:::i;:::-;47895:5;47892:32;47882:2;;47938:1;47935;47928:12;47882:2;47872:76;:::o;47954:120::-;48026:23;48043:5;48026:23;:::i;:::-;48019:5;48016:34;48006:2;;48064:1;48061;48054:12;48006:2;47996:78;:::o;48080:122::-;48153:24;48171:5;48153:24;:::i;:::-;48146:5;48143:35;48133:2;;48192:1;48189;48182:12;48133:2;48123:79;:::o

Swarm Source

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