ETH Price: $3,310.14 (-3.20%)
Gas: 14 Gwei

Token

Bored Axie Yacht Club (BAxYC)
 

Overview

Max Total Supply

587 BAxYC

Holders

258

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xizzy.eth
Balance
1 BAxYC
0x1a2be848d7958570966cc20b1c521d8945cda8c1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BoredAxie

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

// SPDX-License-Identifier: MIT

// GO TO LINE 1904 TO SEE WHERE THE BORED AXIE CONTRACT STARTS
 
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity >=0.6.0 <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 payable) {
        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.0 <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.0 <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.0 <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.0 <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.0 <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.0 <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.0 <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.0 <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.0 <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;
    }
}


pragma solidity ^0.7.0;
pragma abicoder v2;

 

contract BoredAxie is ERC721, Ownable {



//boolean to activate/deactivate the sale when minting is finished 
bool public saleIsActive = true;


uint256 public BoredAxiePrice = 80000000000000000; // 0.080 ETH


uint256 public MAX_BAYC = 3500; //Max supply

 
// Reserve for team - Giveaways/Prizes etc
uint public BoredAxieReserve = 300;  //Reserve for marketing purpose


//Number max of BoredAxie that someone can purchase at once
uint public maxBoredAxiePurchase = 50;




using SafeMath for uint256;
 

address public admin;



constructor() ERC721("Bored Axie Yacht Club", "BAxYC") { 
  
    ///////////////////
    admin = 0xc9a4729919f64E81fFAD83833f6f59C96FCD827A ;//msg.sender; //mettre addresse de son pote
    //////////////////
    _setBaseURI('https://boredaxieyachtclub.com/metadata/');
    

}


//Admin mint

  function mint(address to) external {
    require(msg.sender == admin || msg.sender == owner(), 'only admins can do this');
    uint mintIndex = totalSupply();
    _safeMint(to, mintIndex);
    
  }


 
function withdraw() external {
        require(msg.sender == admin || msg.sender == owner(), 'only admins can do this');
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
}





//User/Customer Mint
  
    function mintBoredAxie(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Banana");
        require(numberOfTokens > 0 && numberOfTokens <= maxBoredAxiePurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_BAYC, "Purchase would exceed max supply of Bananas");
        require(msg.value >= BoredAxiePrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_BAYC) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }


//------------------------//


//Flip the sale from active to not active to allow or not allow minting when it sold out
function flipSaleState() external {
        require(msg.sender == admin || msg.sender == owner(), 'only admins can do this');
        saleIsActive = !saleIsActive;
}


//Reserve some for marketing purpose
function reserveSome(address _to, uint256 _reserveAmount) external {
        require(msg.sender == admin || msg.sender == owner(), 'only admins can do this');
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= BoredAxieReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        BoredAxieReserve = BoredAxieReserve.sub(_reserveAmount);
    }


function changeMintPrice(uint256 newPrice) public onlyOwner {
    require(msg.sender == admin, 'only admin');
    BoredAxiePrice = newPrice;
}

function changeMAX_BAYC(uint256 newR) public onlyOwner {
    require(msg.sender == admin, 'only admin');
     MAX_BAYC = newR;
}

function changeBoredAxieReserve(uint newR) public onlyOwner {
    require(msg.sender == admin, 'only admin');
     BoredAxieReserve = newR;
}

function changemaxBoredAxiePurchase(uint newMPu) public onlyOwner {
    require(msg.sender == admin, 'only admin');
     maxBoredAxiePurchase = newMPu;
}


function changeAdmin(address add) public onlyOwner {
    admin = add;
}




//Set the metadata source url
 function setBaseURI(string memory baseURI) external {
         require(msg.sender == admin || msg.sender == owner(), 'only admins can do this');
        _setBaseURI(baseURI);
    }


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







}

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":"BoredAxiePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BoredAxieReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BAYC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newR","type":"uint256"}],"name":"changeBoredAxieReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newR","type":"uint256"}],"name":"changeMAX_BAYC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMPu","type":"uint256"}],"name":"changemaxBoredAxiePurchase","outputs":[],"stateMutability":"nonpayable","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":"maxBoredAxiePurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBoredAxie","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":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveSome","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"}]

