ETH Price: $3,104.39 (+1.04%)
Gas: 5 Gwei

Token

emoshuns (EMOSH)
 

Overview

Max Total Supply

5,000 EMOSH

Holders

884

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
chasingnfts.eth
Balance
2 EMOSH
0xe8e81ff81658255e982603659ab4a21e128cf45f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Emoshuns 5000 generative poems exploring human emotion. Some are relatable, others are difficult to make sense of. just like real life.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
emoshuns

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/**
 *Submitted for verification at Etherscan.io on 2021-08-06
*/

// SPDX-License-Identifier: MIT

// GO TO LINE 1920 TO SEE WHERE EMOSHUNS STARTS

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


//The MIT License

//Copyright (c) 2017-2019 0xcert, d.o.o. https://0xcert.org

//Permission is hereby granted, free of charge, to any person obtaining a copy
//of this software and associated documentation files (the "Software"), to deal
//in the Software without restriction, including without limitation the rights
//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
//copies of the Software, and to permit persons to whom the Software is
//furnished to do so, subject to the following conditions:

//The above copyright notice and this permission notice shall be included in
//all copies or substantial portions of the Software.

//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
//THE SOFTWARE.


pragma solidity >=0.6.2 <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 GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity >=0.6.2 <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.6.2 <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/IERC721Metadata.sol



pragma solidity >=0.6.2 <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/token/ERC721/IERC721Enumerable.sol



pragma solidity >=0.6.2 <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/IERC721Receiver.sol



pragma solidity >=0.6.2 <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/introspection/ERC165.sol