60806040526001600a60146101000a81548160ff02191690831515021790555067011c37937e080000600b55610dac600c5561012c600d556032600e553480156200004957600080fd5b506040518060400160405280601581526020017f426f726564204178696520596163687420436c756200000000000000000000008152506040518060400160405280600581526020017f4241785943000000000000000000000000000000000000000000000000000000815250620000ce6301ffc9a760e01b6200028060201b60201c565b8160069080519060200190620000e69291906200037c565b508060079080519060200190620000ff9291906200037c565b50620001186380ac58cd60e01b6200028060201b60201c565b62000130635b5e139f60e01b6200028060201b60201c565b6200014863780e9d6360e01b6200028060201b60201c565b505060006200015c6200035860201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35073c9a4729919f64e81ffad83833f6f59c96fcd827a600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200027a60405180606001604052806028815260200162005008602891396200036060201b60201c565b620004a7565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e39062000474565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b8060099080519060200190620003789291906200037c565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003b4576000855562000400565b82601f10620003cf57805160ff191683800117855562000400565b8280016001018555821562000400579182015b82811115620003ff578251825591602001919060010190620003e2565b5b5090506200040f919062000413565b5090565b5b808211156200042e57600081600090555060010162000414565b5090565b600062000441601c8362000496565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200048f8162000432565b9050919050565b600082825260208201905092915050565b614b5180620004b76000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063a4f43867116100ab578063c87b56dd1161006f578063c87b56dd146107ce578063e985e9c51461080b578063eb8d244414610848578063f2fde38b14610873578063f851a4401461089c57610225565b8063a4f438671461070e578063b5e3efe614610737578063b88d4fde14610760578063be4c8c2014610789578063c6b6f768146107a557610225565b80638f283970116100f25780638f2839701461063b57806395d89b4114610664578063969cebaa1461068f5780639a3b897d146106ba578063a22cb465146106e557610225565b8063715018a6146105915780638462151c146105a857806386ffc30e146105e55780638da5cb5b1461061057610225565b80633ccfd60b116101b15780635eb0159b116101755780635eb0159b1461049a5780636352211e146104c35780636a627842146105005780636c0360eb1461052957806370a082311461055457610225565b80633ccfd60b146103cb5780633fd17366146103e257806342842e0e1461040b5780634f6ccce71461043457806355f804b31461047157610225565b80631124ec37116101f85780631124ec37146102f857806318160ddd1461032357806323b872dd1461034e5780632f745c591461037757806334918dfd146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613778565b6108c7565b60405161025e9190614479565b60405180910390f35b34801561027357600080fd5b5061027c61092e565b6040516102899190614494565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061380b565b6109d0565b6040516102c691906143f0565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061373c565b610a55565b005b34801561030457600080fd5b5061030d610b6d565b60405161031a9190614856565b60405180910390f35b34801561032f57600080fd5b50610338610b73565b6040516103459190614856565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613636565b610b84565b005b34801561038357600080fd5b5061039e6004803603810190610399919061373c565b610be4565b6040516103ab9190614856565b60405180910390f35b3480156103c057600080fd5b506103c9610c3f565b005b3480156103d757600080fd5b506103e0610d38565b005b3480156103ee57600080fd5b506104096004803603810190610404919061380b565b610e54565b005b34801561041757600080fd5b50610432600480360381019061042d9190613636565b610f6a565b005b34801561044057600080fd5b5061045b6004803603810190610456919061380b565b610f8a565b6040516104689190614856565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906137ca565b610fad565b005b3480156104a657600080fd5b506104c160048036038101906104bc919061380b565b611086565b005b3480156104cf57600080fd5b506104ea60048036038101906104e5919061380b565b61119c565b6040516104f791906143f0565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906135d1565b6111d3565b005b34801561053557600080fd5b5061053e6112ba565b60405161054b9190614494565b60405180910390f35b34801561056057600080fd5b5061057b600480360381019061057691906135d1565b61135c565b6040516105889190614856565b60405180910390f35b34801561059d57600080fd5b506105a661141b565b005b3480156105b457600080fd5b506105cf60048036038101906105ca91906135d1565b611558565b6040516105dc9190614457565b60405180910390f35b3480156105f157600080fd5b506105fa611651565b6040516106079190614856565b60405180910390f35b34801561061c57600080fd5b50610625611657565b60405161063291906143f0565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d91906135d1565b611681565b005b34801561067057600080fd5b50610679611741565b6040516106869190614494565b60405180910390f35b34801561069b57600080fd5b506106a46117e3565b6040516106b19190614856565b60405180910390f35b3480156106c657600080fd5b506106cf6117e9565b6040516106dc9190614856565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190613700565b6117ef565b005b34801561071a57600080fd5b506107356004803603810190610730919061373c565b611970565b005b34801561074357600080fd5b5061075e6004803603810190610759919061380b565b611adf565b005b34801561076c57600080fd5b5061078760048036038101906107829190613685565b611bf5565b005b6107a3600480360381019061079e919061380b565b611c57565b005b3480156107b157600080fd5b506107cc60048036038101906107c7919061380b565b611df1565b005b3480156107da57600080fd5b506107f560048036038101906107f0919061380b565b611f07565b6040516108029190614494565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d91906135fa565b61208a565b60405161083f9190614479565b60405180910390f35b34801561085457600080fd5b5061085d61211e565b60405161086a9190614479565b60405180910390f35b34801561087f57600080fd5b5061089a600480360381019061089591906135d1565b612131565b005b3480156108a857600080fd5b506108b16122dd565b6040516108be91906143f0565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109c65780601f1061099b576101008083540402835291602001916109c6565b820191906000526020600020905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b60006109db82612303565b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190614736565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a608261119c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906147d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af0612320565b73ffffffffffffffffffffffffffffffffffffffff161480610b1f5750610b1e81610b19612320565b61208a565b5b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590614696565b60405180910390fd5b610b688383612328565b505050565b600b5481565b6000610b7f60026123e1565b905090565b610b95610b8f612320565b826123f6565b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90614816565b60405180910390fd5b610bdf8383836124d4565b505050565b6000610c3782600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126eb90919063ffffffff16565b905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ccd5750610c9e611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d03906147b6565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610dc65750610d97611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc906147b6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e50573d6000803e3d6000fd5b5050565b610e5c612320565b73ffffffffffffffffffffffffffffffffffffffff16610e7a611657565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790614756565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906145d6565b60405180910390fd5b80600b8190555050565b610f8583838360405180602001604052806000815250611bf5565b505050565b600080610fa183600261270590919063ffffffff16565b50905080915050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061103b575061100c611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61107a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611071906147b6565b60405180910390fd5b61108381612731565b50565b61108e612320565b73ffffffffffffffffffffffffffffffffffffffff166110ac611657565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614756565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906145d6565b60405180910390fd5b80600c8190555050565b60006111cc82604051806060016040528060298152602001614af360299139600261274b9092919063ffffffff16565b9050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112615750611232611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906147b6565b60405180910390fd5b60006112aa610b73565b90506112b6828261276a565b5050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113525780601f1061132757610100808354040283529160200191611352565b820191906000526020600020905b81548152906001019060200180831161133557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906146b6565b60405180910390fd5b611414600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612788565b9050919050565b611423612320565b73ffffffffffffffffffffffffffffffffffffffff16611441611657565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90614756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006115658361135c565b905060008114156115c057600067ffffffffffffffff8111801561158857600080fd5b506040519080825280602002602001820160405280156115b75781602001602082028036833780820191505090505b5091505061164c565b60008167ffffffffffffffff811180156115d957600080fd5b506040519080825280602002602001820160405280156116085781602001602082028036833780820191505090505b50905060005b82811015611645576116208582610be4565b82828151811061162c57fe5b602002602001018181525050808060010191505061160e565b8193505050505b919050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611689612320565b73ffffffffffffffffffffffffffffffffffffffff166116a7611657565b73ffffffffffffffffffffffffffffffffffffffff16146116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490614756565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117d95780601f106117ae576101008083540402835291602001916117d9565b820191906000526020600020905b8154815290600101906020018083116117bc57829003601f168201915b5050505050905090565b600e5481565b600c5481565b6117f7612320565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c906145b6565b60405180910390fd5b8060056000611872612320565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661191f612320565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119649190614479565b60405180910390a35050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119fe57506119cf611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a34906147b6565b60405180910390fd5b6000611a47610b73565b9050600082118015611a5b5750600d548211155b611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614576565b60405180910390fd5b60005b82811015611abe57611ab18482840161276a565b8080600101915050611a9d565b50611ad482600d5461279d90919063ffffffff16565b600d81905550505050565b611ae7612320565b73ffffffffffffffffffffffffffffffffffffffff16611b05611657565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290614756565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906145d6565b60405180910390fd5b80600d8190555050565b611c06611c00612320565b836123f6565b611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614816565b60405180910390fd5b611c51848484846127ed565b50505050565b600a60149054906101000a900460ff16611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d906147f6565b60405180910390fd5b600081118015611cb85750600e548111155b611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90614676565b60405180910390fd5b600c54611d1482611d06610b73565b61284990919063ffffffff16565b1115611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c906144d6565b60405180910390fd5b611d6a81600b5461289e90919063ffffffff16565b341015611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da3906145f6565b60405180910390fd5b60005b81811015611ded576000611dc1610b73565b9050600c54611dce610b73565b1015611ddf57611dde338261276a565b5b508080600101915050611daf565b5050565b611df9612320565b73ffffffffffffffffffffffffffffffffffffffff16611e17611657565b73ffffffffffffffffffffffffffffffffffffffff1614611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490614756565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef4906145d6565b60405180910390fd5b80600e8190555050565b6060611f1282612303565b611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890614796565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ffa5780601f10611fcf57610100808354040283529160200191611ffa565b820191906000526020600020905b815481529060010190602001808311611fdd57829003601f168201915b50505050509050600061200b6112ba565b9050600081511415612021578192505050612085565b60008251111561205657808260405160200161203e9291906143cc565b60405160208183030381529060405292505050612085565b806120608561290e565b6040516020016120719291906143cc565b604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b612139612320565b73ffffffffffffffffffffffffffffffffffffffff16612157611657565b73ffffffffffffffffffffffffffffffffffffffff16146121ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490614756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490614516565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000612319826002612a5590919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661239b8361119c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123ef82600001612a6f565b9050919050565b600061240182612303565b612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790614656565b60405180910390fd5b600061244b8361119c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124ba57508373ffffffffffffffffffffffffffffffffffffffff166124a2846109d0565b73ffffffffffffffffffffffffffffffffffffffff16145b806124cb57506124ca818561208a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124f48261119c565b73ffffffffffffffffffffffffffffffffffffffff161461254a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254190614776565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190614596565b60405180910390fd5b6125c5838383612a80565b6125d0600082612328565b61262181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a8590919063ffffffff16565b5061267381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a9f90919063ffffffff16565b5061268a81836002612ab99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006126fa8360000183612aee565b60001c905092915050565b6000806000806127188660000186612b5b565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906127479291906133ed565b5050565b600061275e846000018460001b84612bde565b60001c90509392505050565b612784828260405180602001604052806000815250612c6f565b5050565b600061279682600001612cca565b9050919050565b6000828211156127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990614616565b60405180910390fd5b818303905092915050565b6127f88484846124d4565b61280484848484612cdb565b612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a906144f6565b60405180910390fd5b50505050565b600080828401905083811015612894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288b90614556565b60405180910390fd5b8091505092915050565b6000808314156128b15760009050612908565b60008284029050828482816128c257fe5b0414612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90614716565b60405180910390fd5b809150505b92915050565b60606000821415612956576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a50565b600082905060005b60008214612980578080600101915050600a828161297857fe5b04915061295e565b60008167ffffffffffffffff8111801561299957600080fd5b506040519080825280601f01601f1916602001820160405280156129cc5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612a4857600a84816129ed57fe5b0660300160f81b82828060019003935081518110612a0757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612a4057fe5b0493506129db565b819450505050505b919050565b6000612a67836000018360001b612e3f565b905092915050565b600081600001805490509050919050565b505050565b6000612a97836000018360001b612e62565b905092915050565b6000612ab1836000018360001b612f4a565b905092915050565b6000612ae5846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612fba565b90509392505050565b600081836000018054905011612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b30906144b6565b60405180910390fd5b826000018281548110612b4857fe5b9060005260206000200154905092915050565b60008082846000018054905011612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e906146d6565b60405180910390fd5b6000846000018481548110612bb857fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c379190614494565b60405180910390fd5b50846000016001820381548110612c5357fe5b9060005260206000209060020201600101549150509392505050565b612c798383613096565b612c866000848484612cdb565b612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc906144f6565b60405180910390fd5b505050565b600081600001805490509050919050565b6000612cfc8473ffffffffffffffffffffffffffffffffffffffff16613224565b612d095760019050612e37565b6000612dd063150b7a0260e01b612d1e612320565b888787604051602401612d34949392919061440b565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614ac1603291398773ffffffffffffffffffffffffffffffffffffffff166132379092919063ffffffff16565b9050600081806020019051810190612de891906137a1565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612f3e5760006001820390506000600186600001805490500390506000866000018281548110612ead57fe5b9060005260206000200154905080876000018481548110612eca57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612f0257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f44565b60009150505b92915050565b6000612f56838361324f565b612faf578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612fb4565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156130615784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061308f565b8285600001600183038154811061307457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fd906146f6565b60405180910390fd5b61310f81612303565b1561314f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314690614536565b60405180910390fd5b61315b60008383612a80565b6131ac81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a9f90919063ffffffff16565b506131c381836002612ab99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606132468484600085613272565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156132b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ae90614636565b60405180910390fd5b6132c085613224565b6132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f690614836565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161332891906143b5565b60006040518083038185875af1925050503d8060008114613365576040519150601f19603f3d011682016040523d82523d6000602084013e61336a565b606091505b509150915061337a828286613386565b92505050949350505050565b60608315613396578290506133e6565b6000835111156133a95782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dd9190614494565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613423576000855561346a565b82601f1061343c57805160ff191683800117855561346a565b8280016001018555821561346a579182015b8281111561346957825182559160200191906001019061344e565b5b509050613477919061347b565b5090565b5b8082111561349457600081600090555060010161347c565b5090565b60006134ab6134a6846148a2565b614871565b9050828152602081018484840111156134c357600080fd5b6134ce848285614a0f565b509392505050565b60006134e96134e4846148d2565b614871565b90508281526020810184848401111561350157600080fd5b61350c848285614a0f565b509392505050565b60008135905061352381614a64565b92915050565b60008135905061353881614a7b565b92915050565b60008135905061354d81614a92565b92915050565b60008151905061356281614a92565b92915050565b600082601f83011261357957600080fd5b8135613589848260208601613498565b91505092915050565b600082601f8301126135a357600080fd5b81356135b38482602086016134d6565b91505092915050565b6000813590506135cb81614aa9565b92915050565b6000602082840312156135e357600080fd5b60006135f184828501613514565b91505092915050565b6000806040838503121561360d57600080fd5b600061361b85828601613514565b925050602061362c85828601613514565b9150509250929050565b60008060006060848603121561364b57600080fd5b600061365986828701613514565b935050602061366a86828701613514565b925050604061367b868287016135bc565b9150509250925092565b6000806000806080858703121561369b57600080fd5b60006136a987828801613514565b94505060206136ba87828801613514565b93505060406136cb878288016135bc565b925050606085013567ffffffffffffffff8111156136e857600080fd5b6136f487828801613568565b91505092959194509250565b6000806040838503121561371357600080fd5b600061372185828601613514565b925050602061373285828601613529565b9150509250929050565b6000806040838503121561374f57600080fd5b600061375d85828601613514565b925050602061376e858286016135bc565b9150509250929050565b60006020828403121561378a57600080fd5b60006137988482850161353e565b91505092915050565b6000602082840312156137b357600080fd5b60006137c184828501613553565b91505092915050565b6000602082840312156137dc57600080fd5b600082013567ffffffffffffffff8111156137f657600080fd5b61380284828501613592565b91505092915050565b60006020828403121561381d57600080fd5b600061382b848285016135bc565b91505092915050565b60006138408383614397565b60208301905092915050565b6138558161499b565b82525050565b61386481614989565b82525050565b600061387582614912565b61387f8185614940565b935061388a83614902565b8060005b838110156138bb5781516138a28882613834565b97506138ad83614933565b92505060018101905061388e565b5085935050505092915050565b6138d1816149ad565b82525050565b60006138e28261491d565b6138ec8185614951565b93506138fc818560208601614a1e565b61390581614a53565b840191505092915050565b600061391b8261491d565b6139258185614962565b9350613935818560208601614a1e565b80840191505092915050565b600061394c82614928565b613956818561496d565b9350613966818560208601614a1e565b61396f81614a53565b840191505092915050565b600061398582614928565b61398f818561497e565b935061399f818560208601614a1e565b80840191505092915050565b60006139b860228361496d565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a1e602b8361496d565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662042616e616e61730000000000000000000000000000000000000000006020830152604082019050919050565b6000613a8460328361496d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613aea60268361496d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b50601c8361496d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613b90601b8361496d565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613bd060208361496d565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613c1060248361496d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c7660198361496d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613cb6600a8361496d565b91507f6f6e6c792061646d696e000000000000000000000000000000000000000000006000830152602082019050919050565b6000613cf6601f8361496d565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613d36601e8361496d565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613d7660268361496d565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ddc602c8361496d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e4260218361496d565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ea860388361496d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f0e602a8361496d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f7460228361496d565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fda60208361496d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061401a60218361496d565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614080602c8361496d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140e660208361496d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061412660298361496d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061418c602f8361496d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141f260178361496d565b91507f6f6e6c792061646d696e732063616e20646f20746869730000000000000000006000830152602082019050919050565b600061423260218361496d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061429860228361496d565b91507f53616c65206d7573742062652061637469766520746f206d696e742042616e6160008301527f6e610000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142fe60318361496d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614364601d8361496d565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6143a081614a05565b82525050565b6143af81614a05565b82525050565b60006143c18284613910565b915081905092915050565b60006143d8828561397a565b91506143e4828461397a565b91508190509392505050565b6000602082019050614405600083018461385b565b92915050565b6000608082019050614420600083018761384c565b61442d602083018661385b565b61443a60408301856143a6565b818103606083015261444c81846138d7565b905095945050505050565b60006020820190508181036000830152614471818461386a565b905092915050565b600060208201905061448e60008301846138c8565b92915050565b600060208201905081810360008301526144ae8184613941565b905092915050565b600060208201905081810360008301526144cf816139ab565b9050919050565b600060208201905081810360008301526144ef81613a11565b9050919050565b6000602082019050818103600083015261450f81613a77565b9050919050565b6000602082019050818103600083015261452f81613add565b9050919050565b6000602082019050818103600083015261454f81613b43565b9050919050565b6000602082019050818103600083015261456f81613b83565b9050919050565b6000602082019050818103600083015261458f81613bc3565b9050919050565b600060208201905081810360008301526145af81613c03565b9050919050565b600060208201905081810360008301526145cf81613c69565b9050919050565b600060208201905081810360008301526145ef81613ca9565b9050919050565b6000602082019050818103600083015261460f81613ce9565b9050919050565b6000602082019050818103600083015261462f81613d29565b9050919050565b6000602082019050818103600083015261464f81613d69565b9050919050565b6000602082019050818103600083015261466f81613dcf565b9050919050565b6000602082019050818103600083015261468f81613e35565b9050919050565b600060208201905081810360008301526146af81613e9b565b9050919050565b600060208201905081810360008301526146cf81613f01565b9050919050565b600060208201905081810360008301526146ef81613f67565b9050919050565b6000602082019050818103600083015261470f81613fcd565b9050919050565b6000602082019050818103600083015261472f8161400d565b9050919050565b6000602082019050818103600083015261474f81614073565b9050919050565b6000602082019050818103600083015261476f816140d9565b9050919050565b6000602082019050818103600083015261478f81614119565b9050919050565b600060208201905081810360008301526147af8161417f565b9050919050565b600060208201905081810360008301526147cf816141e5565b9050919050565b600060208201905081810360008301526147ef81614225565b9050919050565b6000602082019050818103600083015261480f8161428b565b9050919050565b6000602082019050818103600083015261482f816142f1565b9050919050565b6000602082019050818103600083015261484f81614357565b9050919050565b600060208201905061486b60008301846143a6565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561489857614897614a51565b5b8060405250919050565b600067ffffffffffffffff8211156148bd576148bc614a51565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156148ed576148ec614a51565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614994826149e5565b9050919050565b60006149a6826149e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a3c578082015181840152602081019050614a21565b83811115614a4b576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614a6d81614989565b8114614a7857600080fd5b50565b614a84816149ad565b8114614a8f57600080fd5b50565b614a9b816149b9565b8114614aa657600080fd5b50565b614ab281614a05565b8114614abd57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205075d43af50523b871ff8863cc89f3a7b8c63da55c54c14c68720b938b227b0064736f6c6343000706003368747470733a2f2f626f726564617869657961636874636c75622e636f6d2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063a4f43867116100ab578063c87b56dd1161006f578063c87b56dd146107ce578063e985e9c51461080b578063eb8d244414610848578063f2fde38b14610873578063f851a4401461089c57610225565b8063a4f438671461070e578063b5e3efe614610737578063b88d4fde14610760578063be4c8c2014610789578063c6b6f768146107a557610225565b80638f283970116100f25780638f2839701461063b57806395d89b4114610664578063969cebaa1461068f5780639a3b897d146106ba578063a22cb465146106e557610225565b8063715018a6146105915780638462151c146105a857806386ffc30e146105e55780638da5cb5b1461061057610225565b80633ccfd60b116101b15780635eb0159b116101755780635eb0159b1461049a5780636352211e146104c35780636a627842146105005780636c0360eb1461052957806370a082311461055457610225565b80633ccfd60b146103cb5780633fd17366146103e257806342842e0e1461040b5780634f6ccce71461043457806355f804b31461047157610225565b80631124ec37116101f85780631124ec37146102f857806318160ddd1461032357806323b872dd1461034e5780632f745c591461037757806334918dfd146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613778565b6108c7565b60405161025e9190614479565b60405180910390f35b34801561027357600080fd5b5061027c61092e565b6040516102899190614494565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061380b565b6109d0565b6040516102c691906143f0565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061373c565b610a55565b005b34801561030457600080fd5b5061030d610b6d565b60405161031a9190614856565b60405180910390f35b34801561032f57600080fd5b50610338610b73565b6040516103459190614856565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613636565b610b84565b005b34801561038357600080fd5b5061039e6004803603810190610399919061373c565b610be4565b6040516103ab9190614856565b60405180910390f35b3480156103c057600080fd5b506103c9610c3f565b005b3480156103d757600080fd5b506103e0610d38565b005b3480156103ee57600080fd5b506104096004803603810190610404919061380b565b610e54565b005b34801561041757600080fd5b50610432600480360381019061042d9190613636565b610f6a565b005b34801561044057600080fd5b5061045b6004803603810190610456919061380b565b610f8a565b6040516104689190614856565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906137ca565b610fad565b005b3480156104a657600080fd5b506104c160048036038101906104bc919061380b565b611086565b005b3480156104cf57600080fd5b506104ea60048036038101906104e5919061380b565b61119c565b6040516104f791906143f0565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906135d1565b6111d3565b005b34801561053557600080fd5b5061053e6112ba565b60405161054b9190614494565b60405180910390f35b34801561056057600080fd5b5061057b600480360381019061057691906135d1565b61135c565b6040516105889190614856565b60405180910390f35b34801561059d57600080fd5b506105a661141b565b005b3480156105b457600080fd5b506105cf60048036038101906105ca91906135d1565b611558565b6040516105dc9190614457565b60405180910390f35b3480156105f157600080fd5b506105fa611651565b6040516106079190614856565b60405180910390f35b34801561061c57600080fd5b50610625611657565b60405161063291906143f0565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d91906135d1565b611681565b005b34801561067057600080fd5b50610679611741565b6040516106869190614494565b60405180910390f35b34801561069b57600080fd5b506106a46117e3565b6040516106b19190614856565b60405180910390f35b3480156106c657600080fd5b506106cf6117e9565b6040516106dc9190614856565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190613700565b6117ef565b005b34801561071a57600080fd5b506107356004803603810190610730919061373c565b611970565b005b34801561074357600080fd5b5061075e6004803603810190610759919061380b565b611adf565b005b34801561076c57600080fd5b5061078760048036038101906107829190613685565b611bf5565b005b6107a3600480360381019061079e919061380b565b611c57565b005b3480156107b157600080fd5b506107cc60048036038101906107c7919061380b565b611df1565b005b3480156107da57600080fd5b506107f560048036038101906107f0919061380b565b611f07565b6040516108029190614494565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d91906135fa565b61208a565b60405161083f9190614479565b60405180910390f35b34801561085457600080fd5b5061085d61211e565b60405161086a9190614479565b60405180910390f35b34801561087f57600080fd5b5061089a600480360381019061089591906135d1565b612131565b005b3480156108a857600080fd5b506108b16122dd565b6040516108be91906143f0565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109c65780601f1061099b576101008083540402835291602001916109c6565b820191906000526020600020905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b60006109db82612303565b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190614736565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a608261119c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906147d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af0612320565b73ffffffffffffffffffffffffffffffffffffffff161480610b1f5750610b1e81610b19612320565b61208a565b5b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590614696565b60405180910390fd5b610b688383612328565b505050565b600b5481565b6000610b7f60026123e1565b905090565b610b95610b8f612320565b826123f6565b610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90614816565b60405180910390fd5b610bdf8383836124d4565b505050565b6000610c3782600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126eb90919063ffffffff16565b905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ccd5750610c9e611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d03906147b6565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610dc65750610d97611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc906147b6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e50573d6000803e3d6000fd5b5050565b610e5c612320565b73ffffffffffffffffffffffffffffffffffffffff16610e7a611657565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790614756565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906145d6565b60405180910390fd5b80600b8190555050565b610f8583838360405180602001604052806000815250611bf5565b505050565b600080610fa183600261270590919063ffffffff16565b50905080915050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061103b575061100c611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61107a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611071906147b6565b60405180910390fd5b61108381612731565b50565b61108e612320565b73ffffffffffffffffffffffffffffffffffffffff166110ac611657565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614756565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906145d6565b60405180910390fd5b80600c8190555050565b60006111cc82604051806060016040528060298152602001614af360299139600261274b9092919063ffffffff16565b9050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112615750611232611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906147b6565b60405180910390fd5b60006112aa610b73565b90506112b6828261276a565b5050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113525780601f1061132757610100808354040283529160200191611352565b820191906000526020600020905b81548152906001019060200180831161133557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906146b6565b60405180910390fd5b611414600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612788565b9050919050565b611423612320565b73ffffffffffffffffffffffffffffffffffffffff16611441611657565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90614756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006115658361135c565b905060008114156115c057600067ffffffffffffffff8111801561158857600080fd5b506040519080825280602002602001820160405280156115b75781602001602082028036833780820191505090505b5091505061164c565b60008167ffffffffffffffff811180156115d957600080fd5b506040519080825280602002602001820160405280156116085781602001602082028036833780820191505090505b50905060005b82811015611645576116208582610be4565b82828151811061162c57fe5b602002602001018181525050808060010191505061160e565b8193505050505b919050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611689612320565b73ffffffffffffffffffffffffffffffffffffffff166116a7611657565b73ffffffffffffffffffffffffffffffffffffffff16146116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490614756565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117d95780601f106117ae576101008083540402835291602001916117d9565b820191906000526020600020905b8154815290600101906020018083116117bc57829003601f168201915b5050505050905090565b600e5481565b600c5481565b6117f7612320565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c906145b6565b60405180910390fd5b8060056000611872612320565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661191f612320565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119649190614479565b60405180910390a35050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806119fe57506119cf611657565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a34906147b6565b60405180910390fd5b6000611a47610b73565b9050600082118015611a5b5750600d548211155b611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614576565b60405180910390fd5b60005b82811015611abe57611ab18482840161276a565b8080600101915050611a9d565b50611ad482600d5461279d90919063ffffffff16565b600d81905550505050565b611ae7612320565b73ffffffffffffffffffffffffffffffffffffffff16611b05611657565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290614756565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906145d6565b60405180910390fd5b80600d8190555050565b611c06611c00612320565b836123f6565b611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614816565b60405180910390fd5b611c51848484846127ed565b50505050565b600a60149054906101000a900460ff16611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d906147f6565b60405180910390fd5b600081118015611cb85750600e548111155b611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90614676565b60405180910390fd5b600c54611d1482611d06610b73565b61284990919063ffffffff16565b1115611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c906144d6565b60405180910390fd5b611d6a81600b5461289e90919063ffffffff16565b341015611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da3906145f6565b60405180910390fd5b60005b81811015611ded576000611dc1610b73565b9050600c54611dce610b73565b1015611ddf57611dde338261276a565b5b508080600101915050611daf565b5050565b611df9612320565b73ffffffffffffffffffffffffffffffffffffffff16611e17611657565b73ffffffffffffffffffffffffffffffffffffffff1614611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490614756565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef4906145d6565b60405180910390fd5b80600e8190555050565b6060611f1282612303565b611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890614796565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ffa5780601f10611fcf57610100808354040283529160200191611ffa565b820191906000526020600020905b815481529060010190602001808311611fdd57829003601f168201915b50505050509050600061200b6112ba565b9050600081511415612021578192505050612085565b60008251111561205657808260405160200161203e9291906143cc565b60405160208183030381529060405292505050612085565b806120608561290e565b6040516020016120719291906143cc565b604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b612139612320565b73ffffffffffffffffffffffffffffffffffffffff16612157611657565b73ffffffffffffffffffffffffffffffffffffffff16146121ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490614756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490614516565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000612319826002612a5590919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661239b8361119c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123ef82600001612a6f565b9050919050565b600061240182612303565b612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790614656565b60405180910390fd5b600061244b8361119c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124ba57508373ffffffffffffffffffffffffffffffffffffffff166124a2846109d0565b73ffffffffffffffffffffffffffffffffffffffff16145b806124cb57506124ca818561208a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124f48261119c565b73ffffffffffffffffffffffffffffffffffffffff161461254a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254190614776565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190614596565b60405180910390fd5b6125c5838383612a80565b6125d0600082612328565b61262181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a8590919063ffffffff16565b5061267381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a9f90919063ffffffff16565b5061268a81836002612ab99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006126fa8360000183612aee565b60001c905092915050565b6000806000806127188660000186612b5b565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906127479291906133ed565b5050565b600061275e846000018460001b84612bde565b60001c90509392505050565b612784828260405180602001604052806000815250612c6f565b5050565b600061279682600001612cca565b9050919050565b6000828211156127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990614616565b60405180910390fd5b818303905092915050565b6127f88484846124d4565b61280484848484612cdb565b612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a906144f6565b60405180910390fd5b50505050565b600080828401905083811015612894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288b90614556565b60405180910390fd5b8091505092915050565b6000808314156128b15760009050612908565b60008284029050828482816128c257fe5b0414612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90614716565b60405180910390fd5b809150505b92915050565b60606000821415612956576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a50565b600082905060005b60008214612980578080600101915050600a828161297857fe5b04915061295e565b60008167ffffffffffffffff8111801561299957600080fd5b506040519080825280601f01601f1916602001820160405280156129cc5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612a4857600a84816129ed57fe5b0660300160f81b82828060019003935081518110612a0757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612a4057fe5b0493506129db565b819450505050505b919050565b6000612a67836000018360001b612e3f565b905092915050565b600081600001805490509050919050565b505050565b6000612a97836000018360001b612e62565b905092915050565b6000612ab1836000018360001b612f4a565b905092915050565b6000612ae5846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612fba565b90509392505050565b600081836000018054905011612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b30906144b6565b60405180910390fd5b826000018281548110612b4857fe5b9060005260206000200154905092915050565b60008082846000018054905011612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e906146d6565b60405180910390fd5b6000846000018481548110612bb857fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c379190614494565b60405180910390fd5b50846000016001820381548110612c5357fe5b9060005260206000209060020201600101549150509392505050565b612c798383613096565b612c866000848484612cdb565b612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc906144f6565b60405180910390fd5b505050565b600081600001805490509050919050565b6000612cfc8473ffffffffffffffffffffffffffffffffffffffff16613224565b612d095760019050612e37565b6000612dd063150b7a0260e01b612d1e612320565b888787604051602401612d34949392919061440b565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614ac1603291398773ffffffffffffffffffffffffffffffffffffffff166132379092919063ffffffff16565b9050600081806020019051810190612de891906137a1565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612f3e5760006001820390506000600186600001805490500390506000866000018281548110612ead57fe5b9060005260206000200154905080876000018481548110612eca57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612f0257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f44565b60009150505b92915050565b6000612f56838361324f565b612faf578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612fb4565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156130615784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061308f565b8285600001600183038154811061307457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fd906146f6565b60405180910390fd5b61310f81612303565b1561314f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314690614536565b60405180910390fd5b61315b60008383612a80565b6131ac81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a9f90919063ffffffff16565b506131c381836002612ab99092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606132468484600085613272565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156132b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ae90614636565b60405180910390fd5b6132c085613224565b6132ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f690614836565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161332891906143b5565b60006040518083038185875af1925050503d8060008114613365576040519150601f19603f3d011682016040523d82523d6000602084013e61336a565b606091505b509150915061337a828286613386565b92505050949350505050565b60608315613396578290506133e6565b6000835111156133a95782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dd9190614494565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613423576000855561346a565b82601f1061343c57805160ff191683800117855561346a565b8280016001018555821561346a579182015b8281111561346957825182559160200191906001019061344e565b5b509050613477919061347b565b5090565b5b8082111561349457600081600090555060010161347c565b5090565b60006134ab6134a6846148a2565b614871565b9050828152602081018484840111156134c357600080fd5b6134ce848285614a0f565b509392505050565b60006134e96134e4846148d2565b614871565b90508281526020810184848401111561350157600080fd5b61350c848285614a0f565b509392505050565b60008135905061352381614a64565b92915050565b60008135905061353881614a7b565b92915050565b60008135905061354d81614a92565b92915050565b60008151905061356281614a92565b92915050565b600082601f83011261357957600080fd5b8135613589848260208601613498565b91505092915050565b600082601f8301126135a357600080fd5b81356135b38482602086016134d6565b91505092915050565b6000813590506135cb81614aa9565b92915050565b6000602082840312156135e357600080fd5b60006135f184828501613514565b91505092915050565b6000806040838503121561360d57600080fd5b600061361b85828601613514565b925050602061362c85828601613514565b9150509250929050565b60008060006060848603121561364b57600080fd5b600061365986828701613514565b935050602061366a86828701613514565b925050604061367b868287016135bc565b9150509250925092565b6000806000806080858703121561369b57600080fd5b60006136a987828801613514565b94505060206136ba87828801613514565b93505060406136cb878288016135bc565b925050606085013567ffffffffffffffff8111156136e857600080fd5b6136f487828801613568565b91505092959194509250565b6000806040838503121561371357600080fd5b600061372185828601613514565b925050602061373285828601613529565b9150509250929050565b6000806040838503121561374f57600080fd5b600061375d85828601613514565b925050602061376e858286016135bc565b9150509250929050565b60006020828403121561378a57600080fd5b60006137988482850161353e565b91505092915050565b6000602082840312156137b357600080fd5b60006137c184828501613553565b91505092915050565b6000602082840312156137dc57600080fd5b600082013567ffffffffffffffff8111156137f657600080fd5b61380284828501613592565b91505092915050565b60006020828403121561381d57600080fd5b600061382b848285016135bc565b91505092915050565b60006138408383614397565b60208301905092915050565b6138558161499b565b82525050565b61386481614989565b82525050565b600061387582614912565b61387f8185614940565b935061388a83614902565b8060005b838110156138bb5781516138a28882613834565b97506138ad83614933565b92505060018101905061388e565b5085935050505092915050565b6138d1816149ad565b82525050565b60006138e28261491d565b6138ec8185614951565b93506138fc818560208601614a1e565b61390581614a53565b840191505092915050565b600061391b8261491d565b6139258185614962565b9350613935818560208601614a1e565b80840191505092915050565b600061394c82614928565b613956818561496d565b9350613966818560208601614a1e565b61396f81614a53565b840191505092915050565b600061398582614928565b61398f818561497e565b935061399f818560208601614a1e565b80840191505092915050565b60006139b860228361496d565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a1e602b8361496d565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662042616e616e61730000000000000000000000000000000000000000006020830152604082019050919050565b6000613a8460328361496d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613aea60268361496d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b50601c8361496d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613b90601b8361496d565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613bd060208361496d565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613c1060248361496d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c7660198361496d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613cb6600a8361496d565b91507f6f6e6c792061646d696e000000000000000000000000000000000000000000006000830152602082019050919050565b6000613cf6601f8361496d565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613d36601e8361496d565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613d7660268361496d565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ddc602c8361496d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e4260218361496d565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ea860388361496d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613f0e602a8361496d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f7460228361496d565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fda60208361496d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061401a60218361496d565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614080602c8361496d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006140e660208361496d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061412660298361496d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061418c602f8361496d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141f260178361496d565b91507f6f6e6c792061646d696e732063616e20646f20746869730000000000000000006000830152602082019050919050565b600061423260218361496d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061429860228361496d565b91507f53616c65206d7573742062652061637469766520746f206d696e742042616e6160008301527f6e610000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142fe60318361496d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614364601d8361496d565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6143a081614a05565b82525050565b6143af81614a05565b82525050565b60006143c18284613910565b915081905092915050565b60006143d8828561397a565b91506143e4828461397a565b91508190509392505050565b6000602082019050614405600083018461385b565b92915050565b6000608082019050614420600083018761384c565b61442d602083018661385b565b61443a60408301856143a6565b818103606083015261444c81846138d7565b905095945050505050565b60006020820190508181036000830152614471818461386a565b905092915050565b600060208201905061448e60008301846138c8565b92915050565b600060208201905081810360008301526144ae8184613941565b905092915050565b600060208201905081810360008301526144cf816139ab565b9050919050565b600060208201905081810360008301526144ef81613a11565b9050919050565b6000602082019050818103600083015261450f81613a77565b9050919050565b6000602082019050818103600083015261452f81613add565b9050919050565b6000602082019050818103600083015261454f81613b43565b9050919050565b6000602082019050818103600083015261456f81613b83565b9050919050565b6000602082019050818103600083015261458f81613bc3565b9050919050565b600060208201905081810360008301526145af81613c03565b9050919050565b600060208201905081810360008301526145cf81613c69565b9050919050565b600060208201905081810360008301526145ef81613ca9565b9050919050565b6000602082019050818103600083015261460f81613ce9565b9050919050565b6000602082019050818103600083015261462f81613d29565b9050919050565b6000602082019050818103600083015261464f81613d69565b9050919050565b6000602082019050818103600083015261466f81613dcf565b9050919050565b6000602082019050818103600083015261468f81613e35565b9050919050565b600060208201905081810360008301526146af81613e9b565b9050919050565b600060208201905081810360008301526146cf81613f01565b9050919050565b600060208201905081810360008301526146ef81613f67565b9050919050565b6000602082019050818103600083015261470f81613fcd565b9050919050565b6000602082019050818103600083015261472f8161400d565b9050919050565b6000602082019050818103600083015261474f81614073565b9050919050565b6000602082019050818103600083015261476f816140d9565b9050919050565b6000602082019050818103600083015261478f81614119565b9050919050565b600060208201905081810360008301526147af8161417f565b9050919050565b600060208201905081810360008301526147cf816141e5565b9050919050565b600060208201905081810360008301526147ef81614225565b9050919050565b6000602082019050818103600083015261480f8161428b565b9050919050565b6000602082019050818103600083015261482f816142f1565b9050919050565b6000602082019050818103600083015261484f81614357565b9050919050565b600060208201905061486b60008301846143a6565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561489857614897614a51565b5b8060405250919050565b600067ffffffffffffffff8211156148bd576148bc614a51565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156148ed576148ec614a51565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614994826149e5565b9050919050565b60006149a6826149e5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a3c578082015181840152602081019050614a21565b83811115614a4b576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614a6d81614989565b8114614a7857600080fd5b50565b614a84816149ad565b8114614a8f57600080fd5b50565b614a9b816149b9565b8114614aa657600080fd5b50565b614ab281614a05565b8114614abd57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205075d43af50523b871ff8863cc89f3a7b8c63da55c54c14c68720b938b227b0064736f6c63430007060033

Deployed Bytecode Sourcemap

66920:4324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10302:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51587:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54373:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53903:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67074:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53381:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55263:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53143:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69084:168;;;;;;;;;;;;;:::i;:::-;;68003:210;;;;;;;;;;;;;:::i;:::-;;69789:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55639:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53669:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70498:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69938:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51343:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67792:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52962:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51060:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66311:148;;;;;;;;;;;;;:::i;:::-;;70687:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67238:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65647:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70383:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51756:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67373:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67143:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54666:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69296:487;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70073:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55861:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68255:699;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70221:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51931:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55032:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67036:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66614:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67455:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10302:150;10387:4;10411:20;:33;10432:11;10411:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10404:40;;10302:150;;;:::o;51587:100::-;51641:13;51674:5;51667:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51587:100;:::o;54373:221::-;54449:7;54477:16;54485:7;54477;:16::i;:::-;54469:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54562:15;:24;54578:7;54562:24;;;;;;;;;;;;;;;;;;;;;54555:31;;54373:221;;;:::o;53903:404::-;53984:13;54000:23;54015:7;54000:14;:23::i;:::-;53984:39;;54048:5;54042:11;;:2;:11;;;;54034:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54128:5;54112:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54137:44;54161:5;54168:12;:10;:12::i;:::-;54137:23;:44::i;:::-;54112:69;54104:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54278:21;54287:2;54291:7;54278:8;:21::i;:::-;53903:404;;;:::o;67074:49::-;;;;:::o;53381:211::-;53442:7;53563:21;:12;:19;:21::i;:::-;53556:28;;53381:211;:::o;55263:305::-;55424:41;55443:12;:10;:12::i;:::-;55457:7;55424:18;:41::i;:::-;55416:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55532:28;55542:4;55548:2;55552:7;55532:9;:28::i;:::-;55263:305;;;:::o;53143:162::-;53240:7;53267:30;53291:5;53267:13;:20;53281:5;53267:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53260:37;;53143:162;;;;:::o;69084:168::-;69151:5;;;;;;;;;;;69137:19;;:10;:19;;;:44;;;;69174:7;:5;:7::i;:::-;69160:21;;:10;:21;;;69137:44;69129:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;69236:12;;;;;;;;;;;69235:13;69220:12;;:28;;;;;;;;;;;;;;;;;;69084:168::o;68003:210::-;68065:5;;;;;;;;;;;68051:19;;:10;:19;;;:44;;;;68088:7;:5;:7::i;:::-;68074:21;;:10;:21;;;68051:44;68043:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;68134:12;68149:21;68134:36;;68181:10;:19;;:28;68201:7;68181:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68003:210;:::o;69789:145::-;65878:12;:10;:12::i;:::-;65867:23;;:7;:5;:7::i;:::-;:23;;;65859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69878:5:::1;;;;;;;;;;;69864:19;;:10;:19;;;69856:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;69922:8;69905:14;:25;;;;69789:145:::0;:::o;55639:151::-;55743:39;55760:4;55766:2;55770:7;55743:39;;;;;;;;;;;;:16;:39::i;:::-;55639:151;;;:::o;53669:172::-;53744:7;53765:15;53786:22;53802:5;53786:12;:15;;:22;;;;:::i;:::-;53764:44;;;53826:7;53819:14;;;53669:172;;;:::o;70498:183::-;70584:5;;;;;;;;;;;70570:19;;:10;:19;;;:44;;;;70607:7;:5;:7::i;:::-;70593:21;;:10;:21;;;70570:44;70562:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;70653:20;70665:7;70653:11;:20::i;:::-;70498:183;:::o;69938:131::-;65878:12;:10;:12::i;:::-;65867:23;;:7;:5;:7::i;:::-;:23;;;65859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70022:5:::1;;;;;;;;;;;70008:19;;:10;:19;;;70000:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;70061:4;70050:8;:15;;;;69938:131:::0;:::o;51343:177::-;51415:7;51442:70;51459:7;51442:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51435:77;;51343:177;;;:::o;67792:202::-;67856:5;;;;;;;;;;;67842:19;;:10;:19;;;:44;;;;67879:7;:5;:7::i;:::-;67865:21;;:10;:21;;;67842:44;67834:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;67921:14;67938:13;:11;:13::i;:::-;67921:30;;67958:24;67968:2;67972:9;67958;:24::i;:::-;67792:202;;:::o;52962:97::-;53010:13;53043:8;53036:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52962:97;:::o;51060:221::-;51132:7;51177:1;51160:19;;:5;:19;;;;51152:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51244:29;:13;:20;51258:5;51244:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51237:36;;51060:221;;;:::o;66311:148::-;65878:12;:10;:12::i;:::-;65867:23;;:7;:5;:7::i;:::-;:23;;;65859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66418:1:::1;66381:40;;66402:6;;;;;;;;;;;66381:40;;;;;;;;;;;;66449:1;66432:6;;:19;;;;;;;;;;;;;;;;;;66311:148::o:0;70687:540::-;70748:16;70778:18;70799:17;70809:6;70799:9;:17::i;:::-;70778:38;;70845:1;70831:10;:15;70827:393;;;70922:1;70908:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70901:23;;;;;70827:393;70957:23;70997:10;70983:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70957:51;;71023:13;71051:130;71075:10;71067:5;:18;71051:130;;;71131:34;71151:6;71159:5;71131:19;:34::i;:::-;71115:6;71122:5;71115:13;;;;;;;;;;;;;:50;;;;;71087:7;;;;;;;71051:130;;;71202:6;71195:13;;;;;70687:540;;;;:::o;67238:34::-;;;;:::o;65647:87::-;65693:7;65720:6;;;;;;;;;;;65713:13;;65647:87;:::o;70383:73::-;65878:12;:10;:12::i;:::-;65867:23;;:7;:5;:7::i;:::-;:23;;;65859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70449:3:::1;70441:5;;:11;;;;;;;;;;;;;;;;;;70383:73:::0;:::o;51756:104::-;51812:13;51845:7;51838:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51756:104;:::o;67373:37::-;;;;:::o;67143:30::-;;;;:::o;54666:295::-;54781:12;:10;:12::i;:::-;54769:24;;:8;:24;;;;54761:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54881:8;54836:18;:32;54855:12;:10;:12::i;:::-;54836:32;;;;;;;;;;;;;;;:42;54869:8;54836:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54934:8;54905:48;;54920:12;:10;:12::i;:::-;54905:48;;;54944:8;54905:48;;;;;;:::i;:::-;;;;;;;;54666:295;;:::o;69296:487::-;69396:5;;;;;;;;;;;69382:19;;:10;:19;;;:44;;;;69419:7;:5;:7::i;:::-;69405:21;;:10;:21;;;69382:44;69374:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;69465:11;69479:13;:11;:13::i;:::-;69465:27;;69528:1;69511:14;:18;:56;;;;;69551:16;;69533:14;:34;;69511:56;69503:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;69620:6;69615:95;69636:14;69632:1;:18;69615:95;;;69672:26;69682:3;69696:1;69687:6;:10;69672:9;:26::i;:::-;69652:3;;;;;;;69615:95;;;;69739:36;69760:14;69739:16;;:20;;:36;;;;:::i;:::-;69720:16;:55;;;;69296:487;;;:::o;70073:144::-;65878:12;:10;:12::i;:::-;65867:23;;:7;:5;:7::i;:::-;:23;;;65859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70162:5:::1;;;;;;;;;;;70148:19;;:10;:19;;;70140:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;70209:4;70190:16;:23;;;;70073:144:::0;:::o;55861:285::-;55993:41;56012:12;:10;:12::i;:::-;56026:7;55993:18;:41::i;:::-;55985:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56099:39;56113:4;56119:2;56123:7;56132:5;56099:13;:39::i;:::-;55861:285;;;;:::o;68255:699::-;68333:12;;;;;;;;;;;68325:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;68420:1;68403:14;:18;:60;;;;;68443:20;;68425:14;:38;;68403:60;68395:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;68557:8;;68520:33;68538:14;68520:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:45;;68512:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;68645:34;68664:14;68645;;:18;;:34;;;;:::i;:::-;68632:9;:47;;68624:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;68740:6;68736:209;68756:14;68752:1;:18;68736:209;;;68792:14;68809:13;:11;:13::i;:::-;68792:30;;68857:8;;68841:13;:11;:13::i;:::-;:24;68837:97;;;68886:32;68896:10;68908:9;68886;:32::i;:::-;68837:97;68736:209;68772:3;;;;;;;68736:209;;;;68255:699;:::o;70221:156::-;65878:12;:10;:12::i;:::-;65867:23;;:7;:5;:7::i;:::-;:23;;;65859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70316:5:::1;;;;;;;;;;;70302:19;;:10;:19;;;70294:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;70367:6;70344:20;:29;;;;70221:156:::0;:::o;51931:792::-;52004:13;52038:16;52046:7;52038;:16::i;:::-;52030:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52119:23;52145:10;:19;52156:7;52145:19;;;;;;;;;;;52119:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52175:18;52196:9;:7;:9::i;:::-;52175:30;;52303:1;52287:4;52281:18;:23;52277:72;;;52328:9;52321:16;;;;;;52277:72;52479:1;52459:9;52453:23;:27;52449:108;;;52528:4;52534:9;52511:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52497:48;;;;;;52449:108;52689:4;52695:18;:7;:16;:18::i;:::-;52672:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52658:57;;;;51931:792;;;;:::o;55032:164::-;55129:4;55153:18;:25;55172:5;55153:25;;;;;;;;;;;;;;;:35;55179:8;55153:35;;;;;;;;;;;;;;;;;;;;;;;;;55146:42;;55032:164;;;;:::o;67036:31::-;;;;;;;;;;;;;:::o;66614:244::-;65878:12;:10;:12::i;:::-;65867:23;;:7;:5;:7::i;:::-;:23;;;65859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66723:1:::1;66703:22;;:8;:22;;;;66695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66813:8;66784:38;;66805:6;;;;;;;;;;;66784:38;;;;;;;;;;;;66842:8;66833:6;;:17;;;;;;;;;;;;;;;;;;66614:244:::0;:::o;67455:20::-;;;;;;;;;;;;;:::o;57613:127::-;57678:4;57702:30;57724:7;57702:12;:21;;:30;;;;:::i;:::-;57695:37;;57613:127;;;:::o;734:106::-;787:15;822:10;815:17;;734:106;:::o;63631:192::-;63733:2;63706:15;:24;63722:7;63706:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63789:7;63785:2;63751:46;;63760:23;63775:7;63760:14;:23::i;:::-;63751:46;;;;;;;;;;;;63631:192;;:::o;44345:123::-;44414:7;44441:19;44449:3;:10;;44441:7;:19::i;:::-;44434:26;;44345:123;;;:::o;57907:355::-;58000:4;58025:16;58033:7;58025;:16::i;:::-;58017:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58101:13;58117:23;58132:7;58117:14;:23::i;:::-;58101:39;;58170:5;58159:16;;:7;:16;;;:51;;;;58203:7;58179:31;;:20;58191:7;58179:11;:20::i;:::-;:31;;;58159:51;:94;;;;58214:39;58238:5;58245:7;58214:23;:39::i;:::-;58159:94;58151:103;;;57907:355;;;;:::o;61043:599::-;61168:4;61141:31;;:23;61156:7;61141:14;:23::i;:::-;:31;;;61133:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61269:1;61255:16;;:2;:16;;;;61247:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61325:39;61346:4;61352:2;61356:7;61325:20;:39::i;:::-;61429:29;61446:1;61450:7;61429:8;:29::i;:::-;61471:35;61498:7;61471:13;:19;61485:4;61471:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61517:30;61539:7;61517:13;:17;61531:2;61517:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61560:29;61577:7;61586:2;61560:12;:16;;:29;;;;;:::i;:::-;;61626:7;61622:2;61607:27;;61616:4;61607:27;;;;;;;;;;;;61043:599;;;:::o;36136:137::-;36207:7;36242:22;36246:3;:10;;36258:5;36242:3;:22::i;:::-;36234:31;;36227:38;;36136:137;;;;:::o;44807:236::-;44887:7;44896;44917:11;44930:13;44947:22;44951:3;:10;;44963:5;44947:3;:22::i;:::-;44916:53;;;;44996:3;44988:12;;45026:5;45018:14;;44980:55;;;;;;44807:236;;;;;:::o;62243:100::-;62327:8;62316;:19;;;;;;;;;;;;:::i;:::-;;62243:100;:::o;46093:213::-;46200:7;46251:44;46256:3;:10;;46276:3;46268:12;;46282;46251:4;:44::i;:::-;46243:53;;46220:78;;46093:213;;;;;:::o;58605:110::-;58681:26;58691:2;58695:7;58681:26;;;;;;;;;;;;:9;:26::i;:::-;58605:110;;:::o;35678:114::-;35738:7;35765:19;35773:3;:10;;35765:7;:19::i;:::-;35758:26;;35678:114;;;:::o;14326:158::-;14384:7;14417:1;14412;:6;;14404:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14475:1;14471;:5;14464:12;;14326:158;;;;:::o;57028:272::-;57142:28;57152:4;57158:2;57162:7;57142:9;:28::i;:::-;57189:48;57212:4;57218:2;57222:7;57231:5;57189:22;:48::i;:::-;57181:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57028:272;;;;:::o;13864:179::-;13922:7;13942:9;13958:1;13954;:5;13942:17;;13983:1;13978;:6;;13970:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14034:1;14027:8;;;13864:179;;;;:::o;14743:220::-;14801:7;14830:1;14825;:6;14821:20;;;14840:1;14833:8;;;;14821:20;14852:9;14868:1;14864;:5;14852:17;;14897:1;14892;14888;:5;;;;;;:10;14880:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14954:1;14947:8;;;14743:220;;;;;:::o;46557:746::-;46613:13;46843:1;46834:5;:10;46830:53;;;46861:10;;;;;;;;;;;;;;;;;;;;;46830:53;46893:12;46908:5;46893:20;;46924:14;46949:78;46964:1;46956:4;:9;46949:78;;46982:8;;;;;;;47013:2;47005:10;;;;;;;;;46949:78;;;47037:19;47069:6;47059:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47037:39;;47087:13;47112:1;47103:6;:10;47087:26;;47131:5;47124:12;;47147:117;47162:1;47154:4;:9;47147:117;;47223:2;47216:4;:9;;;;;;47211:2;:14;47198:29;;47180:6;47187:7;;;;;;;47180:15;;;;;;;;;;;:47;;;;;;;;;;;47250:2;47242:10;;;;;;;;;47147:117;;;47288:6;47274:21;;;;;;46557:746;;;;:::o;44106:151::-;44190:4;44214:35;44224:3;:10;;44244:3;44236:12;;44214:9;:35::i;:::-;44207:42;;44106:151;;;;:::o;40924:110::-;40980:7;41007:3;:12;;:19;;;;41000:26;;40924:110;;;:::o;64436:93::-;;;;:::o;35223:137::-;35293:4;35317:35;35325:3;:10;;35345:5;35337:14;;35317:7;:35::i;:::-;35310:42;;35223:137;;;;:::o;34916:131::-;34983:4;35007:32;35012:3;:10;;35032:5;35024:14;;35007:4;:32::i;:::-;35000:39;;34916:131;;;;:::o;43529:185::-;43618:4;43642:64;43647:3;:10;;43667:3;43659:12;;43697:5;43681:23;;43673:32;;43642:4;:64::i;:::-;43635:71;;43529:185;;;;;:::o;31174:204::-;31241:7;31290:5;31269:3;:11;;:18;;;;:26;31261:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31352:3;:11;;31364:5;31352:18;;;;;;;;;;;;;;;;31345:25;;31174:204;;;;:::o;41389:279::-;41456:7;41465;41515:5;41493:3;:12;;:19;;;;:27;41485:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41572:22;41597:3;:12;;41610:5;41597:19;;;;;;;;;;;;;;;;;;41572:44;;41635:5;:10;;;41647:5;:12;;;41627:33;;;;;41389:279;;;;;:::o;42886:319::-;42980:7;43000:16;43019:3;:12;;:17;43032:3;43019:17;;;;;;;;;;;;43000:36;;43067:1;43055:8;:13;;43070:12;43047:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43137:3;:12;;43161:1;43150:8;:12;43137:26;;;;;;;;;;;;;;;;;;:33;;;43130:40;;;42886:319;;;;;:::o;58942:250::-;59038:18;59044:2;59048:7;59038:5;:18::i;:::-;59075:54;59106:1;59110:2;59114:7;59123:5;59075:22;:54::i;:::-;59067:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58942:250;;;:::o;30721:109::-;30777:7;30804:3;:11;;:18;;;;30797:25;;30721:109;;;:::o;62908:604::-;63029:4;63056:15;:2;:13;;;:15::i;:::-;63051:60;;63095:4;63088:11;;;;63051:60;63121:23;63147:252;63200:45;;;63260:12;:10;:12::i;:::-;63287:4;63306:7;63328:5;63163:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63147:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63121:278;;63410:13;63437:10;63426:32;;;;;;;;;;;;:::i;:::-;63410:48;;48057:10;63487:16;;63477:26;;;:6;:26;;;;63469:35;;;;62908:604;;;;;;;:::o;40704:125::-;40775:4;40820:1;40799:3;:12;;:17;40812:3;40799:17;;;;;;;;;;;;:22;;40792:29;;40704:125;;;;:::o;28876:1544::-;28942:4;29060:18;29081:3;:12;;:19;29094:5;29081:19;;;;;;;;;;;;29060:40;;29131:1;29117:10;:15;29113:1300;;29479:21;29516:1;29503:10;:14;29479:38;;29532:17;29573:1;29552:3;:11;;:18;;;;:22;29532:42;;29819:17;29839:3;:11;;29851:9;29839:22;;;;;;;;;;;;;;;;29819:42;;29985:9;29956:3;:11;;29968:13;29956:26;;;;;;;;;;;;;;;:38;;;;30104:1;30088:13;:17;30062:3;:12;;:23;30075:9;30062:23;;;;;;;;;;;:43;;;;30214:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30309:3;:12;;:19;30322:5;30309:19;;;;;;;;;;;30302:26;;;30352:4;30345:11;;;;;;;;29113:1300;30396:5;30389:12;;;28876:1544;;;;;:::o;28286:414::-;28349:4;28371:21;28381:3;28386:5;28371:9;:21::i;:::-;28366:327;;28409:3;:11;;28426:5;28409:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28592:3;:11;;:18;;;;28570:3;:12;;:19;28583:5;28570:19;;;;;;;;;;;:40;;;;28632:4;28625:11;;;;28366:327;28676:5;28669:12;;28286:414;;;;;:::o;38204:692::-;38280:4;38396:16;38415:3;:12;;:17;38428:3;38415:17;;;;;;;;;;;;38396:36;;38461:1;38449:8;:13;38445:444;;;38516:3;:12;;38534:38;;;;;;;;38551:3;38534:38;;;;38564:5;38534:38;;;38516:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38731:3;:12;;:19;;;;38711:3;:12;;:17;38724:3;38711:17;;;;;;;;;;;:39;;;;38772:4;38765:11;;;;;38445:444;38845:5;38809:3;:12;;38833:1;38822:8;:12;38809:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38872:5;38865:12;;;38204:692;;;;;;:::o;59528:404::-;59622:1;59608:16;;:2;:16;;;;59600:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59681:16;59689:7;59681;:16::i;:::-;59680:17;59672:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59743:45;59772:1;59776:2;59780:7;59743:20;:45::i;:::-;59801:30;59823:7;59801:13;:17;59815:2;59801:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59844:29;59861:7;59870:2;59844:12;:16;;:29;;;;;:::i;:::-;;59916:7;59912:2;59891:33;;59908:1;59891:33;;;;;;;;;;;;59528:404;;:::o;19305:422::-;19365:4;19573:12;19684:7;19672:20;19664:28;;19718:1;19711:4;:8;19704:15;;;19305:422;;;:::o;22223:195::-;22326:12;22358:52;22380:6;22388:4;22394:1;22397:12;22358:21;:52::i;:::-;22351:59;;22223:195;;;;;:::o;30506:129::-;30579:4;30626:1;30603:3;:12;;:19;30616:5;30603:19;;;;;;;;;;;;:24;;30596:31;;30506:129;;;;:::o;23275:530::-;23402:12;23460:5;23435:21;:30;;23427:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23527:18;23538:6;23527:10;:18::i;:::-;23519:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23653:12;23667:23;23694:6;:11;;23714:5;23722:4;23694:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23652:75;;;;23745:52;23763:7;23772:10;23784:12;23745:17;:52::i;:::-;23738:59;;;;23275:530;;;;;;:::o;25815:742::-;25930:12;25959:7;25955:595;;;25990:10;25983:17;;;;25955:595;26124:1;26104:10;:17;:21;26100:439;;;26367:10;26361:17;26428:15;26415:10;26411:2;26407:19;26400:44;26315:148;26510:12;26503:20;;;;;;;;;;;:::i;:::-;;;;;;;;25815: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:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8922:366::-;;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9182:34;9178:1;9173:3;9169:11;9162:55;9248:4;9243:2;9238:3;9234:12;9227:26;9279:2;9274:3;9270:12;9263:19;;9068:220;;;:::o;9294:375::-;;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9554:34;9550:1;9545:3;9541:11;9534:55;9620:13;9615:2;9610:3;9606:12;9599:35;9660:2;9655:3;9651:12;9644:19;;9440:229;;;:::o;9675:382::-;;9838:67;9902:2;9897:3;9838:67;:::i;:::-;9831:74;;9935:34;9931:1;9926:3;9922:11;9915:55;10001:20;9996:2;9991:3;9987:12;9980:42;10048:2;10043:3;10039:12;10032:19;;9821:236;;;:::o;10063:370::-;;10226:67;10290:2;10285:3;10226:67;:::i;:::-;10219:74;;10323:34;10319:1;10314:3;10310:11;10303:55;10389:8;10384:2;10379:3;10375:12;10368:30;10424:2;10419:3;10415:12;10408:19;;10209:224;;;:::o;10439:326::-;;10602:67;10666:2;10661:3;10602:67;:::i;:::-;10595:74;;10699:30;10695:1;10690:3;10686:11;10679:51;10756:2;10751:3;10747:12;10740:19;;10585:180;;;:::o;10771:325::-;;10934:67;10998:2;10993:3;10934:67;:::i;:::-;10927:74;;11031:29;11027:1;11022:3;11018:11;11011:50;11087:2;11082:3;11078:12;11071:19;;10917:179;;;:::o;11102:330::-;;11265:67;11329:2;11324:3;11265:67;:::i;:::-;11258:74;;11362:34;11358:1;11353:3;11349:11;11342:55;11423:2;11418:3;11414:12;11407:19;;11248:184;;;:::o;11438:368::-;;11601:67;11665:2;11660:3;11601:67;:::i;:::-;11594:74;;11698:34;11694:1;11689:3;11685:11;11678:55;11764:6;11759:2;11754:3;11750:12;11743:28;11797:2;11792:3;11788:12;11781:19;;11584:222;;;:::o;11812:323::-;;11975:67;12039:2;12034:3;11975:67;:::i;:::-;11968:74;;12072:27;12068:1;12063:3;12059:11;12052:48;12126:2;12121:3;12117:12;12110:19;;11958:177;;;:::o;12141:308::-;;12304:67;12368:2;12363:3;12304:67;:::i;:::-;12297:74;;12401:12;12397:1;12392:3;12388:11;12381:33;12440:2;12435:3;12431:12;12424:19;;12287:162;;;:::o;12455:329::-;;12618:67;12682:2;12677:3;12618:67;:::i;:::-;12611:74;;12715:33;12711:1;12706:3;12702:11;12695:54;12775:2;12770:3;12766:12;12759:19;;12601:183;;;:::o;12790:328::-;;12953:67;13017:2;13012:3;12953:67;:::i;:::-;12946:74;;13050:32;13046:1;13041:3;13037:11;13030:53;13109:2;13104:3;13100:12;13093:19;;12936:182;;;:::o;13124:370::-;;13287:67;13351:2;13346:3;13287:67;:::i;:::-;13280:74;;13384:34;13380:1;13375:3;13371:11;13364:55;13450:8;13445:2;13440:3;13436:12;13429:30;13485:2;13480:3;13476:12;13469:19;;13270:224;;;:::o;13500:376::-;;13663:67;13727:2;13722:3;13663:67;:::i;:::-;13656:74;;13760:34;13756:1;13751:3;13747:11;13740:55;13826:14;13821:2;13816:3;13812:12;13805:36;13867:2;13862:3;13858:12;13851:19;;13646:230;;;:::o;13882:365::-;;14045:67;14109:2;14104:3;14045:67;:::i;:::-;14038:74;;14142:34;14138:1;14133:3;14129:11;14122:55;14208:3;14203:2;14198:3;14194:12;14187:25;14238:2;14233:3;14229:12;14222:19;;14028:219;;;:::o;14253:388::-;;14416:67;14480:2;14475:3;14416:67;:::i;:::-;14409:74;;14513:34;14509:1;14504:3;14500:11;14493:55;14579:26;14574:2;14569:3;14565:12;14558:48;14632:2;14627:3;14623:12;14616:19;;14399:242;;;:::o;14647:374::-;;14810:67;14874:2;14869:3;14810:67;:::i;:::-;14803:74;;14907:34;14903:1;14898:3;14894:11;14887:55;14973:12;14968:2;14963:3;14959:12;14952:34;15012:2;15007:3;15003:12;14996:19;;14793:228;;;:::o;15027:366::-;;15190:67;15254:2;15249:3;15190:67;:::i;:::-;15183:74;;15287:34;15283:1;15278:3;15274:11;15267:55;15353:4;15348:2;15343:3;15339:12;15332:26;15384:2;15379:3;15375:12;15368:19;;15173:220;;;:::o;15399:330::-;;15562:67;15626:2;15621:3;15562:67;:::i;:::-;15555:74;;15659:34;15655:1;15650:3;15646:11;15639:55;15720:2;15715:3;15711:12;15704:19;;15545:184;;;:::o;15735:365::-;;15898:67;15962:2;15957:3;15898:67;:::i;:::-;15891:74;;15995:34;15991:1;15986:3;15982:11;15975:55;16061:3;16056:2;16051:3;16047:12;16040:25;16091:2;16086:3;16082:12;16075:19;;15881:219;;;:::o;16106:376::-;;16269:67;16333:2;16328:3;16269:67;:::i;:::-;16262:74;;16366:34;16362:1;16357:3;16353:11;16346:55;16432:14;16427:2;16422:3;16418:12;16411:36;16473:2;16468:3;16464:12;16457:19;;16252:230;;;:::o;16488:330::-;;16651:67;16715:2;16710:3;16651:67;:::i;:::-;16644:74;;16748:34;16744:1;16739:3;16735:11;16728:55;16809:2;16804:3;16800:12;16793:19;;16634:184;;;:::o;16824:373::-;;16987:67;17051:2;17046:3;16987:67;:::i;:::-;16980:74;;17084:34;17080:1;17075:3;17071:11;17064:55;17150:11;17145:2;17140:3;17136:12;17129:33;17188:2;17183:3;17179:12;17172:19;;16970:227;;;:::o;17203:379::-;;17366:67;17430:2;17425:3;17366:67;:::i;:::-;17359:74;;17463:34;17459:1;17454:3;17450:11;17443:55;17529:17;17524:2;17519:3;17515:12;17508:39;17573:2;17568:3;17564:12;17557:19;;17349:233;;;:::o;17588:321::-;;17751:67;17815:2;17810:3;17751:67;:::i;:::-;17744:74;;17848:25;17844:1;17839:3;17835:11;17828:46;17900:2;17895:3;17891:12;17884:19;;17734:175;;;:::o;17915:365::-;;18078:67;18142:2;18137:3;18078:67;:::i;:::-;18071:74;;18175:34;18171:1;18166:3;18162:11;18155:55;18241:3;18236:2;18231:3;18227:12;18220:25;18271:2;18266:3;18262:12;18255:19;;18061:219;;;:::o;18286:366::-;;18449:67;18513:2;18508:3;18449:67;:::i;:::-;18442:74;;18546:34;18542:1;18537:3;18533:11;18526:55;18612:4;18607:2;18602:3;18598:12;18591:26;18643:2;18638:3;18634:12;18627:19;;18432:220;;;:::o;18658:381::-;;18821:67;18885:2;18880:3;18821:67;:::i;:::-;18814:74;;18918:34;18914:1;18909:3;18905:11;18898:55;18984:19;18979:2;18974:3;18970:12;18963:41;19030:2;19025:3;19021:12;19014:19;;18804:235;;;:::o;19045:327::-;;19208:67;19272:2;19267:3;19208:67;:::i;:::-;19201:74;;19305:31;19301:1;19296:3;19292:11;19285:52;19363:2;19358:3;19354:12;19347:19;;19191:181;;;:::o;19378:108::-;19455:24;19473:5;19455:24;:::i;:::-;19450:3;19443:37;19433:53;;:::o;19492:118::-;19579:24;19597:5;19579:24;:::i;:::-;19574:3;19567:37;19557:53;;:::o;19616:271::-;;19768:93;19857:3;19848:6;19768:93;:::i;:::-;19761:100;;19878:3;19871:10;;19750:137;;;;:::o;19893:435::-;;20095:95;20186:3;20177:6;20095:95;:::i;:::-;20088:102;;20207:95;20298:3;20289:6;20207:95;:::i;:::-;20200:102;;20319:3;20312:10;;20077:251;;;;;:::o;20334:222::-;;20465:2;20454:9;20450:18;20442:26;;20478:71;20546:1;20535:9;20531:17;20522:6;20478:71;:::i;:::-;20432:124;;;;:::o;20562:672::-;;20811:3;20800:9;20796:19;20788:27;;20825:87;20909:1;20898:9;20894:17;20885:6;20825:87;:::i;:::-;20922:72;20990:2;20979:9;20975:18;20966:6;20922:72;:::i;:::-;21004;21072:2;21061:9;21057:18;21048:6;21004:72;:::i;:::-;21123:9;21117:4;21113:20;21108:2;21097:9;21093:18;21086:48;21151:76;21222:4;21213:6;21151:76;:::i;:::-;21143:84;;20778:456;;;;;;;:::o;21240:373::-;;21421:2;21410:9;21406:18;21398:26;;21470:9;21464:4;21460:20;21456:1;21445:9;21441:17;21434:47;21498:108;21601:4;21592:6;21498:108;:::i;:::-;21490:116;;21388:225;;;;:::o;21619:210::-;;21744:2;21733:9;21729:18;21721:26;;21757:65;21819:1;21808:9;21804:17;21795:6;21757:65;:::i;:::-;21711:118;;;;:::o;21835:313::-;;21986:2;21975:9;21971:18;21963:26;;22035:9;22029:4;22025:20;22021:1;22010:9;22006:17;21999:47;22063:78;22136:4;22127:6;22063:78;:::i;:::-;22055:86;;21953:195;;;;:::o;22154:419::-;;22358:2;22347:9;22343:18;22335:26;;22407:9;22401:4;22397:20;22393:1;22382:9;22378:17;22371:47;22435:131;22561:4;22435:131;:::i;:::-;22427:139;;22325:248;;;:::o;22579:419::-;;22783:2;22772:9;22768:18;22760:26;;22832:9;22826:4;22822:20;22818:1;22807:9;22803:17;22796:47;22860:131;22986:4;22860:131;:::i;:::-;22852:139;;22750:248;;;:::o;23004:419::-;;23208:2;23197:9;23193:18;23185:26;;23257:9;23251:4;23247:20;23243:1;23232:9;23228:17;23221:47;23285:131;23411:4;23285:131;:::i;:::-;23277:139;;23175:248;;;:::o;23429:419::-;;23633:2;23622:9;23618:18;23610:26;;23682:9;23676:4;23672:20;23668:1;23657:9;23653:17;23646:47;23710:131;23836:4;23710:131;:::i;:::-;23702:139;;23600:248;;;:::o;23854:419::-;;24058:2;24047:9;24043:18;24035:26;;24107:9;24101:4;24097:20;24093:1;24082:9;24078:17;24071:47;24135:131;24261:4;24135:131;:::i;:::-;24127:139;;24025:248;;;:::o;24279:419::-;;24483:2;24472:9;24468:18;24460:26;;24532:9;24526:4;24522:20;24518:1;24507:9;24503:17;24496:47;24560:131;24686:4;24560:131;:::i;:::-;24552:139;;24450:248;;;:::o;24704:419::-;;24908:2;24897:9;24893:18;24885:26;;24957:9;24951:4;24947:20;24943:1;24932:9;24928:17;24921:47;24985:131;25111:4;24985:131;:::i;:::-;24977:139;;24875:248;;;:::o;25129:419::-;;25333:2;25322:9;25318:18;25310:26;;25382:9;25376:4;25372:20;25368:1;25357:9;25353:17;25346:47;25410:131;25536:4;25410:131;:::i;:::-;25402:139;;25300:248;;;:::o;25554:419::-;;25758:2;25747:9;25743:18;25735:26;;25807:9;25801:4;25797:20;25793:1;25782:9;25778:17;25771:47;25835:131;25961:4;25835:131;:::i;:::-;25827:139;;25725:248;;;:::o;25979:419::-;;26183:2;26172:9;26168:18;26160:26;;26232:9;26226:4;26222:20;26218:1;26207:9;26203:17;26196:47;26260:131;26386:4;26260:131;:::i;:::-;26252:139;;26150:248;;;:::o;26404:419::-;;26608:2;26597:9;26593:18;26585:26;;26657:9;26651:4;26647:20;26643:1;26632:9;26628:17;26621:47;26685:131;26811:4;26685:131;:::i;:::-;26677:139;;26575:248;;;:::o;26829:419::-;;27033:2;27022:9;27018:18;27010:26;;27082:9;27076:4;27072:20;27068:1;27057:9;27053:17;27046:47;27110:131;27236:4;27110:131;:::i;:::-;27102:139;;27000:248;;;:::o;27254:419::-;;27458:2;27447:9;27443:18;27435:26;;27507:9;27501:4;27497:20;27493:1;27482:9;27478:17;27471:47;27535:131;27661:4;27535:131;:::i;:::-;27527:139;;27425:248;;;:::o;27679:419::-;;27883:2;27872:9;27868:18;27860:26;;27932:9;27926:4;27922:20;27918:1;27907:9;27903:17;27896:47;27960:131;28086:4;27960:131;:::i;:::-;27952:139;;27850:248;;;:::o;28104:419::-;;28308:2;28297:9;28293:18;28285:26;;28357:9;28351:4;28347:20;28343:1;28332:9;28328:17;28321:47;28385:131;28511:4;28385:131;:::i;:::-;28377:139;;28275:248;;;:::o;28529:419::-;;28733:2;28722:9;28718:18;28710:26;;28782:9;28776:4;28772:20;28768:1;28757:9;28753:17;28746:47;28810:131;28936:4;28810:131;:::i;:::-;28802:139;;28700:248;;;:::o;28954:419::-;;29158:2;29147:9;29143:18;29135:26;;29207:9;29201:4;29197:20;29193:1;29182:9;29178:17;29171:47;29235:131;29361:4;29235:131;:::i;:::-;29227:139;;29125:248;;;:::o;29379:419::-;;29583:2;29572:9;29568:18;29560:26;;29632:9;29626:4;29622:20;29618:1;29607:9;29603:17;29596:47;29660:131;29786:4;29660:131;:::i;:::-;29652:139;;29550:248;;;:::o;29804:419::-;;30008:2;29997:9;29993:18;29985:26;;30057:9;30051:4;30047:20;30043:1;30032:9;30028:17;30021:47;30085:131;30211:4;30085:131;:::i;:::-;30077:139;;29975:248;;;:::o;30229:419::-;;30433:2;30422:9;30418:18;30410:26;;30482:9;30476:4;30472:20;30468:1;30457:9;30453:17;30446:47;30510:131;30636:4;30510:131;:::i;:::-;30502:139;;30400:248;;;:::o;30654:419::-;;30858:2;30847:9;30843:18;30835:26;;30907:9;30901:4;30897:20;30893:1;30882:9;30878:17;30871:47;30935:131;31061:4;30935:131;:::i;:::-;30927:139;;30825:248;;;:::o;31079:419::-;;31283:2;31272:9;31268:18;31260:26;;31332:9;31326:4;31322:20;31318:1;31307:9;31303:17;31296:47;31360:131;31486:4;31360:131;:::i;:::-;31352:139;;31250:248;;;:::o;31504:419::-;;31708:2;31697:9;31693:18;31685:26;;31757:9;31751:4;31747:20;31743:1;31732:9;31728:17;31721:47;31785:131;31911:4;31785:131;:::i;:::-;31777:139;;31675:248;;;:::o;31929:419::-;;32133:2;32122:9;32118:18;32110:26;;32182:9;32176:4;32172:20;32168:1;32157:9;32153:17;32146:47;32210:131;32336:4;32210:131;:::i;:::-;32202:139;;32100:248;;;:::o;32354:419::-;;32558:2;32547:9;32543:18;32535:26;;32607:9;32601:4;32597:20;32593:1;32582:9;32578:17;32571:47;32635:131;32761:4;32635:131;:::i;:::-;32627:139;;32525:248;;;:::o;32779:419::-;;32983:2;32972:9;32968:18;32960:26;;33032:9;33026:4;33022:20;33018:1;33007:9;33003:17;32996:47;33060:131;33186:4;33060:131;:::i;:::-;33052:139;;32950:248;;;:::o;33204:419::-;;33408:2;33397:9;33393:18;33385:26;;33457:9;33451:4;33447:20;33443:1;33432:9;33428:17;33421:47;33485:131;33611:4;33485:131;:::i;:::-;33477:139;;33375:248;;;:::o;33629:419::-;;33833:2;33822:9;33818:18;33810:26;;33882:9;33876:4;33872:20;33868:1;33857:9;33853:17;33846:47;33910:131;34036:4;33910:131;:::i;:::-;33902:139;;33800:248;;;:::o;34054:419::-;;34258:2;34247:9;34243:18;34235:26;;34307:9;34301:4;34297:20;34293:1;34282:9;34278:17;34271:47;34335:131;34461:4;34335:131;:::i;:::-;34327:139;;34225:248;;;:::o;34479:222::-;;34610:2;34599:9;34595:18;34587:26;;34623:71;34691:1;34680:9;34676:17;34667:6;34623:71;:::i;:::-;34577:124;;;;:::o;34707:278::-;;34773:2;34767:9;34757:19;;34815:4;34807:6;34803:17;34922:6;34910:10;34907:22;34886:18;34874:10;34871:34;34868:62;34865:2;;;34933:13;;:::i;:::-;34865:2;34968:10;34964:2;34957:22;34747:238;;;;:::o;34991:326::-;;35142:18;35134:6;35131:30;35128:2;;;35164:13;;:::i;:::-;35128:2;35244:4;35240:9;35233:4;35225:6;35221:17;35217:33;35209:41;;35305:4;35299;35295:15;35287:23;;35057:260;;;:::o;35323:327::-;;35475:18;35467:6;35464:30;35461:2;;;35497:13;;:::i;:::-;35461:2;35577:4;35573:9;35566:4;35558:6;35554:17;35550:33;35542:41;;35638:4;35632;35628:15;35620:23;;35390:260;;;:::o;35656:132::-;;35746:3;35738:11;;35776:4;35771:3;35767:14;35759:22;;35728:60;;;:::o;35794:114::-;;35895:5;35889:12;35879:22;;35868:40;;;:::o;35914:98::-;;35999:5;35993:12;35983:22;;35972:40;;;:::o;36018:99::-;;36104:5;36098:12;36088:22;;36077:40;;;:::o;36123:113::-;;36225:4;36220:3;36216:14;36208:22;;36198:38;;;:::o;36242:184::-;;36375:6;36370:3;36363:19;36415:4;36410:3;36406:14;36391:29;;36353:73;;;;:::o;36432:168::-;;36549:6;36544:3;36537:19;36589:4;36584:3;36580:14;36565:29;;36527:73;;;;:::o;36606:147::-;;36744:3;36729:18;;36719:34;;;;:::o;36759:169::-;;36877:6;36872:3;36865:19;36917:4;36912:3;36908:14;36893:29;;36855:73;;;;:::o;36934:148::-;;37073:3;37058:18;;37048:34;;;;:::o;37088:96::-;;37154:24;37172:5;37154:24;:::i;:::-;37143:35;;37133:51;;;:::o;37190:104::-;;37264:24;37282:5;37264:24;:::i;:::-;37253:35;;37243:51;;;:::o;37300:90::-;;37377:5;37370:13;37363:21;37352:32;;37342:48;;;:::o;37396:149::-;;37472:66;37465:5;37461:78;37450:89;;37440:105;;;:::o;37551:126::-;;37628:42;37621:5;37617:54;37606:65;;37596:81;;;:::o;37683:77::-;;37749:5;37738:16;;37728:32;;;:::o;37766:154::-;37850:6;37845:3;37840;37827:30;37912:1;37903:6;37898:3;37894:16;37887:27;37817:103;;;:::o;37926:307::-;37994:1;38004:113;38018:6;38015:1;38012:13;38004:113;;;38103:1;38098:3;38094:11;38088:18;38084:1;38079:3;38075:11;38068:39;38040:2;38037:1;38033:10;38028:15;;38004:113;;;38135:6;38132:1;38129:13;38126:2;;;38215:1;38206:6;38201:3;38197:16;38190:27;38126:2;37975:258;;;;:::o;38239:48::-;38272:9;38293:102;;38385:2;38381:7;38376:2;38369:5;38365:14;38361:28;38351:38;;38341:54;;;:::o;38401:122::-;38474:24;38492:5;38474:24;:::i;:::-;38467:5;38464:35;38454:2;;38513:1;38510;38503:12;38454:2;38444:79;:::o;38529:116::-;38599:21;38614:5;38599:21;:::i;:::-;38592:5;38589:32;38579:2;;38635:1;38632;38625:12;38579:2;38569:76;:::o;38651:120::-;38723:23;38740:5;38723:23;:::i;:::-;38716:5;38713:34;38703:2;;38761:1;38758;38751:12;38703:2;38693:78;:::o;38777:122::-;38850:24;38868:5;38850:24;:::i;:::-;38843:5;38840:35;38830:2;;38889:1;38886;38879:12;38830:2;38820:79;:::o

Swarm Source

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