pragma solidity >=0.6.2 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.2 <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/EnumerableSet.sol



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

    /**
     * @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/access/Ownable.sol



pragma solidity >=0.6.2 <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 () internal {
        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;
    }
}






//artist/dev/publciity - @emoshunsNFT (twitter)


pragma solidity >=0.6.2 <0.8.0;
pragma abicoder v2;

contract emoshuns is ERC721, Ownable {

    using SafeMath for uint256;

    uint256 public constant emoshunsPrice = 0e10; 

    uint public constant maxEmoshunsPurchase = 10;

    uint256 public constant MAX_EMOSHUNS = 5000;
      
    bool public saleIsActive = false;

    constructor() ERC721("emoshuns", "EMOSH") { }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }


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


    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    

    function mintEmoshuns(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint emoshuns");
        require(numberOfTokens > 0 && numberOfTokens <= maxEmoshunsPurchase, "Can only mint 10 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_EMOSHUNS, "Purchase would exceed max supply of emoshuns");
        require(msg.value >= emoshunsPrice.mul(numberOfTokens), "Ether value sent is not correct");

        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_EMOSHUNS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }

}

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_EMOSHUNS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emoshunsPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxEmoshunsPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintEmoshuns","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":"saleIsActive","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":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600881526020017f656d6f7368756e730000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f454d4f5348000000000000000000000000000000000000000000000000000000815250620000b16301ffc9a760e01b620001e460201b60201c565b8160069080519060200190620000c9929190620002c4565b508060079080519060200190620000e2929190620002c4565b50620000fb6380ac58cd60e01b620001e460201b60201c565b62000113635b5e139f60e01b620001e460201b60201c565b6200012b63780e9d6360e01b620001e460201b60201c565b505060006200013f620002bc60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003ef565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024790620003bc565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002fc576000855562000348565b82601f106200031757805160ff191683800117855562000348565b8280016001018555821562000348579182015b82811115620003475782518255916020019190600101906200032a565b5b5090506200035791906200035b565b5090565b5b80821115620003765760008160009055506001016200035c565b5090565b600062000389601c83620003de565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b60006020820190508181036000830152620003d7816200037a565b9050919050565b600082825260208201905092915050565b613ef780620003ff6000396000f3fe6080604052600436106101c25760003560e01c80636c0360eb116100f7578063b88d4fde11610095578063e23ee75811610064578063e23ee75814610633578063e985e9c51461065e578063eb8d24441461069b578063f2fde38b146106c6576101c2565b8063b88d4fde14610586578063c87b56dd146105af578063d4b0e744146105ec578063dd11a26d14610617576101c2565b80638462151c116100d15780638462151c146104ca5780638da5cb5b1461050757806395d89b4114610532578063a22cb4651461055d576101c2565b80636c0360eb1461044b57806370a0823114610476578063715018a6146104b3576101c2565b806334918dfd1161016457806342842e0e1161013e57806342842e0e1461037f5780634f6ccce7146103a857806355f804b3146103e55780636352211e1461040e576101c2565b806334918dfd1461032657806336a7f7f11461033d5780633ccfd60b14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612cbf565b6106ef565b6040516101fb91906138b1565b60405180910390f35b34801561021057600080fd5b50610219610756565b60405161022691906138cc565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612d52565b6107f8565b6040516102639190613828565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612c83565b61087d565b005b3480156102a157600080fd5b506102aa610995565b6040516102b79190613c0e565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612b7d565b6109a6565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612c83565b610a06565b60405161031d9190613c0e565b60405180910390f35b34801561033257600080fd5b5061033b610a61565b005b34801561034957600080fd5b50610352610b09565b60405161035f9190613c0e565b60405180910390f35b34801561037457600080fd5b5061037d610b0e565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612b7d565b610bd9565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612d52565b610bf9565b6040516103dc9190613c0e565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612d11565b610c1c565b005b34801561041a57600080fd5b5061043560048036038101906104309190612d52565b610ca4565b6040516104429190613828565b60405180910390f35b34801561045757600080fd5b50610460610cdb565b60405161046d91906138cc565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190612b18565b610d7d565b6040516104aa9190613c0e565b60405180910390f35b3480156104bf57600080fd5b506104c8610e3c565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612b18565b610f79565b6040516104fe919061388f565b60405180910390f35b34801561051357600080fd5b5061051c611072565b6040516105299190613828565b60405180910390f35b34801561053e57600080fd5b5061054761109c565b60405161055491906138cc565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190612c47565b61113e565b005b34801561059257600080fd5b506105ad60048036038101906105a89190612bcc565b6112bf565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190612d52565b611321565b6040516105e391906138cc565b60405180910390f35b3480156105f857600080fd5b506106016114a4565b60405161060e9190613c0e565b60405180910390f35b610631600480360381019061062c9190612d52565b6114a9565b005b34801561063f57600080fd5b50610648611641565b6040516106559190613c0e565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612b41565b611647565b60405161069291906138b1565b60405180910390f35b3480156106a757600080fd5b506106b06116db565b6040516106bd91906138b1565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190612b18565b6116ee565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b60006108038261189a565b610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990613aee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088882610ca4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090613b8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109186118b7565b73ffffffffffffffffffffffffffffffffffffffff1614806109475750610946816109416118b7565b611647565b5b610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90613a4e565b60405180910390fd5b61099083836118bf565b505050565b60006109a16002611978565b905090565b6109b76109b16118b7565b8261198d565b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613bae565b60405180910390fd5b610a01838383611a6b565b505050565b6000610a5982600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611c8290919063ffffffff16565b905092915050565b610a696118b7565b73ffffffffffffffffffffffffffffffffffffffff16610a87611072565b73ffffffffffffffffffffffffffffffffffffffff1614610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490613b0e565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600a81565b610b166118b7565b73ffffffffffffffffffffffffffffffffffffffff16610b34611072565b73ffffffffffffffffffffffffffffffffffffffff1614610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190613b0e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bd5573d6000803e3d6000fd5b5050565b610bf4838383604051806020016040528060008152506112bf565b505050565b600080610c10836002611c9c90919063ffffffff16565b50905080915050919050565b610c246118b7565b73ffffffffffffffffffffffffffffffffffffffff16610c42611072565b73ffffffffffffffffffffffffffffffffffffffff1614610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613b0e565b60405180910390fd5b610ca181611cc8565b50565b6000610cd482604051806060016040528060298152602001613e99602991396002611ce29092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613a6e565b60405180910390fd5b610e35600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611d01565b9050919050565b610e446118b7565b73ffffffffffffffffffffffffffffffffffffffff16610e62611072565b73ffffffffffffffffffffffffffffffffffffffff1614610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60606000610f8683610d7d565b90506000811415610fe157600067ffffffffffffffff81118015610fa957600080fd5b50604051908082528060200260200182016040528015610fd85781602001602082028036833780820191505090505b5091505061106d565b60008167ffffffffffffffff81118015610ffa57600080fd5b506040519080825280602002602001820160405280156110295781602001602082028036833780820191505090505b50905060005b82811015611066576110418582610a06565b82828151811061104d57fe5b602002602001018181525050808060010191505061102f565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b5050505050905090565b6111466118b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab906139ce565b60405180910390fd5b80600560006111c16118b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126e6118b7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b391906138b1565b60405180910390a35050565b6112d06112ca6118b7565b8361198d565b61130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690613bae565b60405180910390fd5b61131b84848484611d16565b50505050565b606061132c8261189a565b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613b6e565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114145780601f106113e957610100808354040283529160200191611414565b820191906000526020600020905b8154815290600101906020018083116113f757829003601f168201915b505050505090506000611425610cdb565b905060008151141561143b57819250505061149f565b600082511115611470578082604051602001611458929190613804565b6040516020818303038152906040529250505061149f565b8061147a85611d72565b60405160200161148b929190613804565b604051602081830303815290604052925050505b919050565b600081565b600a60149054906101000a900460ff166114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613b4e565b60405180910390fd5b6000811180156115095750600a8111155b611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90613bee565b60405180910390fd5b61138861156582611557610995565b611eb990919063ffffffff16565b11156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d9061398e565b60405180910390fd5b6115ba816000611f0e90919063ffffffff16565b3410156115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f3906139ee565b60405180910390fd5b60005b8181101561163d576000611611610995565b905061138861161e610995565b101561162f5761162e3382611f7e565b5b5080806001019150506115ff565b5050565b61138881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b6116f66118b7565b73ffffffffffffffffffffffffffffffffffffffff16611714611072565b73ffffffffffffffffffffffffffffffffffffffff161461176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d19061392e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006118b0826002611f9c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661193283610ca4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061198682600001611fb6565b9050919050565b60006119988261189a565b6119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613a2e565b60405180910390fd5b60006119e283610ca4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a5157508373ffffffffffffffffffffffffffffffffffffffff16611a39846107f8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a625750611a618185611647565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a8b82610ca4565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613b2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b48906139ae565b60405180910390fd5b611b5c838383611fc7565b611b676000826118bf565b611bb881600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611fcc90919063ffffffff16565b50611c0a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611fe690919063ffffffff16565b50611c21818360026120009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c918360000183612035565b60001c905092915050565b600080600080611caf86600001866120a2565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190611cde929190612934565b5050565b6000611cf5846000018460001b84612125565b60001c90509392505050565b6000611d0f826000016121b6565b9050919050565b611d21848484611a6b565b611d2d848484846121c7565b611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d639061390e565b60405180910390fd5b50505050565b60606000821415611dba576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eb4565b600082905060005b60008214611de4578080600101915050600a8281611ddc57fe5b049150611dc2565b60008167ffffffffffffffff81118015611dfd57600080fd5b506040519080825280601f01601f191660200182016040528015611e305781602001600182028036833780820191505090505b50905060006001830390508593505b60008414611eac57600a8481611e5157fe5b0660300160f81b82828060019003935081518110611e6b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481611ea457fe5b049350611e3f565b819450505050505b919050565b600080828401905083811015611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb9061396e565b60405180910390fd5b8091505092915050565b600080831415611f215760009050611f78565b6000828402905082848281611f3257fe5b0414611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90613ace565b60405180910390fd5b809150505b92915050565b611f9882826040518060200160405280600081525061232b565b5050565b6000611fae836000018360001b612386565b905092915050565b600081600001805490509050919050565b505050565b6000611fde836000018360001b6123a9565b905092915050565b6000611ff8836000018360001b612491565b905092915050565b600061202c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612501565b90509392505050565b600081836000018054905011612080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612077906138ee565b60405180910390fd5b82600001828154811061208f57fe5b9060005260206000200154905092915050565b600080828460000180549050116120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590613a8e565b60405180910390fd5b60008460000184815481106120ff57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e91906138cc565b60405180910390fd5b5084600001600182038154811061219a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006121e88473ffffffffffffffffffffffffffffffffffffffff166125dd565b6121f55760019050612323565b60006122bc63150b7a0260e01b61220a6118b7565b8887876040516024016122209493929190613843565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001613e67603291398773ffffffffffffffffffffffffffffffffffffffff166125f09092919063ffffffff16565b90506000818060200190518101906122d49190612ce8565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6123358383612608565b61234260008484846121c7565b612381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123789061390e565b60405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461248557600060018203905060006001866000018054905003905060008660000182815481106123f457fe5b906000526020600020015490508087600001848154811061241157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061244957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061248b565b60009150505b92915050565b600061249d8383612796565b6124f65782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506124fb565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156125a8578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506125d6565b828560000160018303815481106125bb57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606125ff84846000856127b9565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90613aae565b60405180910390fd5b6126818161189a565b156126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b89061394e565b60405180910390fd5b6126cd60008383611fc7565b61271e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611fe690919063ffffffff16565b50612735818360026120009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f590613a0e565b60405180910390fd5b612807856125dd565b612846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d90613bce565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161286f91906137ed565b60006040518083038185875af1925050503d80600081146128ac576040519150601f19603f3d011682016040523d82523d6000602084013e6128b1565b606091505b50915091506128c18282866128cd565b92505050949350505050565b606083156128dd5782905061292d565b6000835111156128f05782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292491906138cc565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261296a57600085556129b1565b82601f1061298357805160ff19168380011785556129b1565b828001600101855582156129b1579182015b828111156129b0578251825591602001919060010190612995565b5b5090506129be91906129c2565b5090565b5b808211156129db5760008160009055506001016129c3565b5090565b60006129f26129ed84613c5a565b613c29565b905082815260208101848484011115612a0a57600080fd5b612a15848285613db5565b509392505050565b6000612a30612a2b84613c8a565b613c29565b905082815260208101848484011115612a4857600080fd5b612a53848285613db5565b509392505050565b600081359050612a6a81613e0a565b92915050565b600081359050612a7f81613e21565b92915050565b600081359050612a9481613e38565b92915050565b600081519050612aa981613e38565b92915050565b600082601f830112612ac057600080fd5b8135612ad08482602086016129df565b91505092915050565b600082601f830112612aea57600080fd5b8135612afa848260208601612a1d565b91505092915050565b600081359050612b1281613e4f565b92915050565b600060208284031215612b2a57600080fd5b6000612b3884828501612a5b565b91505092915050565b60008060408385031215612b5457600080fd5b6000612b6285828601612a5b565b9250506020612b7385828601612a5b565b9150509250929050565b600080600060608486031215612b9257600080fd5b6000612ba086828701612a5b565b9350506020612bb186828701612a5b565b9250506040612bc286828701612b03565b9150509250925092565b60008060008060808587031215612be257600080fd5b6000612bf087828801612a5b565b9450506020612c0187828801612a5b565b9350506040612c1287828801612b03565b925050606085013567ffffffffffffffff811115612c2f57600080fd5b612c3b87828801612aaf565b91505092959194509250565b60008060408385031215612c5a57600080fd5b6000612c6885828601612a5b565b9250506020612c7985828601612a70565b9150509250929050565b60008060408385031215612c9657600080fd5b6000612ca485828601612a5b565b9250506020612cb585828601612b03565b9150509250929050565b600060208284031215612cd157600080fd5b6000612cdf84828501612a85565b91505092915050565b600060208284031215612cfa57600080fd5b6000612d0884828501612a9a565b91505092915050565b600060208284031215612d2357600080fd5b600082013567ffffffffffffffff811115612d3d57600080fd5b612d4984828501612ad9565b91505092915050565b600060208284031215612d6457600080fd5b6000612d7284828501612b03565b91505092915050565b6000612d8783836137cf565b60208301905092915050565b612d9c81613d41565b82525050565b6000612dad82613cca565b612db78185613cf8565b9350612dc283613cba565b8060005b83811015612df3578151612dda8882612d7b565b9750612de583613ceb565b925050600181019050612dc6565b5085935050505092915050565b612e0981613d53565b82525050565b6000612e1a82613cd5565b612e248185613d09565b9350612e34818560208601613dc4565b612e3d81613df9565b840191505092915050565b6000612e5382613cd5565b612e5d8185613d1a565b9350612e6d818560208601613dc4565b80840191505092915050565b6000612e8482613ce0565b612e8e8185613d25565b9350612e9e818560208601613dc4565b612ea781613df9565b840191505092915050565b6000612ebd82613ce0565b612ec78185613d36565b9350612ed7818560208601613dc4565b80840191505092915050565b6000612ef0602283613d25565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f56603283613d25565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612fbc602683613d25565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613022601c83613d25565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613062601b83613d25565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006130a2602c83613d25565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620656d6f7368756e7300000000000000000000000000000000000000006020830152604082019050919050565b6000613108602483613d25565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061316e601983613d25565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131ae601f83613d25565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006131ee602683613d25565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613254602c83613d25565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132ba603883613d25565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613320602a83613d25565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613386602283613d25565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133ec602083613d25565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061342c602183613d25565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613492602c83613d25565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134f8602083613d25565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613538602983613d25565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061359e602483613d25565b91507f53616c65206d7573742062652061637469766520746f206d696e7420656d6f7360008301527f68756e73000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613604602f83613d25565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061366a602183613d25565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136d0603183613d25565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613736601d83613d25565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613776602183613d25565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6137d881613dab565b82525050565b6137e781613dab565b82525050565b60006137f98284612e48565b915081905092915050565b60006138108285612eb2565b915061381c8284612eb2565b91508190509392505050565b600060208201905061383d6000830184612d93565b92915050565b60006080820190506138586000830187612d93565b6138656020830186612d93565b61387260408301856137de565b81810360608301526138848184612e0f565b905095945050505050565b600060208201905081810360008301526138a98184612da2565b905092915050565b60006020820190506138c66000830184612e00565b92915050565b600060208201905081810360008301526138e68184612e79565b905092915050565b6000602082019050818103600083015261390781612ee3565b9050919050565b6000602082019050818103600083015261392781612f49565b9050919050565b6000602082019050818103600083015261394781612faf565b9050919050565b6000602082019050818103600083015261396781613015565b9050919050565b6000602082019050818103600083015261398781613055565b9050919050565b600060208201905081810360008301526139a781613095565b9050919050565b600060208201905081810360008301526139c7816130fb565b9050919050565b600060208201905081810360008301526139e781613161565b9050919050565b60006020820190508181036000830152613a07816131a1565b9050919050565b60006020820190508181036000830152613a27816131e1565b9050919050565b60006020820190508181036000830152613a4781613247565b9050919050565b60006020820190508181036000830152613a67816132ad565b9050919050565b60006020820190508181036000830152613a8781613313565b9050919050565b60006020820190508181036000830152613aa781613379565b9050919050565b60006020820190508181036000830152613ac7816133df565b9050919050565b60006020820190508181036000830152613ae78161341f565b9050919050565b60006020820190508181036000830152613b0781613485565b9050919050565b60006020820190508181036000830152613b27816134eb565b9050919050565b60006020820190508181036000830152613b478161352b565b9050919050565b60006020820190508181036000830152613b6781613591565b9050919050565b60006020820190508181036000830152613b87816135f7565b9050919050565b60006020820190508181036000830152613ba78161365d565b9050919050565b60006020820190508181036000830152613bc7816136c3565b9050919050565b60006020820190508181036000830152613be781613729565b9050919050565b60006020820190508181036000830152613c0781613769565b9050919050565b6000602082019050613c2360008301846137de565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613c5057613c4f613df7565b5b8060405250919050565b600067ffffffffffffffff821115613c7557613c74613df7565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ca557613ca4613df7565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4c82613d8b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613de2578082015181840152602081019050613dc7565b83811115613df1576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b613e1381613d41565b8114613e1e57600080fd5b50565b613e2a81613d53565b8114613e3557600080fd5b50565b613e4181613d5f565b8114613e4c57600080fd5b50565b613e5881613dab565b8114613e6357600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220fd8aba1c648f424e754da1136240577e66d58b23e6bdeb526a9db0fe4520348d64736f6c63430007060033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636c0360eb116100f7578063b88d4fde11610095578063e23ee75811610064578063e23ee75814610633578063e985e9c51461065e578063eb8d24441461069b578063f2fde38b146106c6576101c2565b8063b88d4fde14610586578063c87b56dd146105af578063d4b0e744146105ec578063dd11a26d14610617576101c2565b80638462151c116100d15780638462151c146104ca5780638da5cb5b1461050757806395d89b4114610532578063a22cb4651461055d576101c2565b80636c0360eb1461044b57806370a0823114610476578063715018a6146104b3576101c2565b806334918dfd1161016457806342842e0e1161013e57806342842e0e1461037f5780634f6ccce7146103a857806355f804b3146103e55780636352211e1461040e576101c2565b806334918dfd1461032657806336a7f7f11461033d5780633ccfd60b14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612cbf565b6106ef565b6040516101fb91906138b1565b60405180910390f35b34801561021057600080fd5b50610219610756565b60405161022691906138cc565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612d52565b6107f8565b6040516102639190613828565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612c83565b61087d565b005b3480156102a157600080fd5b506102aa610995565b6040516102b79190613c0e565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612b7d565b6109a6565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612c83565b610a06565b60405161031d9190613c0e565b60405180910390f35b34801561033257600080fd5b5061033b610a61565b005b34801561034957600080fd5b50610352610b09565b60405161035f9190613c0e565b60405180910390f35b34801561037457600080fd5b5061037d610b0e565b005b34801561038b57600080fd5b506103a660048036038101906103a19190612b7d565b610bd9565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612d52565b610bf9565b6040516103dc9190613c0e565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612d11565b610c1c565b005b34801561041a57600080fd5b5061043560048036038101906104309190612d52565b610ca4565b6040516104429190613828565b60405180910390f35b34801561045757600080fd5b50610460610cdb565b60405161046d91906138cc565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190612b18565b610d7d565b6040516104aa9190613c0e565b60405180910390f35b3480156104bf57600080fd5b506104c8610e3c565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612b18565b610f79565b6040516104fe919061388f565b60405180910390f35b34801561051357600080fd5b5061051c611072565b6040516105299190613828565b60405180910390f35b34801561053e57600080fd5b5061054761109c565b60405161055491906138cc565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190612c47565b61113e565b005b34801561059257600080fd5b506105ad60048036038101906105a89190612bcc565b6112bf565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190612d52565b611321565b6040516105e391906138cc565b60405180910390f35b3480156105f857600080fd5b506106016114a4565b60405161060e9190613c0e565b60405180910390f35b610631600480360381019061062c9190612d52565b6114a9565b005b34801561063f57600080fd5b50610648611641565b6040516106559190613c0e565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612b41565b611647565b60405161069291906138b1565b60405180910390f35b3480156106a757600080fd5b506106b06116db565b6040516106bd91906138b1565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190612b18565b6116ee565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107ee5780601f106107c3576101008083540402835291602001916107ee565b820191906000526020600020905b8154815290600101906020018083116107d157829003601f168201915b5050505050905090565b60006108038261189a565b610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990613aee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088882610ca4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090613b8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109186118b7565b73ffffffffffffffffffffffffffffffffffffffff1614806109475750610946816109416118b7565b611647565b5b610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90613a4e565b60405180910390fd5b61099083836118bf565b505050565b60006109a16002611978565b905090565b6109b76109b16118b7565b8261198d565b6109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613bae565b60405180910390fd5b610a01838383611a6b565b505050565b6000610a5982600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611c8290919063ffffffff16565b905092915050565b610a696118b7565b73ffffffffffffffffffffffffffffffffffffffff16610a87611072565b73ffffffffffffffffffffffffffffffffffffffff1614610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490613b0e565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600a81565b610b166118b7565b73ffffffffffffffffffffffffffffffffffffffff16610b34611072565b73ffffffffffffffffffffffffffffffffffffffff1614610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190613b0e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bd5573d6000803e3d6000fd5b5050565b610bf4838383604051806020016040528060008152506112bf565b505050565b600080610c10836002611c9c90919063ffffffff16565b50905080915050919050565b610c246118b7565b73ffffffffffffffffffffffffffffffffffffffff16610c42611072565b73ffffffffffffffffffffffffffffffffffffffff1614610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613b0e565b60405180910390fd5b610ca181611cc8565b50565b6000610cd482604051806060016040528060298152602001613e99602991396002611ce29092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613a6e565b60405180910390fd5b610e35600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611d01565b9050919050565b610e446118b7565b73ffffffffffffffffffffffffffffffffffffffff16610e62611072565b73ffffffffffffffffffffffffffffffffffffffff1614610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60606000610f8683610d7d565b90506000811415610fe157600067ffffffffffffffff81118015610fa957600080fd5b50604051908082528060200260200182016040528015610fd85781602001602082028036833780820191505090505b5091505061106d565b60008167ffffffffffffffff81118015610ffa57600080fd5b506040519080825280602002602001820160405280156110295781602001602082028036833780820191505090505b50905060005b82811015611066576110418582610a06565b82828151811061104d57fe5b602002602001018181525050808060010191505061102f565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b5050505050905090565b6111466118b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab906139ce565b60405180910390fd5b80600560006111c16118b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126e6118b7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b391906138b1565b60405180910390a35050565b6112d06112ca6118b7565b8361198d565b61130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690613bae565b60405180910390fd5b61131b84848484611d16565b50505050565b606061132c8261189a565b61136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613b6e565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114145780601f106113e957610100808354040283529160200191611414565b820191906000526020600020905b8154815290600101906020018083116113f757829003601f168201915b505050505090506000611425610cdb565b905060008151141561143b57819250505061149f565b600082511115611470578082604051602001611458929190613804565b6040516020818303038152906040529250505061149f565b8061147a85611d72565b60405160200161148b929190613804565b604051602081830303815290604052925050505b919050565b600081565b600a60149054906101000a900460ff166114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613b4e565b60405180910390fd5b6000811180156115095750600a8111155b611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90613bee565b60405180910390fd5b61138861156582611557610995565b611eb990919063ffffffff16565b11156115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d9061398e565b60405180910390fd5b6115ba816000611f0e90919063ffffffff16565b3410156115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f3906139ee565b60405180910390fd5b60005b8181101561163d576000611611610995565b905061138861161e610995565b101561162f5761162e3382611f7e565b5b5080806001019150506115ff565b5050565b61138881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b6116f66118b7565b73ffffffffffffffffffffffffffffffffffffffff16611714611072565b73ffffffffffffffffffffffffffffffffffffffff161461176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d19061392e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006118b0826002611f9c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661193283610ca4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061198682600001611fb6565b9050919050565b60006119988261189a565b6119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613a2e565b60405180910390fd5b60006119e283610ca4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a5157508373ffffffffffffffffffffffffffffffffffffffff16611a39846107f8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a625750611a618185611647565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a8b82610ca4565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613b2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b48906139ae565b60405180910390fd5b611b5c838383611fc7565b611b676000826118bf565b611bb881600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611fcc90919063ffffffff16565b50611c0a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611fe690919063ffffffff16565b50611c21818360026120009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c918360000183612035565b60001c905092915050565b600080600080611caf86600001866120a2565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190611cde929190612934565b5050565b6000611cf5846000018460001b84612125565b60001c90509392505050565b6000611d0f826000016121b6565b9050919050565b611d21848484611a6b565b611d2d848484846121c7565b611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d639061390e565b60405180910390fd5b50505050565b60606000821415611dba576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611eb4565b600082905060005b60008214611de4578080600101915050600a8281611ddc57fe5b049150611dc2565b60008167ffffffffffffffff81118015611dfd57600080fd5b506040519080825280601f01601f191660200182016040528015611e305781602001600182028036833780820191505090505b50905060006001830390508593505b60008414611eac57600a8481611e5157fe5b0660300160f81b82828060019003935081518110611e6b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481611ea457fe5b049350611e3f565b819450505050505b919050565b600080828401905083811015611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb9061396e565b60405180910390fd5b8091505092915050565b600080831415611f215760009050611f78565b6000828402905082848281611f3257fe5b0414611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90613ace565b60405180910390fd5b809150505b92915050565b611f9882826040518060200160405280600081525061232b565b5050565b6000611fae836000018360001b612386565b905092915050565b600081600001805490509050919050565b505050565b6000611fde836000018360001b6123a9565b905092915050565b6000611ff8836000018360001b612491565b905092915050565b600061202c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612501565b90509392505050565b600081836000018054905011612080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612077906138ee565b60405180910390fd5b82600001828154811061208f57fe5b9060005260206000200154905092915050565b600080828460000180549050116120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590613a8e565b60405180910390fd5b60008460000184815481106120ff57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e91906138cc565b60405180910390fd5b5084600001600182038154811061219a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006121e88473ffffffffffffffffffffffffffffffffffffffff166125dd565b6121f55760019050612323565b60006122bc63150b7a0260e01b61220a6118b7565b8887876040516024016122209493929190613843565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001613e67603291398773ffffffffffffffffffffffffffffffffffffffff166125f09092919063ffffffff16565b90506000818060200190518101906122d49190612ce8565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6123358383612608565b61234260008484846121c7565b612381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123789061390e565b60405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461248557600060018203905060006001866000018054905003905060008660000182815481106123f457fe5b906000526020600020015490508087600001848154811061241157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061244957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061248b565b60009150505b92915050565b600061249d8383612796565b6124f65782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506124fb565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156125a8578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506125d6565b828560000160018303815481106125bb57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606125ff84846000856127b9565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90613aae565b60405180910390fd5b6126818161189a565b156126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b89061394e565b60405180910390fd5b6126cd60008383611fc7565b61271e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611fe690919063ffffffff16565b50612735818360026120009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f590613a0e565b60405180910390fd5b612807856125dd565b612846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d90613bce565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161286f91906137ed565b60006040518083038185875af1925050503d80600081146128ac576040519150601f19603f3d011682016040523d82523d6000602084013e6128b1565b606091505b50915091506128c18282866128cd565b92505050949350505050565b606083156128dd5782905061292d565b6000835111156128f05782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292491906138cc565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261296a57600085556129b1565b82601f1061298357805160ff19168380011785556129b1565b828001600101855582156129b1579182015b828111156129b0578251825591602001919060010190612995565b5b5090506129be91906129c2565b5090565b5b808211156129db5760008160009055506001016129c3565b5090565b60006129f26129ed84613c5a565b613c29565b905082815260208101848484011115612a0a57600080fd5b612a15848285613db5565b509392505050565b6000612a30612a2b84613c8a565b613c29565b905082815260208101848484011115612a4857600080fd5b612a53848285613db5565b509392505050565b600081359050612a6a81613e0a565b92915050565b600081359050612a7f81613e21565b92915050565b600081359050612a9481613e38565b92915050565b600081519050612aa981613e38565b92915050565b600082601f830112612ac057600080fd5b8135612ad08482602086016129df565b91505092915050565b600082601f830112612aea57600080fd5b8135612afa848260208601612a1d565b91505092915050565b600081359050612b1281613e4f565b92915050565b600060208284031215612b2a57600080fd5b6000612b3884828501612a5b565b91505092915050565b60008060408385031215612b5457600080fd5b6000612b6285828601612a5b565b9250506020612b7385828601612a5b565b9150509250929050565b600080600060608486031215612b9257600080fd5b6000612ba086828701612a5b565b9350506020612bb186828701612a5b565b9250506040612bc286828701612b03565b9150509250925092565b60008060008060808587031215612be257600080fd5b6000612bf087828801612a5b565b9450506020612c0187828801612a5b565b9350506040612c1287828801612b03565b925050606085013567ffffffffffffffff811115612c2f57600080fd5b612c3b87828801612aaf565b91505092959194509250565b60008060408385031215612c5a57600080fd5b6000612c6885828601612a5b565b9250506020612c7985828601612a70565b9150509250929050565b60008060408385031215612c9657600080fd5b6000612ca485828601612a5b565b9250506020612cb585828601612b03565b9150509250929050565b600060208284031215612cd157600080fd5b6000612cdf84828501612a85565b91505092915050565b600060208284031215612cfa57600080fd5b6000612d0884828501612a9a565b91505092915050565b600060208284031215612d2357600080fd5b600082013567ffffffffffffffff811115612d3d57600080fd5b612d4984828501612ad9565b91505092915050565b600060208284031215612d6457600080fd5b6000612d7284828501612b03565b91505092915050565b6000612d8783836137cf565b60208301905092915050565b612d9c81613d41565b82525050565b6000612dad82613cca565b612db78185613cf8565b9350612dc283613cba565b8060005b83811015612df3578151612dda8882612d7b565b9750612de583613ceb565b925050600181019050612dc6565b5085935050505092915050565b612e0981613d53565b82525050565b6000612e1a82613cd5565b612e248185613d09565b9350612e34818560208601613dc4565b612e3d81613df9565b840191505092915050565b6000612e5382613cd5565b612e5d8185613d1a565b9350612e6d818560208601613dc4565b80840191505092915050565b6000612e8482613ce0565b612e8e8185613d25565b9350612e9e818560208601613dc4565b612ea781613df9565b840191505092915050565b6000612ebd82613ce0565b612ec78185613d36565b9350612ed7818560208601613dc4565b80840191505092915050565b6000612ef0602283613d25565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f56603283613d25565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612fbc602683613d25565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613022601c83613d25565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613062601b83613d25565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006130a2602c83613d25565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620656d6f7368756e7300000000000000000000000000000000000000006020830152604082019050919050565b6000613108602483613d25565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061316e601983613d25565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131ae601f83613d25565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006131ee602683613d25565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613254602c83613d25565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132ba603883613d25565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613320602a83613d25565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613386602283613d25565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133ec602083613d25565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061342c602183613d25565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613492602c83613d25565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134f8602083613d25565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613538602983613d25565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061359e602483613d25565b91507f53616c65206d7573742062652061637469766520746f206d696e7420656d6f7360008301527f68756e73000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613604602f83613d25565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061366a602183613d25565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136d0603183613d25565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613736601d83613d25565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613776602183613d25565b91507f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6137d881613dab565b82525050565b6137e781613dab565b82525050565b60006137f98284612e48565b915081905092915050565b60006138108285612eb2565b915061381c8284612eb2565b91508190509392505050565b600060208201905061383d6000830184612d93565b92915050565b60006080820190506138586000830187612d93565b6138656020830186612d93565b61387260408301856137de565b81810360608301526138848184612e0f565b905095945050505050565b600060208201905081810360008301526138a98184612da2565b905092915050565b60006020820190506138c66000830184612e00565b92915050565b600060208201905081810360008301526138e68184612e79565b905092915050565b6000602082019050818103600083015261390781612ee3565b9050919050565b6000602082019050818103600083015261392781612f49565b9050919050565b6000602082019050818103600083015261394781612faf565b9050919050565b6000602082019050818103600083015261396781613015565b9050919050565b6000602082019050818103600083015261398781613055565b9050919050565b600060208201905081810360008301526139a781613095565b9050919050565b600060208201905081810360008301526139c7816130fb565b9050919050565b600060208201905081810360008301526139e781613161565b9050919050565b60006020820190508181036000830152613a07816131a1565b9050919050565b60006020820190508181036000830152613a27816131e1565b9050919050565b60006020820190508181036000830152613a4781613247565b9050919050565b60006020820190508181036000830152613a67816132ad565b9050919050565b60006020820190508181036000830152613a8781613313565b9050919050565b60006020820190508181036000830152613aa781613379565b9050919050565b60006020820190508181036000830152613ac7816133df565b9050919050565b60006020820190508181036000830152613ae78161341f565b9050919050565b60006020820190508181036000830152613b0781613485565b9050919050565b60006020820190508181036000830152613b27816134eb565b9050919050565b60006020820190508181036000830152613b478161352b565b9050919050565b60006020820190508181036000830152613b6781613591565b9050919050565b60006020820190508181036000830152613b87816135f7565b9050919050565b60006020820190508181036000830152613ba78161365d565b9050919050565b60006020820190508181036000830152613bc7816136c3565b9050919050565b60006020820190508181036000830152613be781613729565b9050919050565b60006020820190508181036000830152613c0781613769565b9050919050565b6000602082019050613c2360008301846137de565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613c5057613c4f613df7565b5b8060405250919050565b600067ffffffffffffffff821115613c7557613c74613df7565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ca557613ca4613df7565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4c82613d8b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613de2578082015181840152602081019050613dc7565b83811115613df1576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b613e1381613d41565b8114613e1e57600080fd5b50565b613e2a81613d53565b8114613e3557600080fd5b50565b613e4181613d5f565b8114613e4c57600080fd5b50565b613e5881613dab565b8114613e6357600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220fd8aba1c648f424e754da1136240577e66d58b23e6bdeb526a9db0fe4520348d64736f6c63430007060033

Deployed Bytecode Sourcemap

68248:1948:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11580:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52864:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55650:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55180:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54658:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56540:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54420:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68837:89;;;;;;;;;;;;;:::i;:::-;;68383:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68589:131;;;;;;;;;;;;;:::i;:::-;;56916:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54946:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68728:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52620:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54239:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52337:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67575:148;;;;;;;;;;;;;:::i;:::-;;68936:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66924:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53033:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55943:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57138:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53208:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68329:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69492:699;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68437:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56309:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68495:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67878:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11580:150;11665:4;11689:20;:33;11710:11;11689:33;;;;;;;;;;;;;;;;;;;;;;;;;;;11682:40;;11580:150;;;:::o;52864:100::-;52918:13;52951:5;52944:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52864:100;:::o;55650:221::-;55726:7;55754:16;55762:7;55754;:16::i;:::-;55746:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55839:15;:24;55855:7;55839:24;;;;;;;;;;;;;;;;;;;;;55832:31;;55650:221;;;:::o;55180:404::-;55261:13;55277:23;55292:7;55277:14;:23::i;:::-;55261:39;;55325:5;55319:11;;:2;:11;;;;55311:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;55405:5;55389:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;55414:44;55438:5;55445:12;:10;:12::i;:::-;55414:23;:44::i;:::-;55389:69;55381:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;55555:21;55564:2;55568:7;55555:8;:21::i;:::-;55180:404;;;:::o;54658:211::-;54719:7;54840:21;:12;:19;:21::i;:::-;54833:28;;54658:211;:::o;56540:305::-;56701:41;56720:12;:10;:12::i;:::-;56734:7;56701:18;:41::i;:::-;56693:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56809:28;56819:4;56825:2;56829:7;56809:9;:28::i;:::-;56540:305;;;:::o;54420:162::-;54517:7;54544:30;54568:5;54544:13;:20;54558:5;54544:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;54537:37;;54420:162;;;;:::o;68837:89::-;67155:12;:10;:12::i;:::-;67144:23;;:7;:5;:7::i;:::-;:23;;;67136:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68906:12:::1;;;;;;;;;;;68905:13;68890:12;;:28;;;;;;;;;;;;;;;;;;68837:89::o:0;68383:45::-;68426:2;68383:45;:::o;68589:131::-;67155:12;:10;:12::i;:::-;67144:23;;:7;:5;:7::i;:::-;:23;;;67136:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68637:12:::1;68652:21;68637:36;;68684:10;:19;;:28;68704:7;68684:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;67215:1;68589:131::o:0;56916:151::-;57020:39;57037:4;57043:2;57047:7;57020:39;;;;;;;;;;;;:16;:39::i;:::-;56916:151;;;:::o;54946:172::-;55021:7;55042:15;55063:22;55079:5;55063:12;:15;;:22;;;;:::i;:::-;55041:44;;;55103:7;55096:14;;;54946:172;;;:::o;68728:99::-;67155:12;:10;:12::i;:::-;67144:23;;:7;:5;:7::i;:::-;:23;;;67136:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68799:20:::1;68811:7;68799:11;:20::i;:::-;68728:99:::0;:::o;52620:177::-;52692:7;52719:70;52736:7;52719:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;52712:77;;52620:177;;;:::o;54239:97::-;54287:13;54320:8;54313:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54239:97;:::o;52337:221::-;52409:7;52454:1;52437:19;;:5;:19;;;;52429:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;52521:29;:13;:20;52535:5;52521:20;;;;;;;;;;;;;;;:27;:29::i;:::-;52514:36;;52337:221;;;:::o;67575:148::-;67155:12;:10;:12::i;:::-;67144:23;;:7;:5;:7::i;:::-;:23;;;67136:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67682:1:::1;67645:40;;67666:6;;;;;;;;;;;67645:40;;;;;;;;;;;;67713:1;67696:6;;:19;;;;;;;;;;;;;;;;;;67575:148::o:0;68936:540::-;68997:16;69027:18;69048:17;69058:6;69048:9;:17::i;:::-;69027:38;;69094:1;69080:10;:15;69076:393;;;69171:1;69157:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69150:23;;;;;69076:393;69206:23;69246:10;69232:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69206:51;;69272:13;69300:130;69324:10;69316:5;:18;69300:130;;;69380:34;69400:6;69408:5;69380:19;:34::i;:::-;69364:6;69371:5;69364:13;;;;;;;;;;;;;:50;;;;;69336:7;;;;;;;69300:130;;;69451:6;69444:13;;;;;68936:540;;;;:::o;66924:87::-;66970:7;66997:6;;;;;;;;;;;66990:13;;66924:87;:::o;53033:104::-;53089:13;53122:7;53115:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53033:104;:::o;55943:295::-;56058:12;:10;:12::i;:::-;56046:24;;:8;:24;;;;56038:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56158:8;56113:18;:32;56132:12;:10;:12::i;:::-;56113:32;;;;;;;;;;;;;;;:42;56146:8;56113:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;56211:8;56182:48;;56197:12;:10;:12::i;:::-;56182:48;;;56221:8;56182:48;;;;;;:::i;:::-;;;;;;;;55943:295;;:::o;57138:285::-;57270:41;57289:12;:10;:12::i;:::-;57303:7;57270:18;:41::i;:::-;57262:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;57376:39;57390:4;57396:2;57400:7;57409:5;57376:13;:39::i;:::-;57138:285;;;;:::o;53208:792::-;53281:13;53315:16;53323:7;53315;:16::i;:::-;53307:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53396:23;53422:10;:19;53433:7;53422:19;;;;;;;;;;;53396:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53452:18;53473:9;:7;:9::i;:::-;53452:30;;53580:1;53564:4;53558:18;:23;53554:72;;;53605:9;53598:16;;;;;;53554:72;53756:1;53736:9;53730:23;:27;53726:108;;;53805:4;53811:9;53788:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53774:48;;;;;;53726:108;53966:4;53972:18;:7;:16;:18::i;:::-;53949:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53935:57;;;;53208:792;;;;:::o;68329:44::-;68369:4;68329:44;:::o;69492:699::-;69569:12;;;;;;;;;;;69561:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;69658:1;69641:14;:18;:59;;;;;68426:2;69663:14;:37;;69641:59;69633:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;68476:4;69757:33;69775:14;69757:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:49;;69749:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;69887:33;69905:14;68369:4;69887:17;;:33;;;;:::i;:::-;69874:9;:46;;69866:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;69973:6;69969:213;69989:14;69985:1;:18;69969:213;;;70025:14;70042:13;:11;:13::i;:::-;70025:30;;68476:4;70074:13;:11;:13::i;:::-;:28;70070:101;;;70123:32;70133:10;70145:9;70123;:32::i;:::-;70070:101;69969:213;70005:3;;;;;;;69969:213;;;;69492:699;:::o;68437:43::-;68476:4;68437:43;:::o;56309:164::-;56406:4;56430:18;:25;56449:5;56430:25;;;;;;;;;;;;;;;:35;56456:8;56430:35;;;;;;;;;;;;;;;;;;;;;;;;;56423:42;;56309:164;;;;:::o;68495:32::-;;;;;;;;;;;;;:::o;67878:244::-;67155:12;:10;:12::i;:::-;67144:23;;:7;:5;:7::i;:::-;:23;;;67136:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67987:1:::1;67967:22;;:8;:22;;;;67959:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;68077:8;68048:38;;68069:6;;;;;;;;;;;68048:38;;;;;;;;;;;;68106:8;68097:6;;:17;;;;;;;;;;;;;;;;;;67878:244:::0;:::o;58890:127::-;58955:4;58979:30;59001:7;58979:12;:21;;:30;;;;:::i;:::-;58972:37;;58890:127;;;:::o;2020:98::-;2073:7;2100:10;2093:17;;2020:98;:::o;64908:192::-;65010:2;64983:15;:24;64999:7;64983:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;65066:7;65062:2;65028:46;;65037:23;65052:7;65037:14;:23::i;:::-;65028:46;;;;;;;;;;;;64908:192;;:::o;45623:123::-;45692:7;45719:19;45727:3;:10;;45719:7;:19::i;:::-;45712:26;;45623:123;;;:::o;59184:355::-;59277:4;59302:16;59310:7;59302;:16::i;:::-;59294:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59378:13;59394:23;59409:7;59394:14;:23::i;:::-;59378:39;;59447:5;59436:16;;:7;:16;;;:51;;;;59480:7;59456:31;;:20;59468:7;59456:11;:20::i;:::-;:31;;;59436:51;:94;;;;59491:39;59515:5;59522:7;59491:23;:39::i;:::-;59436:94;59428:103;;;59184:355;;;;:::o;62320:599::-;62445:4;62418:31;;:23;62433:7;62418:14;:23::i;:::-;:31;;;62410:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;62546:1;62532:16;;:2;:16;;;;62524:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;62602:39;62623:4;62629:2;62633:7;62602:20;:39::i;:::-;62706:29;62723:1;62727:7;62706:8;:29::i;:::-;62748:35;62775:7;62748:13;:19;62762:4;62748:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;62794:30;62816:7;62794:13;:17;62808:2;62794:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;62837:29;62854:7;62863:2;62837:12;:16;;:29;;;;;:::i;:::-;;62903:7;62899:2;62884:27;;62893:4;62884:27;;;;;;;;;;;;62320:599;;;:::o;37414:137::-;37485:7;37520:22;37524:3;:10;;37536:5;37520:3;:22::i;:::-;37512:31;;37505:38;;37414:137;;;;:::o;46085:236::-;46165:7;46174;46195:11;46208:13;46225:22;46229:3;:10;;46241:5;46225:3;:22::i;:::-;46194:53;;;;46274:3;46266:12;;46304:5;46296:14;;46258:55;;;;;;46085:236;;;;;:::o;63520:100::-;63604:8;63593;:19;;;;;;;;;;;;:::i;:::-;;63520:100;:::o;47371:213::-;47478:7;47529:44;47534:3;:10;;47554:3;47546:12;;47560;47529:4;:44::i;:::-;47521:53;;47498:78;;47371:213;;;;;:::o;36956:114::-;37016:7;37043:19;37051:3;:10;;37043:7;:19::i;:::-;37036:26;;36956:114;;;:::o;58305:272::-;58419:28;58429:4;58435:2;58439:7;58419:9;:28::i;:::-;58466:48;58489:4;58495:2;58499:7;58508:5;58466:22;:48::i;:::-;58458:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;58305:272;;;;:::o;47835:746::-;47891:13;48121:1;48112:5;:10;48108:53;;;48139:10;;;;;;;;;;;;;;;;;;;;;48108:53;48171:12;48186:5;48171:20;;48202:14;48227:78;48242:1;48234:4;:9;48227:78;;48260:8;;;;;;;48291:2;48283:10;;;;;;;;;48227:78;;;48315:19;48347:6;48337:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48315:39;;48365:13;48390:1;48381:6;:10;48365:26;;48409:5;48402:12;;48425:117;48440:1;48432:4;:9;48425:117;;48501:2;48494:4;:9;;;;;;48489:2;:14;48476:29;;48458:6;48465:7;;;;;;;48458:15;;;;;;;;;;;:47;;;;;;;;;;;48528:2;48520:10;;;;;;;;;48425:117;;;48566:6;48552:21;;;;;;47835:746;;;;:::o;15142:179::-;15200:7;15220:9;15236:1;15232;:5;15220:17;;15261:1;15256;:6;;15248:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15312:1;15305:8;;;15142:179;;;;:::o;16021:220::-;16079:7;16108:1;16103;:6;16099:20;;;16118:1;16111:8;;;;16099:20;16130:9;16146:1;16142;:5;16130:17;;16175:1;16170;16166;:5;;;;;;:10;16158:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;16232:1;16225:8;;;16021:220;;;;;:::o;59882:110::-;59958:26;59968:2;59972:7;59958:26;;;;;;;;;;;;:9;:26::i;:::-;59882:110;;:::o;45384:151::-;45468:4;45492:35;45502:3;:10;;45522:3;45514:12;;45492:9;:35::i;:::-;45485:42;;45384:151;;;;:::o;42202:110::-;42258:7;42285:3;:12;;:19;;;;42278:26;;42202:110;;;:::o;65713:93::-;;;;:::o;36501:137::-;36571:4;36595:35;36603:3;:10;;36623:5;36615:14;;36595:7;:35::i;:::-;36588:42;;36501:137;;;;:::o;36194:131::-;36261:4;36285:32;36290:3;:10;;36310:5;36302:14;;36285:4;:32::i;:::-;36278:39;;36194:131;;;;:::o;44807:185::-;44896:4;44920:64;44925:3;:10;;44945:3;44937:12;;44975:5;44959:23;;44951:32;;44920:4;:64::i;:::-;44913:71;;44807:185;;;;;:::o;32452:204::-;32519:7;32568:5;32547:3;:11;;:18;;;;:26;32539:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32630:3;:11;;32642:5;32630:18;;;;;;;;;;;;;;;;32623:25;;32452:204;;;;:::o;42667:279::-;42734:7;42743;42793:5;42771:3;:12;;:19;;;;:27;42763:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42850:22;42875:3;:12;;42888:5;42875:19;;;;;;;;;;;;;;;;;;42850:44;;42913:5;:10;;;42925:5;:12;;;42905:33;;;;;42667:279;;;;;:::o;44164:319::-;44258:7;44278:16;44297:3;:12;;:17;44310:3;44297:17;;;;;;;;;;;;44278:36;;44345:1;44333:8;:13;;44348:12;44325:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;44415:3;:12;;44439:1;44428:8;:12;44415:26;;;;;;;;;;;;;;;;;;:33;;;44408:40;;;44164:319;;;;;:::o;31999:109::-;32055:7;32082:3;:11;;:18;;;;32075:25;;31999:109;;;:::o;64185:604::-;64306:4;64333:15;:2;:13;;;:15::i;:::-;64328:60;;64372:4;64365:11;;;;64328:60;64398:23;64424:252;64477:45;;;64537:12;:10;:12::i;:::-;64564:4;64583:7;64605:5;64440:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64424:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;64398:278;;64687:13;64714:10;64703:32;;;;;;;;;;;;:::i;:::-;64687:48;;49334:10;64764:16;;64754:26;;;:6;:26;;;;64746:35;;;;64185:604;;;;;;;:::o;60219:250::-;60315:18;60321:2;60325:7;60315:5;:18::i;:::-;60352:54;60383:1;60387:2;60391:7;60400:5;60352:22;:54::i;:::-;60344:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;60219:250;;;:::o;41982:125::-;42053:4;42098:1;42077:3;:12;;:17;42090:3;42077:17;;;;;;;;;;;;:22;;42070:29;;41982:125;;;;:::o;30154:1544::-;30220:4;30338:18;30359:3;:12;;:19;30372:5;30359:19;;;;;;;;;;;;30338:40;;30409:1;30395:10;:15;30391:1300;;30757:21;30794:1;30781:10;:14;30757:38;;30810:17;30851:1;30830:3;:11;;:18;;;;:22;30810:42;;31097:17;31117:3;:11;;31129:9;31117:22;;;;;;;;;;;;;;;;31097:42;;31263:9;31234:3;:11;;31246:13;31234:26;;;;;;;;;;;;;;;:38;;;;31382:1;31366:13;:17;31340:3;:12;;:23;31353:9;31340:23;;;;;;;;;;;:43;;;;31492:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;31587:3;:12;;:19;31600:5;31587:19;;;;;;;;;;;31580:26;;;31630:4;31623:11;;;;;;;;30391:1300;31674:5;31667:12;;;30154:1544;;;;;:::o;29564:414::-;29627:4;29649:21;29659:3;29664:5;29649:9;:21::i;:::-;29644:327;;29687:3;:11;;29704:5;29687:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29870:3;:11;;:18;;;;29848:3;:12;;:19;29861:5;29848:19;;;;;;;;;;;:40;;;;29910:4;29903:11;;;;29644:327;29954:5;29947:12;;29564:414;;;;;:::o;39482:692::-;39558:4;39674:16;39693:3;:12;;:17;39706:3;39693:17;;;;;;;;;;;;39674:36;;39739:1;39727:8;:13;39723:444;;;39794:3;:12;;39812:38;;;;;;;;39829:3;39812:38;;;;39842:5;39812:38;;;39794:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40009:3;:12;;:19;;;;39989:3;:12;;:17;40002:3;39989:17;;;;;;;;;;;:39;;;;40050:4;40043:11;;;;;39723:444;40123:5;40087:3;:12;;40111:1;40100:8;:12;40087:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;40150:5;40143:12;;;39482:692;;;;;;:::o;20583:422::-;20643:4;20851:12;20962:7;20950:20;20942:28;;20996:1;20989:4;:8;20982:15;;;20583:422;;;:::o;23501:195::-;23604:12;23636:52;23658:6;23666:4;23672:1;23675:12;23636:21;:52::i;:::-;23629:59;;23501:195;;;;;:::o;60805:404::-;60899:1;60885:16;;:2;:16;;;;60877:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;60958:16;60966:7;60958;:16::i;:::-;60957:17;60949:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61020:45;61049:1;61053:2;61057:7;61020:20;:45::i;:::-;61078:30;61100:7;61078:13;:17;61092:2;61078:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61121:29;61138:7;61147:2;61121:12;:16;;:29;;;;;:::i;:::-;;61193:7;61189:2;61168:33;;61185:1;61168:33;;;;;;;;;;;;60805:404;;:::o;31784:129::-;31857:4;31904:1;31881:3;:12;;:19;31894:5;31881:19;;;;;;;;;;;;:24;;31874:31;;31784:129;;;;:::o;24553:530::-;24680:12;24738:5;24713:21;:30;;24705:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;24805:18;24816:6;24805:10;:18::i;:::-;24797:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;24931:12;24945:23;24972:6;:11;;24992:5;25000:4;24972:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24930:75;;;;25023:52;25041:7;25050:10;25062:12;25023:17;:52::i;:::-;25016:59;;;;24553:530;;;;;;:::o;27093:742::-;27208:12;27237:7;27233:595;;;27268:10;27261:17;;;;27233:595;27402:1;27382:10;:17;:21;27378:439;;;27645:10;27639:17;27706:15;27693:10;27689:2;27685:19;27678:44;27593:148;27788:12;27781:20;;;;;;;;;;;:::i;:::-;;;;;;;;27093:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:118::-;6356:24;6374:5;6356:24;:::i;:::-;6351:3;6344:37;6334:53;;:::o;6423:732::-;;6571:54;6619:5;6571:54;:::i;:::-;6641:86;6720:6;6715:3;6641:86;:::i;:::-;6634:93;;6751:56;6801:5;6751:56;:::i;:::-;6830:7;6861:1;6846:284;6871:6;6868:1;6865:13;6846:284;;;6947:6;6941:13;6974:63;7033:3;7018:13;6974:63;:::i;:::-;6967:70;;7060:60;7113:6;7060:60;:::i;:::-;7050:70;;6906:224;6893:1;6890;6886:9;6881:14;;6846:284;;;6850:14;7146:3;7139:10;;6547:608;;;;;;;:::o;7161:109::-;7242:21;7257:5;7242:21;:::i;:::-;7237:3;7230:34;7220:50;;:::o;7276:360::-;;7390:38;7422:5;7390:38;:::i;:::-;7444:70;7507:6;7502:3;7444:70;:::i;:::-;7437:77;;7523:52;7568:6;7563:3;7556:4;7549:5;7545:16;7523:52;:::i;:::-;7600:29;7622:6;7600:29;:::i;:::-;7595:3;7591:39;7584:46;;7366:270;;;;;:::o;7642:373::-;;7774:38;7806:5;7774:38;:::i;:::-;7828:88;7909:6;7904:3;7828:88;:::i;:::-;7821:95;;7925:52;7970:6;7965:3;7958:4;7951:5;7947:16;7925:52;:::i;:::-;8002:6;7997:3;7993:16;7986:23;;7750:265;;;;;:::o;8021:364::-;;8137:39;8170:5;8137:39;:::i;:::-;8192:71;8256:6;8251:3;8192:71;:::i;:::-;8185:78;;8272:52;8317:6;8312:3;8305:4;8298:5;8294:16;8272:52;:::i;:::-;8349:29;8371:6;8349:29;:::i;:::-;8344:3;8340:39;8333:46;;8113:272;;;;;:::o;8391:377::-;;8525:39;8558:5;8525:39;:::i;:::-;8580:89;8662:6;8657:3;8580:89;:::i;:::-;8573:96;;8678:52;8723:6;8718:3;8711:4;8704:5;8700:16;8678:52;:::i;:::-;8755:6;8750:3;8746:16;8739:23;;8501:267;;;;;:::o;8774:366::-;;8937:67;9001:2;8996:3;8937:67;:::i;:::-;8930:74;;9034:34;9030:1;9025:3;9021:11;9014:55;9100:4;9095:2;9090:3;9086:12;9079:26;9131:2;9126:3;9122:12;9115:19;;8920:220;;;:::o;9146:382::-;;9309:67;9373:2;9368:3;9309:67;:::i;:::-;9302:74;;9406:34;9402:1;9397:3;9393:11;9386:55;9472:20;9467:2;9462:3;9458:12;9451:42;9519:2;9514:3;9510:12;9503:19;;9292:236;;;:::o;9534:370::-;;9697:67;9761:2;9756:3;9697:67;:::i;:::-;9690:74;;9794:34;9790:1;9785:3;9781:11;9774:55;9860:8;9855:2;9850:3;9846:12;9839:30;9895:2;9890:3;9886:12;9879:19;;9680:224;;;:::o;9910:326::-;;10073:67;10137:2;10132:3;10073:67;:::i;:::-;10066:74;;10170:30;10166:1;10161:3;10157:11;10150:51;10227:2;10222:3;10218:12;10211:19;;10056:180;;;:::o;10242:325::-;;10405:67;10469:2;10464:3;10405:67;:::i;:::-;10398:74;;10502:29;10498:1;10493:3;10489:11;10482:50;10558:2;10553:3;10549:12;10542:19;;10388:179;;;:::o;10573:376::-;;10736:67;10800:2;10795:3;10736:67;:::i;:::-;10729:74;;10833:34;10829:1;10824:3;10820:11;10813:55;10899:14;10894:2;10889:3;10885:12;10878:36;10940:2;10935:3;10931:12;10924:19;;10719:230;;;:::o;10955:368::-;;11118:67;11182:2;11177:3;11118:67;:::i;:::-;11111:74;;11215:34;11211:1;11206:3;11202:11;11195:55;11281:6;11276:2;11271:3;11267:12;11260:28;11314:2;11309:3;11305:12;11298:19;;11101:222;;;:::o;11329:323::-;;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11589:27;11585:1;11580:3;11576:11;11569:48;11643:2;11638:3;11634:12;11627:19;;11475:177;;;:::o;11658:329::-;;11821:67;11885:2;11880:3;11821:67;:::i;:::-;11814:74;;11918:33;11914:1;11909:3;11905:11;11898:54;11978:2;11973:3;11969:12;11962:19;;11804:183;;;:::o;11993:370::-;;12156:67;12220:2;12215:3;12156:67;:::i;:::-;12149:74;;12253:34;12249:1;12244:3;12240:11;12233:55;12319:8;12314:2;12309:3;12305:12;12298:30;12354:2;12349:3;12345:12;12338:19;;12139:224;;;:::o;12369:376::-;;12532:67;12596:2;12591:3;12532:67;:::i;:::-;12525:74;;12629:34;12625:1;12620:3;12616:11;12609:55;12695:14;12690:2;12685:3;12681:12;12674:36;12736:2;12731:3;12727:12;12720:19;;12515:230;;;:::o;12751:388::-;;12914:67;12978:2;12973:3;12914:67;:::i;:::-;12907:74;;13011:34;13007:1;13002:3;12998:11;12991:55;13077:26;13072:2;13067:3;13063:12;13056:48;13130:2;13125:3;13121:12;13114:19;;12897:242;;;:::o;13145:374::-;;13308:67;13372:2;13367:3;13308:67;:::i;:::-;13301:74;;13405:34;13401:1;13396:3;13392:11;13385:55;13471:12;13466:2;13461:3;13457:12;13450:34;13510:2;13505:3;13501:12;13494:19;;13291:228;;;:::o;13525:366::-;;13688:67;13752:2;13747:3;13688:67;:::i;:::-;13681:74;;13785:34;13781:1;13776:3;13772:11;13765:55;13851:4;13846:2;13841:3;13837:12;13830:26;13882:2;13877:3;13873:12;13866:19;;13671:220;;;:::o;13897:330::-;;14060:67;14124:2;14119:3;14060:67;:::i;:::-;14053:74;;14157:34;14153:1;14148:3;14144:11;14137:55;14218:2;14213:3;14209:12;14202:19;;14043:184;;;:::o;14233:365::-;;14396:67;14460:2;14455:3;14396:67;:::i;:::-;14389:74;;14493:34;14489:1;14484:3;14480:11;14473:55;14559:3;14554:2;14549:3;14545:12;14538:25;14589:2;14584:3;14580:12;14573:19;;14379:219;;;:::o;14604:376::-;;14767:67;14831:2;14826:3;14767:67;:::i;:::-;14760:74;;14864:34;14860:1;14855:3;14851:11;14844:55;14930:14;14925:2;14920:3;14916:12;14909:36;14971:2;14966:3;14962:12;14955:19;;14750:230;;;:::o;14986:330::-;;15149:67;15213:2;15208:3;15149:67;:::i;:::-;15142:74;;15246:34;15242:1;15237:3;15233:11;15226:55;15307:2;15302:3;15298:12;15291:19;;15132:184;;;:::o;15322:373::-;;15485:67;15549:2;15544:3;15485:67;:::i;:::-;15478:74;;15582:34;15578:1;15573:3;15569:11;15562:55;15648:11;15643:2;15638:3;15634:12;15627:33;15686:2;15681:3;15677:12;15670:19;;15468:227;;;:::o;15701:368::-;;15864:67;15928:2;15923:3;15864:67;:::i;:::-;15857:74;;15961:34;15957:1;15952:3;15948:11;15941:55;16027:6;16022:2;16017:3;16013:12;16006:28;16060:2;16055:3;16051:12;16044:19;;15847:222;;;:::o;16075:379::-;;16238:67;16302:2;16297:3;16238:67;:::i;:::-;16231:74;;16335:34;16331:1;16326:3;16322:11;16315:55;16401:17;16396:2;16391:3;16387:12;16380:39;16445:2;16440:3;16436:12;16429:19;;16221:233;;;:::o;16460:365::-;;16623:67;16687:2;16682:3;16623:67;:::i;:::-;16616:74;;16720:34;16716:1;16711:3;16707:11;16700:55;16786:3;16781:2;16776:3;16772:12;16765:25;16816:2;16811:3;16807:12;16800:19;;16606:219;;;:::o;16831:381::-;;16994:67;17058:2;17053:3;16994:67;:::i;:::-;16987:74;;17091:34;17087:1;17082:3;17078:11;17071:55;17157:19;17152:2;17147:3;17143:12;17136:41;17203:2;17198:3;17194:12;17187:19;;16977:235;;;:::o;17218:327::-;;17381:67;17445:2;17440:3;17381:67;:::i;:::-;17374:74;;17478:31;17474:1;17469:3;17465:11;17458:52;17536:2;17531:3;17527:12;17520:19;;17364:181;;;:::o;17551:365::-;;17714:67;17778:2;17773:3;17714:67;:::i;:::-;17707:74;;17811:34;17807:1;17802:3;17798:11;17791:55;17877:3;17872:2;17867:3;17863:12;17856:25;17907:2;17902:3;17898:12;17891:19;;17697:219;;;:::o;17922:108::-;17999:24;18017:5;17999:24;:::i;:::-;17994:3;17987:37;17977:53;;:::o;18036:118::-;18123:24;18141:5;18123:24;:::i;:::-;18118:3;18111:37;18101:53;;:::o;18160:271::-;;18312:93;18401:3;18392:6;18312:93;:::i;:::-;18305:100;;18422:3;18415:10;;18294:137;;;;:::o;18437:435::-;;18639:95;18730:3;18721:6;18639:95;:::i;:::-;18632:102;;18751:95;18842:3;18833:6;18751:95;:::i;:::-;18744:102;;18863:3;18856:10;;18621:251;;;;;:::o;18878:222::-;;19009:2;18998:9;18994:18;18986:26;;19022:71;19090:1;19079:9;19075:17;19066:6;19022:71;:::i;:::-;18976:124;;;;:::o;19106:640::-;;19339:3;19328:9;19324:19;19316:27;;19353:71;19421:1;19410:9;19406:17;19397:6;19353:71;:::i;:::-;19434:72;19502:2;19491:9;19487:18;19478:6;19434:72;:::i;:::-;19516;19584:2;19573:9;19569:18;19560:6;19516:72;:::i;:::-;19635:9;19629:4;19625:20;19620:2;19609:9;19605:18;19598:48;19663:76;19734:4;19725:6;19663:76;:::i;:::-;19655:84;;19306:440;;;;;;;:::o;19752:373::-;;19933:2;19922:9;19918:18;19910:26;;19982:9;19976:4;19972:20;19968:1;19957:9;19953:17;19946:47;20010:108;20113:4;20104:6;20010:108;:::i;:::-;20002:116;;19900:225;;;;:::o;20131:210::-;;20256:2;20245:9;20241:18;20233:26;;20269:65;20331:1;20320:9;20316:17;20307:6;20269:65;:::i;:::-;20223:118;;;;:::o;20347:313::-;;20498:2;20487:9;20483:18;20475:26;;20547:9;20541:4;20537:20;20533:1;20522:9;20518:17;20511:47;20575:78;20648:4;20639:6;20575:78;:::i;:::-;20567:86;;20465:195;;;;:::o;20666:419::-;;20870:2;20859:9;20855:18;20847:26;;20919:9;20913:4;20909:20;20905:1;20894:9;20890:17;20883:47;20947:131;21073:4;20947:131;:::i;:::-;20939:139;;20837:248;;;:::o;21091:419::-;;21295:2;21284:9;21280:18;21272:26;;21344:9;21338:4;21334:20;21330:1;21319:9;21315:17;21308:47;21372:131;21498:4;21372:131;:::i;:::-;21364:139;;21262:248;;;:::o;21516:419::-;;21720:2;21709:9;21705:18;21697:26;;21769:9;21763:4;21759:20;21755:1;21744:9;21740:17;21733:47;21797:131;21923:4;21797:131;:::i;:::-;21789:139;;21687:248;;;:::o;21941:419::-;;22145:2;22134:9;22130:18;22122:26;;22194:9;22188:4;22184:20;22180:1;22169:9;22165:17;22158:47;22222:131;22348:4;22222:131;:::i;:::-;22214:139;;22112:248;;;:::o;22366:419::-;;22570:2;22559:9;22555:18;22547:26;;22619:9;22613:4;22609:20;22605:1;22594:9;22590:17;22583:47;22647:131;22773:4;22647:131;:::i;:::-;22639:139;;22537:248;;;:::o;22791:419::-;;22995:2;22984:9;22980:18;22972:26;;23044:9;23038:4;23034:20;23030:1;23019:9;23015:17;23008:47;23072:131;23198:4;23072:131;:::i;:::-;23064:139;;22962:248;;;:::o;23216:419::-;;23420:2;23409:9;23405:18;23397:26;;23469:9;23463:4;23459:20;23455:1;23444:9;23440:17;23433:47;23497:131;23623:4;23497:131;:::i;:::-;23489:139;;23387:248;;;:::o;23641:419::-;;23845:2;23834:9;23830:18;23822:26;;23894:9;23888:4;23884:20;23880:1;23869:9;23865:17;23858:47;23922:131;24048:4;23922:131;:::i;:::-;23914:139;;23812:248;;;:::o;24066:419::-;;24270:2;24259:9;24255:18;24247:26;;24319:9;24313:4;24309:20;24305:1;24294:9;24290:17;24283:47;24347:131;24473:4;24347:131;:::i;:::-;24339:139;;24237:248;;;:::o;24491:419::-;;24695:2;24684:9;24680:18;24672:26;;24744:9;24738:4;24734:20;24730:1;24719:9;24715:17;24708:47;24772:131;24898:4;24772:131;:::i;:::-;24764:139;;24662:248;;;:::o;24916:419::-;;25120:2;25109:9;25105:18;25097:26;;25169:9;25163:4;25159:20;25155:1;25144:9;25140:17;25133:47;25197:131;25323:4;25197:131;:::i;:::-;25189:139;;25087:248;;;:::o;25341:419::-;;25545:2;25534:9;25530:18;25522:26;;25594:9;25588:4;25584:20;25580:1;25569:9;25565:17;25558:47;25622:131;25748:4;25622:131;:::i;:::-;25614:139;;25512:248;;;:::o;25766:419::-;;25970:2;25959:9;25955:18;25947:26;;26019:9;26013:4;26009:20;26005:1;25994:9;25990:17;25983:47;26047:131;26173:4;26047:131;:::i;:::-;26039:139;;25937:248;;;:::o;26191:419::-;;26395:2;26384:9;26380:18;26372:26;;26444:9;26438:4;26434:20;26430:1;26419:9;26415:17;26408:47;26472:131;26598:4;26472:131;:::i;:::-;26464:139;;26362:248;;;:::o;26616:419::-;;26820:2;26809:9;26805:18;26797:26;;26869:9;26863:4;26859:20;26855:1;26844:9;26840:17;26833:47;26897:131;27023:4;26897:131;:::i;:::-;26889:139;;26787:248;;;:::o;27041:419::-;;27245:2;27234:9;27230:18;27222:26;;27294:9;27288:4;27284:20;27280:1;27269:9;27265:17;27258:47;27322:131;27448:4;27322:131;:::i;:::-;27314:139;;27212:248;;;:::o;27466:419::-;;27670:2;27659:9;27655:18;27647:26;;27719:9;27713:4;27709:20;27705:1;27694:9;27690:17;27683:47;27747:131;27873:4;27747:131;:::i;:::-;27739:139;;27637:248;;;:::o;27891:419::-;;28095:2;28084:9;28080:18;28072:26;;28144:9;28138:4;28134:20;28130:1;28119:9;28115:17;28108:47;28172:131;28298:4;28172:131;:::i;:::-;28164:139;;28062:248;;;:::o;28316:419::-;;28520:2;28509:9;28505:18;28497:26;;28569:9;28563:4;28559:20;28555:1;28544:9;28540:17;28533:47;28597:131;28723:4;28597:131;:::i;:::-;28589:139;;28487:248;;;:::o;28741:419::-;;28945:2;28934:9;28930:18;28922:26;;28994:9;28988:4;28984:20;28980:1;28969:9;28965:17;28958:47;29022:131;29148:4;29022:131;:::i;:::-;29014:139;;28912:248;;;:::o;29166:419::-;;29370:2;29359:9;29355:18;29347:26;;29419:9;29413:4;29409:20;29405:1;29394:9;29390:17;29383:47;29447:131;29573:4;29447:131;:::i;:::-;29439:139;;29337:248;;;:::o;29591:419::-;;29795:2;29784:9;29780:18;29772:26;;29844:9;29838:4;29834:20;29830:1;29819:9;29815:17;29808:47;29872:131;29998:4;29872:131;:::i;:::-;29864:139;;29762:248;;;:::o;30016:419::-;;30220:2;30209:9;30205:18;30197:26;;30269:9;30263:4;30259:20;30255:1;30244:9;30240:17;30233:47;30297:131;30423:4;30297:131;:::i;:::-;30289:139;;30187:248;;;:::o;30441:419::-;;30645:2;30634:9;30630:18;30622:26;;30694:9;30688:4;30684:20;30680:1;30669:9;30665:17;30658:47;30722:131;30848:4;30722:131;:::i;:::-;30714:139;;30612:248;;;:::o;30866:419::-;;31070:2;31059:9;31055:18;31047:26;;31119:9;31113:4;31109:20;31105:1;31094:9;31090:17;31083:47;31147:131;31273:4;31147:131;:::i;:::-;31139:139;;31037:248;;;:::o;31291:222::-;;31422:2;31411:9;31407:18;31399:26;;31435:71;31503:1;31492:9;31488:17;31479:6;31435:71;:::i;:::-;31389:124;;;;:::o;31519:278::-;;31585:2;31579:9;31569:19;;31627:4;31619:6;31615:17;31734:6;31722:10;31719:22;31698:18;31686:10;31683:34;31680:62;31677:2;;;31745:13;;:::i;:::-;31677:2;31780:10;31776:2;31769:22;31559:238;;;;:::o;31803:326::-;;31954:18;31946:6;31943:30;31940:2;;;31976:13;;:::i;:::-;31940:2;32056:4;32052:9;32045:4;32037:6;32033:17;32029:33;32021:41;;32117:4;32111;32107:15;32099:23;;31869:260;;;:::o;32135:327::-;;32287:18;32279:6;32276:30;32273:2;;;32309:13;;:::i;:::-;32273:2;32389:4;32385:9;32378:4;32370:6;32366:17;32362:33;32354:41;;32450:4;32444;32440:15;32432:23;;32202:260;;;:::o;32468:132::-;;32558:3;32550:11;;32588:4;32583:3;32579:14;32571:22;;32540:60;;;:::o;32606:114::-;;32707:5;32701:12;32691:22;;32680:40;;;:::o;32726:98::-;;32811:5;32805:12;32795:22;;32784:40;;;:::o;32830:99::-;;32916:5;32910:12;32900:22;;32889:40;;;:::o;32935:113::-;;33037:4;33032:3;33028:14;33020:22;;33010:38;;;:::o;33054:184::-;;33187:6;33182:3;33175:19;33227:4;33222:3;33218:14;33203:29;;33165:73;;;;:::o;33244:168::-;;33361:6;33356:3;33349:19;33401:4;33396:3;33392:14;33377:29;;33339:73;;;;:::o;33418:147::-;;33556:3;33541:18;;33531:34;;;;:::o;33571:169::-;;33689:6;33684:3;33677:19;33729:4;33724:3;33720:14;33705:29;;33667:73;;;;:::o;33746:148::-;;33885:3;33870:18;;33860:34;;;;:::o;33900:96::-;;33966:24;33984:5;33966:24;:::i;:::-;33955:35;;33945:51;;;:::o;34002:90::-;;34079:5;34072:13;34065:21;34054:32;;34044:48;;;:::o;34098:149::-;;34174:66;34167:5;34163:78;34152:89;;34142:105;;;:::o;34253:126::-;;34330:42;34323:5;34319:54;34308:65;;34298:81;;;:::o;34385:77::-;;34451:5;34440:16;;34430:32;;;:::o;34468:154::-;34552:6;34547:3;34542;34529:30;34614:1;34605:6;34600:3;34596:16;34589:27;34519:103;;;:::o;34628:307::-;34696:1;34706:113;34720:6;34717:1;34714:13;34706:113;;;34805:1;34800:3;34796:11;34790:18;34786:1;34781:3;34777:11;34770:39;34742:2;34739:1;34735:10;34730:15;;34706:113;;;34837:6;34834:1;34831:13;34828:2;;;34917:1;34908:6;34903:3;34899:16;34892:27;34828:2;34677:258;;;;:::o;34941:48::-;34974:9;34995:102;;35087:2;35083:7;35078:2;35071:5;35067:14;35063:28;35053:38;;35043:54;;;:::o;35103:122::-;35176:24;35194:5;35176:24;:::i;:::-;35169:5;35166:35;35156:2;;35215:1;35212;35205:12;35156:2;35146:79;:::o;35231:116::-;35301:21;35316:5;35301:21;:::i;:::-;35294:5;35291:32;35281:2;;35337:1;35334;35327:12;35281:2;35271:76;:::o;35353:120::-;35425:23;35442:5;35425:23;:::i;:::-;35418:5;35415:34;35405:2;;35463:1;35460;35453:12;35405:2;35395:78;:::o;35479:122::-;35552:24;35570:5;35552:24;:::i;:::-;35545:5;35542:35;35532:2;;35591:1;35588;35581:12;35532:2;35522:79;:::o

Swarm Source

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