Token MiniVIP Pass
Overview ERC-721
Total Supply:
516 mVIP
Holders:
160 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MiniVIP
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // Imports /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @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); } /** * @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; } /** * @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); /** * @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); } /** * @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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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; if (lastIndex != toDeleteIndex) { 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] = valueIndex; // Replace lastvalue's index to valueIndex } // 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) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // 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); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // 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)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // 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)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @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); } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(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 from incorrect 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); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // End of Imports pragma solidity >=0.7.0 <0.9.0; contract MiniVIP is ERC721Enumerable, Ownable, ReentrancyGuard { using Strings for uint256; using SafeERC20 for IERC20; string public baseURI; string public baseExtension = ".json"; uint256 public maxSupply = 5000; uint256 public maxMintAmount = 10; uint256 public cost = 500000000; bool public paused = false; bool public onlyWhitelisted = false; mapping(address => uint256) public whitelistedAddresses; address public erc20Address; address public treasuryAddress; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, address _erc20Address, address _treasuryAddress ) ERC721(_name, _symbol) { erc20Address = _erc20Address; treasuryAddress= _treasuryAddress; setBaseURI(_initBaseURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mintPass(uint256 _mintAmount) public nonReentrant() { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(whitelistedAddresses[msg.sender] > 0, "No More Free Mints"); require(whitelistedAddresses[msg.sender] >= _mintAmount, "To many mints"); } IERC20(erc20Address).safeTransferFrom(msg.sender, treasuryAddress, cost * _mintAmount); } for (uint256 i = 1; i <= _mintAmount; i++) { if (whitelistedAddresses[msg.sender] > 0){ whitelistedAddresses[msg.sender]--; } _safeMint(msg.sender, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function seterc20Address(address _erc20Address) public onlyOwner() { erc20Address = _erc20Address; } function whitelistUsers(address[] calldata _users, uint256[] calldata _amount) public onlyOwner { for (uint256 i = 0; i < _users.length; i++){ whitelistedAddresses[_users[i]] = _amount[i]; } } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"_erc20Address","type":"address"},{"internalType":"address","name":"_treasuryAddress","type":"address"}],"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":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20Address","type":"address"}],"name":"seterc20Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000519291906200036d565b50611388600e55600a600f55631dcd65006010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000a857600080fd5b5060405162005b2338038062005b238339818101604052810190620000ce9190620004b2565b84848160009080519060200190620000e89291906200036d565b508060019080519060200190620001019291906200036d565b5050506200012462000118620001ca60201b60201c565b620001d260201b60201c565b6001600b8190555081601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001bf836200029860201b60201c565b5050505050620007ec565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a8620001ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ce6200034360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000327576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031e90620005be565b60405180910390fd5b80600c90805190602001906200033f9291906200036d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037b90620006ba565b90600052602060002090601f0160209004810192826200039f5760008555620003eb565b82601f10620003ba57805160ff1916838001178555620003eb565b82800160010185558215620003eb579182015b82811115620003ea578251825591602001919060010190620003cd565b5b509050620003fa9190620003fe565b5090565b5b8082111562000419576000816000905550600101620003ff565b5090565b6000620004346200042e8462000609565b620005e0565b90508281526020810184848401111562000453576200045262000789565b5b6200046084828562000684565b509392505050565b6000815190506200047981620007d2565b92915050565b600082601f83011262000497576200049662000784565b5b8151620004a98482602086016200041d565b91505092915050565b600080600080600060a08688031215620004d157620004d062000793565b5b600086015167ffffffffffffffff811115620004f257620004f16200078e565b5b62000500888289016200047f565b955050602086015167ffffffffffffffff8111156200052457620005236200078e565b5b62000532888289016200047f565b945050604086015167ffffffffffffffff8111156200055657620005556200078e565b5b62000564888289016200047f565b9350506060620005778882890162000468565b92505060806200058a8882890162000468565b9150509295509295909350565b6000620005a66020836200063f565b9150620005b382620007a9565b602082019050919050565b60006020820190508181036000830152620005d98162000597565b9050919050565b6000620005ec620005ff565b9050620005fa8282620006f0565b919050565b6000604051905090565b600067ffffffffffffffff82111562000627576200062662000755565b5b620006328262000798565b9050602081019050919050565b600082825260208201905092915050565b60006200065d8262000664565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620006a457808201518184015260208101905062000687565b83811115620006b4576000848401525b50505050565b60006002820490506001821680620006d357607f821691505b60208210811415620006ea57620006e962000726565b5b50919050565b620006fb8262000798565b810181811067ffffffffffffffff821117156200071d576200071c62000755565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620007dd8162000650565b8114620007e957600080fd5b50565b61532780620007fc6000396000f3fe60806040526004361061023b5760003560e01c80634f6ccce71161012e5780639c70b512116100ab578063c87b56dd1161006f578063c87b56dd14610862578063d5abeb011461089f578063da3ef23f146108ca578063e985e9c5146108f3578063f2fde38b146109305761023b565b80639c70b5121461078f578063a22cb465146107ba578063b88d4fde146107e3578063c5f956af1461080c578063c6682862146108375761023b565b806370a08231116100f257806370a08231146106bc578063715018a6146106f95780637f00c7a6146107105780638da5cb5b1461073957806395d89b41146107645761023b565b80634f6ccce7146105c357806355f804b3146106005780635c975abb146106295780636352211e146106545780636c0360eb146106915761023b565b806323b872dd116101bc5780633ccfd60b116101805780633ccfd60b1461050157806342842e0e1461050b578063438b63001461053457806344a0d68a146105715780634f28e6801461059a5761023b565b806323b872dd1461041e578063276184ae146104475780632790000d146104725780632f745c591461049b5780633c952764146104d85761023b565b8063095ea7b311610203578063095ea7b31461034b57806313faede61461037457806318160ddd1461039f5780631973ea06146103ca578063239c70ae146103f35761023b565b806301ffc9a71461024057806302329a291461027d57806306c933d8146102a657806306fdde03146102e3578063081812fc1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613a91565b610959565b604051610274919061427a565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613a37565b6109d3565b005b3480156102b257600080fd5b506102cd60048036038101906102c891906137f3565b610a6c565b6040516102da9190614637565b60405180910390f35b3480156102ef57600080fd5b506102f8610a84565b6040516103059190614295565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190613b34565b610b16565b60405161034291906141ba565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190613976565b610b9b565b005b34801561038057600080fd5b50610389610cb3565b6040516103969190614637565b60405180910390f35b3480156103ab57600080fd5b506103b4610cb9565b6040516103c19190614637565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec91906139b6565b610cc6565b005b3480156103ff57600080fd5b50610408610dee565b6040516104159190614637565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190613860565b610df4565b005b34801561045357600080fd5b5061045c610e54565b60405161046991906141ba565b60405180910390f35b34801561047e57600080fd5b50610499600480360381019061049491906137f3565b610e7a565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190613976565b610f3a565b6040516104cf9190614637565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190613a37565b610fdf565b005b610509611078565b005b34801561051757600080fd5b50610532600480360381019061052d9190613860565b611174565b005b34801561054057600080fd5b5061055b600480360381019061055691906137f3565b611194565b6040516105689190614258565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190613b34565b611242565b005b3480156105a657600080fd5b506105c160048036038101906105bc9190613b34565b6112c8565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190613b34565b611705565b6040516105f79190614637565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190613aeb565b611776565b005b34801561063557600080fd5b5061063e61180c565b60405161064b919061427a565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190613b34565b61181f565b60405161068891906141ba565b60405180910390f35b34801561069d57600080fd5b506106a66118d1565b6040516106b39190614295565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de91906137f3565b61195f565b6040516106f09190614637565b60405180910390f35b34801561070557600080fd5b5061070e611a17565b005b34801561071c57600080fd5b5061073760048036038101906107329190613b34565b611a9f565b005b34801561074557600080fd5b5061074e611b25565b60405161075b91906141ba565b60405180910390f35b34801561077057600080fd5b50610779611b4f565b6040516107869190614295565b60405180910390f35b34801561079b57600080fd5b506107a4611be1565b6040516107b1919061427a565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc9190613936565b611bf4565b005b3480156107ef57600080fd5b5061080a600480360381019061080591906138b3565b611c0a565b005b34801561081857600080fd5b50610821611c6c565b60405161082e91906141ba565b60405180910390f35b34801561084357600080fd5b5061084c611c92565b6040516108599190614295565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190613b34565b611d20565b6040516108969190614295565b60405180910390f35b3480156108ab57600080fd5b506108b4611dca565b6040516108c19190614637565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613aeb565b611dd0565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190613820565b611e66565b604051610927919061427a565b60405180910390f35b34801561093c57600080fd5b50610957600480360381019061095291906137f3565b611efa565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109cc57506109cb82611ff2565b5b9050919050565b6109db6120d4565b73ffffffffffffffffffffffffffffffffffffffff166109f9611b25565b73ffffffffffffffffffffffffffffffffffffffff1614610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a46906144b7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915090505481565b606060008054610a939061496a565b80601f0160208091040260200160405190810160405280929190818152602001828054610abf9061496a565b8015610b0c5780601f10610ae157610100808354040283529160200191610b0c565b820191906000526020600020905b815481529060010190602001808311610aef57829003601f168201915b5050505050905090565b6000610b21826120dc565b610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790614497565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba68261181f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90614517565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c366120d4565b73ffffffffffffffffffffffffffffffffffffffff161480610c655750610c6481610c5f6120d4565b611e66565b5b610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906143d7565b60405180910390fd5b610cae8383612148565b505050565b60105481565b6000600880549050905090565b610cce6120d4565b73ffffffffffffffffffffffffffffffffffffffff16610cec611b25565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906144b7565b60405180910390fd5b60005b84849050811015610de757828282818110610d6357610d62614b03565b5b9050602002013560126000878785818110610d8157610d80614b03565b5b9050602002016020810190610d9691906137f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610ddf906149cd565b915050610d45565b5050505050565b600f5481565b610e05610dff6120d4565b82612201565b610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90614537565b60405180910390fd5b610e4f8383836122df565b505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e826120d4565b73ffffffffffffffffffffffffffffffffffffffff16610ea0611b25565b73ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed906144b7565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f458361195f565b8210610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d906142b7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610fe76120d4565b73ffffffffffffffffffffffffffffffffffffffff16611005611b25565b73ffffffffffffffffffffffffffffffffffffffff161461105b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611052906144b7565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6110806120d4565b73ffffffffffffffffffffffffffffffffffffffff1661109e611b25565b73ffffffffffffffffffffffffffffffffffffffff16146110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb906144b7565b60405180910390fd5b60006110fe611b25565b73ffffffffffffffffffffffffffffffffffffffff1647604051611121906141a5565b60006040518083038185875af1925050503d806000811461115e576040519150601f19603f3d011682016040523d82523d6000602084013e611163565b606091505b505090508061117157600080fd5b50565b61118f83838360405180602001604052806000815250611c0a565b505050565b606060006111a18361195f565b905060008167ffffffffffffffff8111156111bf576111be614b32565b5b6040519080825280602002602001820160405280156111ed5781602001602082028036833780820191505090505b50905060005b82811015611237576112058582610f3a565b82828151811061121857611217614b03565b5b602002602001018181525050808061122f906149cd565b9150506111f3565b508092505050919050565b61124a6120d4565b73ffffffffffffffffffffffffffffffffffffffff16611268611b25565b73ffffffffffffffffffffffffffffffffffffffff16146112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b5906144b7565b60405180910390fd5b8060108190555050565b6002600b54141561130e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611305906145f7565b60405180910390fd5b6002600b81905550601160009054906101000a900460ff1615611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d906144d7565b60405180910390fd5b6000611370610cb9565b9050600082116113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90614617565b60405180910390fd5b600f548211156113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190614457565b60405180910390fd5b600e5482826114099190614775565b111561144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190614437565b60405180910390fd5b611452611b25565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116245760011515601160019054906101000a900460ff16151514156115a5576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151990614577565b60405180910390fd5b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906145d7565b60405180910390fd5b5b61162333601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846010546115da91906147fc565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612546909392919063ffffffff16565b5b6000600190505b8281116116f8576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156116d057601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906116ca90614940565b91905055505b6116e53382846116e09190614775565b6125cf565b80806116f0906149cd565b91505061162b565b50506001600b8190555050565b600061170f610cb9565b8210611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790614597565b60405180910390fd5b6008828154811061176457611763614b03565b5b90600052602060002001549050919050565b61177e6120d4565b73ffffffffffffffffffffffffffffffffffffffff1661179c611b25565b73ffffffffffffffffffffffffffffffffffffffff16146117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e9906144b7565b60405180910390fd5b80600c9080519060200190611808929190613546565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90614417565b60405180910390fd5b80915050919050565b600c80546118de9061496a565b80601f016020809104026020016040519081016040528092919081815260200182805461190a9061496a565b80156119575780601f1061192c57610100808354040283529160200191611957565b820191906000526020600020905b81548152906001019060200180831161193a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906143f7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a1f6120d4565b73ffffffffffffffffffffffffffffffffffffffff16611a3d611b25565b73ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a906144b7565b60405180910390fd5b611a9d60006125ed565b565b611aa76120d4565b73ffffffffffffffffffffffffffffffffffffffff16611ac5611b25565b73ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b12906144b7565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b5e9061496a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8a9061496a565b8015611bd75780601f10611bac57610100808354040283529160200191611bd7565b820191906000526020600020905b815481529060010190602001808311611bba57829003601f168201915b5050505050905090565b601160019054906101000a900460ff1681565b611c06611bff6120d4565b83836126b3565b5050565b611c1b611c156120d4565b83612201565b611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190614537565b60405180910390fd5b611c6684848484612820565b50505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d8054611c9f9061496a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ccb9061496a565b8015611d185780601f10611ced57610100808354040283529160200191611d18565b820191906000526020600020905b815481529060010190602001808311611cfb57829003601f168201915b505050505081565b6060611d2b826120dc565b611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d61906144f7565b60405180910390fd5b6000611d7461287c565b90506000815111611d945760405180602001604052806000815250611dc2565b80611d9e8461290e565b600d604051602001611db293929190614174565b6040516020818303038152906040525b915050919050565b600e5481565b611dd86120d4565b73ffffffffffffffffffffffffffffffffffffffff16611df6611b25565b73ffffffffffffffffffffffffffffffffffffffff1614611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e43906144b7565b60405180910390fd5b80600d9080519060200190611e62929190613546565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f026120d4565b73ffffffffffffffffffffffffffffffffffffffff16611f20611b25565b73ffffffffffffffffffffffffffffffffffffffff1614611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d906144b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd906142f7565b60405180910390fd5b611fef816125ed565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120cd57506120cc82612a6f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121bb8361181f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061220c826120dc565b61224b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612242906143b7565b60405180910390fd5b60006122568361181f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122c557508373ffffffffffffffffffffffffffffffffffffffff166122ad84610b16565b73ffffffffffffffffffffffffffffffffffffffff16145b806122d657506122d58185611e66565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122ff8261181f565b73ffffffffffffffffffffffffffffffffffffffff1614612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90614317565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc90614357565b60405180910390fd5b6123d0838383612ad9565b6123db600082612148565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242b9190614856565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124829190614775565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612541838383612bed565b505050565b6125c9846323b872dd60e01b858585604051602401612567939291906141d5565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612bf2565b50505050565b6125e9828260405180602001604052806000815250612cb9565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271990614377565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612813919061427a565b60405180910390a3505050565b61282b8484846122df565b61283784848484612d14565b612876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286d906142d7565b60405180910390fd5b50505050565b6060600c805461288b9061496a565b80601f01602080910402602001604051908101604052809291908181526020018280546128b79061496a565b80156129045780601f106128d957610100808354040283529160200191612904565b820191906000526020600020905b8154815290600101906020018083116128e757829003601f168201915b5050505050905090565b60606000821415612956576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a6a565b600082905060005b60008214612988578080612971906149cd565b915050600a8261298191906147cb565b915061295e565b60008167ffffffffffffffff8111156129a4576129a3614b32565b5b6040519080825280601f01601f1916602001820160405280156129d65781602001600182028036833780820191505090505b5090505b60008514612a63576001826129ef9190614856565b9150600a856129fe9190614a16565b6030612a0a9190614775565b60f81b818381518110612a2057612a1f614b03565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a5c91906147cb565b94506129da565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ae4838383612eab565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b2757612b2281612eb0565b612b66565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b6557612b648382612ef9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba957612ba481613066565b612be8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612be757612be68282613137565b5b5b505050565b505050565b6000612c54826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166131b69092919063ffffffff16565b9050600081511115612cb45780806020019051810190612c749190613a64565b612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa906145b7565b60405180910390fd5b5b505050565b612cc383836131ce565b612cd06000848484612d14565b612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d06906142d7565b60405180910390fd5b505050565b6000612d358473ffffffffffffffffffffffffffffffffffffffff166133a8565b15612e9e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d5e6120d4565b8786866040518563ffffffff1660e01b8152600401612d80949392919061420c565b602060405180830381600087803b158015612d9a57600080fd5b505af1925050508015612dcb57506040513d601f19601f82011682018060405250810190612dc89190613abe565b60015b612e4e573d8060008114612dfb576040519150601f19603f3d011682016040523d82523d6000602084013e612e00565b606091505b50600081511415612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d906142d7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ea3565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f068461195f565b612f109190614856565b9050600060076000848152602001908152602001600020549050818114612ff5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061307a9190614856565b90506000600960008481526020019081526020016000205490506000600883815481106130aa576130a9614b03565b5b9060005260206000200154905080600883815481106130cc576130cb614b03565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061311b5761311a614ad4565b5b6001900381819060005260206000200160009055905550505050565b60006131428361195f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60606131c584846000856133cb565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561323e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323590614477565b60405180910390fd5b613247816120dc565b15613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e90614337565b60405180910390fd5b61329360008383612ad9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132e39190614775565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133a460008383612bed565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606082471015613410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340790614397565b60405180910390fd5b613419856133a8565b613458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344f90614557565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613481919061415d565b60006040518083038185875af1925050503d80600081146134be576040519150601f19603f3d011682016040523d82523d6000602084013e6134c3565b606091505b50915091506134d38282866134df565b92505050949350505050565b606083156134ef5782905061353f565b6000835111156135025782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135369190614295565b60405180910390fd5b9392505050565b8280546135529061496a565b90600052602060002090601f01602090048101928261357457600085556135bb565b82601f1061358d57805160ff19168380011785556135bb565b828001600101855582156135bb579182015b828111156135ba57825182559160200191906001019061359f565b5b5090506135c891906135cc565b5090565b5b808211156135e55760008160009055506001016135cd565b5090565b60006135fc6135f784614677565b614652565b90508281526020810184848401111561361857613617614b70565b5b6136238482856148fe565b509392505050565b600061363e613639846146a8565b614652565b90508281526020810184848401111561365a57613659614b70565b5b6136658482856148fe565b509392505050565b60008135905061367c81615295565b92915050565b60008083601f84011261369857613697614b66565b5b8235905067ffffffffffffffff8111156136b5576136b4614b61565b5b6020830191508360208202830111156136d1576136d0614b6b565b5b9250929050565b60008083601f8401126136ee576136ed614b66565b5b8235905067ffffffffffffffff81111561370b5761370a614b61565b5b60208301915083602082028301111561372757613726614b6b565b5b9250929050565b60008135905061373d816152ac565b92915050565b600081519050613752816152ac565b92915050565b600081359050613767816152c3565b92915050565b60008151905061377c816152c3565b92915050565b600082601f83011261379757613796614b66565b5b81356137a78482602086016135e9565b91505092915050565b600082601f8301126137c5576137c4614b66565b5b81356137d584826020860161362b565b91505092915050565b6000813590506137ed816152da565b92915050565b60006020828403121561380957613808614b7a565b5b60006138178482850161366d565b91505092915050565b6000806040838503121561383757613836614b7a565b5b60006138458582860161366d565b92505060206138568582860161366d565b9150509250929050565b60008060006060848603121561387957613878614b7a565b5b60006138878682870161366d565b93505060206138988682870161366d565b92505060406138a9868287016137de565b9150509250925092565b600080600080608085870312156138cd576138cc614b7a565b5b60006138db8782880161366d565b94505060206138ec8782880161366d565b93505060406138fd878288016137de565b925050606085013567ffffffffffffffff81111561391e5761391d614b75565b5b61392a87828801613782565b91505092959194509250565b6000806040838503121561394d5761394c614b7a565b5b600061395b8582860161366d565b925050602061396c8582860161372e565b9150509250929050565b6000806040838503121561398d5761398c614b7a565b5b600061399b8582860161366d565b92505060206139ac858286016137de565b9150509250929050565b600080600080604085870312156139d0576139cf614b7a565b5b600085013567ffffffffffffffff8111156139ee576139ed614b75565b5b6139fa87828801613682565b9450945050602085013567ffffffffffffffff811115613a1d57613a1c614b75565b5b613a29878288016136d8565b925092505092959194509250565b600060208284031215613a4d57613a4c614b7a565b5b6000613a5b8482850161372e565b91505092915050565b600060208284031215613a7a57613a79614b7a565b5b6000613a8884828501613743565b91505092915050565b600060208284031215613aa757613aa6614b7a565b5b6000613ab584828501613758565b91505092915050565b600060208284031215613ad457613ad3614b7a565b5b6000613ae28482850161376d565b91505092915050565b600060208284031215613b0157613b00614b7a565b5b600082013567ffffffffffffffff811115613b1f57613b1e614b75565b5b613b2b848285016137b0565b91505092915050565b600060208284031215613b4a57613b49614b7a565b5b6000613b58848285016137de565b91505092915050565b6000613b6d838361413f565b60208301905092915050565b613b828161488a565b82525050565b6000613b93826146fe565b613b9d818561472c565b9350613ba8836146d9565b8060005b83811015613bd9578151613bc08882613b61565b9750613bcb8361471f565b925050600181019050613bac565b5085935050505092915050565b613bef8161489c565b82525050565b6000613c0082614709565b613c0a818561473d565b9350613c1a81856020860161490d565b613c2381614b7f565b840191505092915050565b6000613c3982614709565b613c43818561474e565b9350613c5381856020860161490d565b80840191505092915050565b6000613c6a82614714565b613c748185614759565b9350613c8481856020860161490d565b613c8d81614b7f565b840191505092915050565b6000613ca382614714565b613cad818561476a565b9350613cbd81856020860161490d565b80840191505092915050565b60008154613cd68161496a565b613ce0818661476a565b94506001821660008114613cfb5760018114613d0c57613d3f565b60ff19831686528186019350613d3f565b613d15856146e9565b60005b83811015613d3757815481890152600182019150602081019050613d18565b838801955050505b50505092915050565b6000613d55602b83614759565b9150613d6082614b90565b604082019050919050565b6000613d78603283614759565b9150613d8382614bdf565b604082019050919050565b6000613d9b602683614759565b9150613da682614c2e565b604082019050919050565b6000613dbe602583614759565b9150613dc982614c7d565b604082019050919050565b6000613de1601c83614759565b9150613dec82614ccc565b602082019050919050565b6000613e04602483614759565b9150613e0f82614cf5565b604082019050919050565b6000613e27601983614759565b9150613e3282614d44565b602082019050919050565b6000613e4a602683614759565b9150613e5582614d6d565b604082019050919050565b6000613e6d602c83614759565b9150613e7882614dbc565b604082019050919050565b6000613e90603883614759565b9150613e9b82614e0b565b604082019050919050565b6000613eb3602a83614759565b9150613ebe82614e5a565b604082019050919050565b6000613ed6602983614759565b9150613ee182614ea9565b604082019050919050565b6000613ef9601683614759565b9150613f0482614ef8565b602082019050919050565b6000613f1c602483614759565b9150613f2782614f21565b604082019050919050565b6000613f3f602083614759565b9150613f4a82614f70565b602082019050919050565b6000613f62602c83614759565b9150613f6d82614f99565b604082019050919050565b6000613f85602083614759565b9150613f9082614fe8565b602082019050919050565b6000613fa8601683614759565b9150613fb382615011565b602082019050919050565b6000613fcb602f83614759565b9150613fd68261503a565b604082019050919050565b6000613fee602183614759565b9150613ff982615089565b604082019050919050565b600061401160008361474e565b915061401c826150d8565b600082019050919050565b6000614034603183614759565b915061403f826150db565b604082019050919050565b6000614057601d83614759565b91506140628261512a565b602082019050919050565b600061407a601283614759565b915061408582615153565b602082019050919050565b600061409d602c83614759565b91506140a88261517c565b604082019050919050565b60006140c0602a83614759565b91506140cb826151cb565b604082019050919050565b60006140e3600d83614759565b91506140ee8261521a565b602082019050919050565b6000614106601f83614759565b915061411182615243565b602082019050919050565b6000614129601b83614759565b91506141348261526c565b602082019050919050565b614148816148f4565b82525050565b614157816148f4565b82525050565b60006141698284613c2e565b915081905092915050565b60006141808286613c98565b915061418c8285613c98565b91506141988284613cc9565b9150819050949350505050565b60006141b082614004565b9150819050919050565b60006020820190506141cf6000830184613b79565b92915050565b60006060820190506141ea6000830186613b79565b6141f76020830185613b79565b614204604083018461414e565b949350505050565b60006080820190506142216000830187613b79565b61422e6020830186613b79565b61423b604083018561414e565b818103606083015261424d8184613bf5565b905095945050505050565b600060208201905081810360008301526142728184613b88565b905092915050565b600060208201905061428f6000830184613be6565b92915050565b600060208201905081810360008301526142af8184613c5f565b905092915050565b600060208201905081810360008301526142d081613d48565b9050919050565b600060208201905081810360008301526142f081613d6b565b9050919050565b6000602082019050818103600083015261431081613d8e565b9050919050565b6000602082019050818103600083015261433081613db1565b9050919050565b6000602082019050818103600083015261435081613dd4565b9050919050565b6000602082019050818103600083015261437081613df7565b9050919050565b6000602082019050818103600083015261439081613e1a565b9050919050565b600060208201905081810360008301526143b081613e3d565b9050919050565b600060208201905081810360008301526143d081613e60565b9050919050565b600060208201905081810360008301526143f081613e83565b9050919050565b6000602082019050818103600083015261441081613ea6565b9050919050565b6000602082019050818103600083015261443081613ec9565b9050919050565b6000602082019050818103600083015261445081613eec565b9050919050565b6000602082019050818103600083015261447081613f0f565b9050919050565b6000602082019050818103600083015261449081613f32565b9050919050565b600060208201905081810360008301526144b081613f55565b9050919050565b600060208201905081810360008301526144d081613f78565b9050919050565b600060208201905081810360008301526144f081613f9b565b9050919050565b6000602082019050818103600083015261451081613fbe565b9050919050565b6000602082019050818103600083015261453081613fe1565b9050919050565b6000602082019050818103600083015261455081614027565b9050919050565b600060208201905081810360008301526145708161404a565b9050919050565b600060208201905081810360008301526145908161406d565b9050919050565b600060208201905081810360008301526145b081614090565b9050919050565b600060208201905081810360008301526145d0816140b3565b9050919050565b600060208201905081810360008301526145f0816140d6565b9050919050565b60006020820190508181036000830152614610816140f9565b9050919050565b600060208201905081810360008301526146308161411c565b9050919050565b600060208201905061464c600083018461414e565b92915050565b600061465c61466d565b9050614668828261499c565b919050565b6000604051905090565b600067ffffffffffffffff82111561469257614691614b32565b5b61469b82614b7f565b9050602081019050919050565b600067ffffffffffffffff8211156146c3576146c2614b32565b5b6146cc82614b7f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614780826148f4565b915061478b836148f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147c0576147bf614a47565b5b828201905092915050565b60006147d6826148f4565b91506147e1836148f4565b9250826147f1576147f0614a76565b5b828204905092915050565b6000614807826148f4565b9150614812836148f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561484b5761484a614a47565b5b828202905092915050565b6000614861826148f4565b915061486c836148f4565b92508282101561487f5761487e614a47565b5b828203905092915050565b6000614895826148d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561492b578082015181840152602081019050614910565b8381111561493a576000848401525b50505050565b600061494b826148f4565b9150600082141561495f5761495e614a47565b5b600182039050919050565b6000600282049050600182168061498257607f821691505b6020821081141561499657614995614aa5565b5b50919050565b6149a582614b7f565b810181811067ffffffffffffffff821117156149c4576149c3614b32565b5b80604052505050565b60006149d8826148f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a0b57614a0a614a47565b5b600182019050919050565b6000614a21826148f4565b9150614a2c836148f4565b925082614a3c57614a3b614a76565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f4e6f204d6f72652046726565204d696e74730000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f546f206d616e79206d696e747300000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61529e8161488a565b81146152a957600080fd5b50565b6152b58161489c565b81146152c057600080fd5b50565b6152cc816148a8565b81146152d757600080fd5b50565b6152e3816148f4565b81146152ee57600080fd5b5056fea2646970667358221220957730988517c4d28e0937b15fb391590308191bcca70129faca928f31f6942164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b7500000000000000000000000041f38ff9faf1f28c6db65f2c90ace2068725acd0000000000000000000000000000000000000000000000000000000000000000c4d696e695649502050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046d564950000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52476a704e584376426642676369744845784b57387444506850566a434736564d50476368636139567a4a632f00000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b7500000000000000000000000041f38ff9faf1f28c6db65f2c90ace2068725acd0000000000000000000000000000000000000000000000000000000000000000c4d696e695649502050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046d564950000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52476a704e584376426642676369744845784b57387444506850566a434736564d50476368636139567a4a632f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): MiniVIP Pass
Arg [1] : _symbol (string): mVIP
Arg [2] : _initBaseURI (string): ipfs://QmRGjpNXCvBfBgcitHExKW8tDPhPVjCG6VMPGchca9VzJc/
Arg [3] : _erc20Address (address): 0x04068da6c83afcfa0e13ba15a6696662335d5b75
Arg [4] : _treasuryAddress (address): 0x41f38ff9faf1f28c6db65f2c90ace2068725acd0
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 00000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75
Arg [4] : 00000000000000000000000041f38ff9faf1f28c6db65f2c90ace2068725acd0
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 4d696e6956495020506173730000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 6d56495000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d52476a704e584376426642676369744845784b57387444
Arg [11] : 506850566a434736564d50476368636139567a4a632f00000000000000000000
Deployed ByteCode Sourcemap
75323:3819:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69118:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78460:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75702:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57694:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57217:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75595:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69758:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78764:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75557:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58444:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75762:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78642:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69426:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78541:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78985:154;;;:::i;:::-;;58854:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77231:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78016:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76274:947;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69948:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78225:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75631:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55828:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75453:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55558:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2397:103;;;;;;;;;;;;;:::i;:::-;;78102:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1746:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75662:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57987:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59110:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75794:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75479:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77586:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75521:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78330:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58213:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2655:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69118:224;69220:4;69259:35;69244:50;;;:11;:50;;;;:90;;;;69298:36;69322:11;69298:23;:36::i;:::-;69244:90;69237:97;;69118:224;;;:::o;78460:73::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78521:6:::1;78512;;:15;;;;;;;;;;;;;;;;;;78460:73:::0;:::o;75702:55::-;;;;;;;;;;;;;;;;;:::o;56134:100::-;56188:13;56221:5;56214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56134:100;:::o;57694:221::-;57770:7;57798:16;57806:7;57798;:16::i;:::-;57790:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57883:15;:24;57899:7;57883:24;;;;;;;;;;;;;;;;;;;;;57876:31;;57694:221;;;:::o;57217:411::-;57298:13;57314:23;57329:7;57314:14;:23::i;:::-;57298:39;;57362:5;57356:11;;:2;:11;;;;57348:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;57456:5;57440:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;57465:37;57482:5;57489:12;:10;:12::i;:::-;57465:16;:37::i;:::-;57440:62;57418:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;57599:21;57608:2;57612:7;57599:8;:21::i;:::-;57287:341;57217:411;;:::o;75595:31::-;;;;:::o;69758:113::-;69819:7;69846:10;:17;;;;69839:24;;69758:113;:::o;78764:214::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78872:9:::1;78867:106;78891:6;;:13;;78887:1;:17;78867:106;;;78955:7;;78963:1;78955:10;;;;;;;:::i;:::-;;;;;;;;78921:20;:31;78942:6;;78949:1;78942:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;78921:31;;;;;;;;;;;;;;;:44;;;;78906:3;;;;;:::i;:::-;;;;78867:106;;;;78764:214:::0;;;;:::o;75557:33::-;;;;:::o;58444:339::-;58639:41;58658:12;:10;:12::i;:::-;58672:7;58639:18;:41::i;:::-;58631:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;58747:28;58757:4;58763:2;58767:7;58747:9;:28::i;:::-;58444:339;;;:::o;75762:27::-;;;;;;;;;;;;;:::o;78642:114::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78735:13:::1;78720:12;;:28;;;;;;;;;;;;;;;;;;78642:114:::0;:::o;69426:256::-;69523:7;69559:23;69576:5;69559:16;:23::i;:::-;69551:5;:31;69543:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;69648:12;:19;69661:5;69648:19;;;;;;;;;;;;;;;:26;69668:5;69648:26;;;;;;;;;;;;69641:33;;69426:256;;;;:::o;78541:95::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78624:6:::1;78606:15;;:24;;;;;;;;;;;;;;;;;;78541:95:::0;:::o;78985:154::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79041:7:::1;79062;:5;:7::i;:::-;79054:21;;79083;79054:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79040:69;;;79124:2;79116:11;;;::::0;::::1;;79030:109;78985:154::o:0;58854:185::-;58992:39;59009:4;59015:2;59019:7;58992:39;;;;;;;;;;;;:16;:39::i;:::-;58854:185;;;:::o;77231:348::-;77306:16;77334:23;77360:17;77370:6;77360:9;:17::i;:::-;77334:43;;77384:25;77426:15;77412:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77384:58;;77454:9;77449:103;77469:15;77465:1;:19;77449:103;;;77514:30;77534:6;77542:1;77514:19;:30::i;:::-;77500:8;77509:1;77500:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;77486:3;;;;;:::i;:::-;;;;77449:103;;;;77565:8;77558:15;;;;77231:348;;;:::o;78016:80::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78082:8:::1;78075:4;:15;;;;78016:80:::0;:::o;76274:947::-;31332:1;31930:7;;:19;;31922:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31332:1;32063:7;:18;;;;76351:6:::1;;;;;;;;;;;76350:7;76342:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;76391:14;76408:13;:11;:13::i;:::-;76391:30;;76450:1;76436:11;:15;76428:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;76513:13;;76498:11;:28;;76490:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;76606:9;;76591:11;76582:6;:20;;;;:::i;:::-;:33;;76574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76669:7;:5;:7::i;:::-;76655:21;;:10;:21;;;76651:355;;76711:4;76692:23;;:15;;;;;;;;;;;:23;;;76689:210;;;76775:1;76740:20;:32;76761:10;76740:32;;;;;;;;;;;;;;;;:36;76732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;76858:11;76822:20;:32;76843:10;76822:32;;;;;;;;;;;;;;;;:47;;76814:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;76689:210;76913:86;76951:10;76963:15;;;;;;;;;;;76987:11;76980:4;;:18;;;;:::i;:::-;76920:12;;;;;;;;;;;76913:37;;;;:86;;;;;;:::i;:::-;76651:355;77023:9;77035:1;77023:13;;77018:198;77043:11;77038:1;:16;77018:198;;77110:1;77075:20;:32;77096:10;77075:32;;;;;;;;;;;;;;;;:36;77071:96;;;77122:20;:32;77143:10;77122:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;77071:96;77175:33;77185:10;77206:1;77197:6;:10;;;;:::i;:::-;77175:9;:33::i;:::-;77056:3;;;;;:::i;:::-;;;;77018:198;;;;76335:886;31288:1:::0;32242:7;:22;;;;76274:947;:::o;69948:233::-;70023:7;70059:30;:28;:30::i;:::-;70051:5;:38;70043:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;70156:10;70167:5;70156:17;;;;;;;;:::i;:::-;;;;;;;;;;70149:24;;69948:233;;;:::o;78225:98::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78306:11:::1;78296:7;:21;;;;;;;;;;;;:::i;:::-;;78225:98:::0;:::o;75631:26::-;;;;;;;;;;;;;:::o;55828:239::-;55900:7;55920:13;55936:7;:16;55944:7;55936:16;;;;;;;;;;;;;;;;;;;;;55920:32;;55988:1;55971:19;;:5;:19;;;;55963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56054:5;56047:12;;;55828:239;;;:::o;75453:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55558:208::-;55630:7;55675:1;55658:19;;:5;:19;;;;55650:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;55742:9;:16;55752:5;55742:16;;;;;;;;;;;;;;;;55735:23;;55558:208;;;:::o;2397:103::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2462:30:::1;2489:1;2462:18;:30::i;:::-;2397:103::o:0;78102:116::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78195:17:::1;78179:13;:33;;;;78102:116:::0;:::o;1746:87::-;1792:7;1819:6;;;;;;;;;;;1812:13;;1746:87;:::o;56303:104::-;56359:13;56392:7;56385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56303:104;:::o;75662:35::-;;;;;;;;;;;;;:::o;57987:155::-;58082:52;58101:12;:10;:12::i;:::-;58115:8;58125;58082:18;:52::i;:::-;57987:155;;:::o;59110:328::-;59285:41;59304:12;:10;:12::i;:::-;59318:7;59285:18;:41::i;:::-;59277:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;59391:39;59405:4;59411:2;59415:7;59424:5;59391:13;:39::i;:::-;59110:328;;;;:::o;75794:31::-;;;;;;;;;;;;;:::o;75479:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77586:402::-;77659:13;77700:16;77708:7;77700;:16::i;:::-;77684:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;77794:28;77825:10;:8;:10::i;:::-;77794:41;;77880:1;77855:14;77849:28;:32;:133;;;;;;;;;;;;;;;;;77917:14;77933:18;:7;:16;:18::i;:::-;77953:13;77900:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77849:133;77842:140;;;77586:402;;;:::o;75521:31::-;;;;:::o;78330:122::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78429:17:::1;78413:13;:33;;;;;;;;;;;;:::i;:::-;;78330:122:::0;:::o;58213:164::-;58310:4;58334:18;:25;58353:5;58334:25;;;;;;;;;;;;;;;:35;58360:8;58334:35;;;;;;;;;;;;;;;;;;;;;;;;;58327:42;;58213:164;;;;:::o;2655:201::-;1977:12;:10;:12::i;:::-;1966:23;;:7;:5;:7::i;:::-;:23;;;1958:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2764:1:::1;2744:22;;:8;:22;;;;2736:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2820:28;2839:8;2820:18;:28::i;:::-;2655:201:::0;:::o;55189:305::-;55291:4;55343:25;55328:40;;;:11;:40;;;;:105;;;;55400:33;55385:48;;;:11;:48;;;;55328:105;:158;;;;55450:36;55474:11;55450:23;:36::i;:::-;55328:158;55308:178;;55189:305;;;:::o;614:98::-;667:7;694:10;687:17;;614:98;:::o;60948:127::-;61013:4;61065:1;61037:30;;:7;:16;61045:7;61037:16;;;;;;;;;;;;;;;;;;;;;:30;;;;61030:37;;60948:127;;;:::o;65094:174::-;65196:2;65169:15;:24;65185:7;65169:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;65252:7;65248:2;65214:46;;65223:23;65238:7;65223:14;:23::i;:::-;65214:46;;;;;;;;;;;;65094:174;;:::o;61242:348::-;61335:4;61360:16;61368:7;61360;:16::i;:::-;61352:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;61436:13;61452:23;61467:7;61452:14;:23::i;:::-;61436:39;;61505:5;61494:16;;:7;:16;;;:51;;;;61538:7;61514:31;;:20;61526:7;61514:11;:20::i;:::-;:31;;;61494:51;:87;;;;61549:32;61566:5;61573:7;61549:16;:32::i;:::-;61494:87;61486:96;;;61242:348;;;;:::o;64351:625::-;64510:4;64483:31;;:23;64498:7;64483:14;:23::i;:::-;:31;;;64475:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;64589:1;64575:16;;:2;:16;;;;64567:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64645:39;64666:4;64672:2;64676:7;64645:20;:39::i;:::-;64749:29;64766:1;64770:7;64749:8;:29::i;:::-;64810:1;64791:9;:15;64801:4;64791:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;64839:1;64822:9;:13;64832:2;64822:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;64870:2;64851:7;:16;64859:7;64851:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;64909:7;64905:2;64890:27;;64899:4;64890:27;;;;;;;;;;;;64930:38;64950:4;64956:2;64960:7;64930:19;:38::i;:::-;64351:625;;;:::o;47418:248::-;47562:96;47582:5;47612:27;;;47641:4;47647:2;47651:5;47589:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47562:19;:96::i;:::-;47418:248;;;;:::o;61932:110::-;62008:26;62018:2;62022:7;62008:26;;;;;;;;;;;;:9;:26::i;:::-;61932:110;;:::o;3016:191::-;3090:16;3109:6;;;;;;;;;;;3090:25;;3135:8;3126:6;;:17;;;;;;;;;;;;;;;;;;3190:8;3159:40;;3180:8;3159:40;;;;;;;;;;;;3079:128;3016:191;:::o;65410:315::-;65565:8;65556:17;;:5;:17;;;;65548:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;65652:8;65614:18;:25;65633:5;65614:25;;;;;;;;;;;;;;;:35;65640:8;65614:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;65698:8;65676:41;;65691:5;65676:41;;;65708:8;65676:41;;;;;;:::i;:::-;;;;;;;;65410:315;;;:::o;60320:::-;60477:28;60487:4;60493:2;60497:7;60477:9;:28::i;:::-;60524:48;60547:4;60553:2;60557:7;60566:5;60524:22;:48::i;:::-;60516:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;60320:315;;;;:::o;76151:102::-;76211:13;76240:7;76233:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76151:102;:::o;52203:723::-;52259:13;52489:1;52480:5;:10;52476:53;;;52507:10;;;;;;;;;;;;;;;;;;;;;52476:53;52539:12;52554:5;52539:20;;52570:14;52595:78;52610:1;52602:4;:9;52595:78;;52628:8;;;;;:::i;:::-;;;;52659:2;52651:10;;;;;:::i;:::-;;;52595:78;;;52683:19;52715:6;52705:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52683:39;;52733:154;52749:1;52740:5;:10;52733:154;;52777:1;52767:11;;;;;:::i;:::-;;;52844:2;52836:5;:10;;;;:::i;:::-;52823:2;:24;;;;:::i;:::-;52810:39;;52793:6;52800;52793:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;52873:2;52864:11;;;;;:::i;:::-;;;52733:154;;;52911:6;52897:21;;;;;52203:723;;;;:::o;51193:157::-;51278:4;51317:25;51302:40;;;:11;:40;;;;51295:47;;51193:157;;;:::o;70794:589::-;70938:45;70965:4;70971:2;70975:7;70938:26;:45::i;:::-;71016:1;71000:18;;:4;:18;;;70996:187;;;71035:40;71067:7;71035:31;:40::i;:::-;70996:187;;;71105:2;71097:10;;:4;:10;;;71093:90;;71124:47;71157:4;71163:7;71124:32;:47::i;:::-;71093:90;70996:187;71211:1;71197:16;;:2;:16;;;71193:183;;;71230:45;71267:7;71230:36;:45::i;:::-;71193:183;;;71303:4;71297:10;;:2;:10;;;71293:83;;71324:40;71352:2;71356:7;71324:27;:40::i;:::-;71293:83;71193:183;70794:589;;;:::o;68172:125::-;;;;:::o;49772:716::-;50196:23;50222:69;50250:4;50222:69;;;;;;;;;;;;;;;;;50230:5;50222:27;;;;:69;;;;;:::i;:::-;50196:95;;50326:1;50306:10;:17;:21;50302:179;;;50403:10;50392:30;;;;;;;;;;;;:::i;:::-;50384:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;50302:179;49842:646;49772:716;;:::o;62269:321::-;62399:18;62405:2;62409:7;62399:5;:18::i;:::-;62450:54;62481:1;62485:2;62489:7;62498:5;62450:22;:54::i;:::-;62428:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;62269:321;;;:::o;66290:799::-;66445:4;66466:15;:2;:13;;;:15::i;:::-;66462:620;;;66518:2;66502:36;;;66539:12;:10;:12::i;:::-;66553:4;66559:7;66568:5;66502:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;66498:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66761:1;66744:6;:13;:18;66740:272;;;66787:60;;;;;;;;;;:::i;:::-;;;;;;;;66740:272;66962:6;66956:13;66947:6;66943:2;66939:15;66932:38;66498:529;66635:41;;;66625:51;;;:6;:51;;;;66618:58;;;;;66462:620;67066:4;67059:11;;66290:799;;;;;;;:::o;67661:126::-;;;;:::o;72106:164::-;72210:10;:17;;;;72183:15;:24;72199:7;72183:24;;;;;;;;;;;:44;;;;72238:10;72254:7;72238:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72106:164;:::o;72897:988::-;73163:22;73213:1;73188:22;73205:4;73188:16;:22::i;:::-;:26;;;;:::i;:::-;73163:51;;73225:18;73246:17;:26;73264:7;73246:26;;;;;;;;;;;;73225:47;;73393:14;73379:10;:28;73375:328;;73424:19;73446:12;:18;73459:4;73446:18;;;;;;;;;;;;;;;:34;73465:14;73446:34;;;;;;;;;;;;73424:56;;73530:11;73497:12;:18;73510:4;73497:18;;;;;;;;;;;;;;;:30;73516:10;73497:30;;;;;;;;;;;:44;;;;73647:10;73614:17;:30;73632:11;73614:30;;;;;;;;;;;:43;;;;73409:294;73375:328;73799:17;:26;73817:7;73799:26;;;;;;;;;;;73792:33;;;73843:12;:18;73856:4;73843:18;;;;;;;;;;;;;;;:34;73862:14;73843:34;;;;;;;;;;;73836:41;;;72978:907;;72897:988;;:::o;74180:1079::-;74433:22;74478:1;74458:10;:17;;;;:21;;;;:::i;:::-;74433:46;;74490:18;74511:15;:24;74527:7;74511:24;;;;;;;;;;;;74490:45;;74862:19;74884:10;74895:14;74884:26;;;;;;;;:::i;:::-;;;;;;;;;;74862:48;;74948:11;74923:10;74934;74923:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;75059:10;75028:15;:28;75044:11;75028:28;;;;;;;;;;;:41;;;;75200:15;:24;75216:7;75200:24;;;;;;;;;;;75193:31;;;75235:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74251:1008;;;74180:1079;:::o;71684:221::-;71769:14;71786:20;71803:2;71786:16;:20::i;:::-;71769:37;;71844:7;71817:12;:16;71830:2;71817:16;;;;;;;;;;;;;;;:24;71834:6;71817:24;;;;;;;;;;;:34;;;;71891:6;71862:17;:26;71880:7;71862:26;;;;;;;;;;;:35;;;;71758:147;71684:221;;:::o;42150:229::-;42287:12;42319:52;42341:6;42349:4;42355:1;42358:12;42319:21;:52::i;:::-;42312:59;;42150:229;;;;;:::o;62926:439::-;63020:1;63006:16;;:2;:16;;;;62998:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;63079:16;63087:7;63079;:16::i;:::-;63078:17;63070:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63141:45;63170:1;63174:2;63178:7;63141:20;:45::i;:::-;63216:1;63199:9;:13;63209:2;63199:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;63247:2;63228:7;:16;63236:7;63228:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;63292:7;63288:2;63267:33;;63284:1;63267:33;;;;;;;;;;;;63313:44;63341:1;63345:2;63349:7;63313:19;:44::i;:::-;62926:439;;:::o;39405:326::-;39465:4;39722:1;39700:7;:19;;;:23;39693:30;;39405:326;;;:::o;43270:510::-;43440:12;43498:5;43473:21;:30;;43465:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;43565:18;43576:6;43565:10;:18::i;:::-;43557:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43631:12;43645:23;43672:6;:11;;43691:5;43698:4;43672:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43630:73;;;;43721:51;43738:7;43747:10;43759:12;43721:16;:51::i;:::-;43714:58;;;;43270:510;;;;;;:::o;45956:712::-;46106:12;46135:7;46131:530;;;46166:10;46159:17;;;;46131:530;46300:1;46280:10;:17;:21;46276:374;;;46478:10;46472:17;46539:15;46526:10;46522:2;46518:19;46511:44;46276:374;46621:12;46614:20;;;;;;;;;;;:::i;:::-;;;;;;;;45956:712;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2361:5;2392:6;2386:13;2377:22;;2408:30;2432:5;2408:30;:::i;:::-;2307:137;;;;:::o;2450:::-;2495:5;2533:6;2520:20;2511:29;;2549:32;2575:5;2549:32;:::i;:::-;2450:137;;;;:::o;2593:141::-;2649:5;2680:6;2674:13;2665:22;;2696:32;2722:5;2696:32;:::i;:::-;2593:141;;;;:::o;2753:338::-;2808:5;2857:3;2850:4;2842:6;2838:17;2834:27;2824:122;;2865:79;;:::i;:::-;2824:122;2982:6;2969:20;3007:78;3081:3;3073:6;3066:4;3058:6;3054:17;3007:78;:::i;:::-;2998:87;;2814:277;2753:338;;;;:::o;3111:340::-;3167:5;3216:3;3209:4;3201:6;3197:17;3193:27;3183:122;;3224:79;;:::i;:::-;3183:122;3341:6;3328:20;3366:79;3441:3;3433:6;3426:4;3418:6;3414:17;3366:79;:::i;:::-;3357:88;;3173:278;3111:340;;;;:::o;3457:139::-;3503:5;3541:6;3528:20;3519:29;;3557:33;3584:5;3557:33;:::i;:::-;3457:139;;;;:::o;3602:329::-;3661:6;3710:2;3698:9;3689:7;3685:23;3681:32;3678:119;;;3716:79;;:::i;:::-;3678:119;3836:1;3861:53;3906:7;3897:6;3886:9;3882:22;3861:53;:::i;:::-;3851:63;;3807:117;3602:329;;;;:::o;3937:474::-;4005:6;4013;4062:2;4050:9;4041:7;4037:23;4033:32;4030:119;;;4068:79;;:::i;:::-;4030:119;4188:1;4213:53;4258:7;4249:6;4238:9;4234:22;4213:53;:::i;:::-;4203:63;;4159:117;4315:2;4341:53;4386:7;4377:6;4366:9;4362:22;4341:53;:::i;:::-;4331:63;;4286:118;3937:474;;;;;:::o;4417:619::-;4494:6;4502;4510;4559:2;4547:9;4538:7;4534:23;4530:32;4527:119;;;4565:79;;:::i;:::-;4527:119;4685:1;4710:53;4755:7;4746:6;4735:9;4731:22;4710:53;:::i;:::-;4700:63;;4656:117;4812:2;4838:53;4883:7;4874:6;4863:9;4859:22;4838:53;:::i;:::-;4828:63;;4783:118;4940:2;4966:53;5011:7;5002:6;4991:9;4987:22;4966:53;:::i;:::-;4956:63;;4911:118;4417:619;;;;;:::o;5042:943::-;5137:6;5145;5153;5161;5210:3;5198:9;5189:7;5185:23;5181:33;5178:120;;;5217:79;;:::i;:::-;5178:120;5337:1;5362:53;5407:7;5398:6;5387:9;5383:22;5362:53;:::i;:::-;5352:63;;5308:117;5464:2;5490:53;5535:7;5526:6;5515:9;5511:22;5490:53;:::i;:::-;5480:63;;5435:118;5592:2;5618:53;5663:7;5654:6;5643:9;5639:22;5618:53;:::i;:::-;5608:63;;5563:118;5748:2;5737:9;5733:18;5720:32;5779:18;5771:6;5768:30;5765:117;;;5801:79;;:::i;:::-;5765:117;5906:62;5960:7;5951:6;5940:9;5936:22;5906:62;:::i;:::-;5896:72;;5691:287;5042:943;;;;;;;:::o;5991:468::-;6056:6;6064;6113:2;6101:9;6092:7;6088:23;6084:32;6081:119;;;6119:79;;:::i;:::-;6081:119;6239:1;6264:53;6309:7;6300:6;6289:9;6285:22;6264:53;:::i;:::-;6254:63;;6210:117;6366:2;6392:50;6434:7;6425:6;6414:9;6410:22;6392:50;:::i;:::-;6382:60;;6337:115;5991:468;;;;;:::o;6465:474::-;6533:6;6541;6590:2;6578:9;6569:7;6565:23;6561:32;6558:119;;;6596:79;;:::i;:::-;6558:119;6716:1;6741:53;6786:7;6777:6;6766:9;6762:22;6741:53;:::i;:::-;6731:63;;6687:117;6843:2;6869:53;6914:7;6905:6;6894:9;6890:22;6869:53;:::i;:::-;6859:63;;6814:118;6465:474;;;;;:::o;6945:934::-;7067:6;7075;7083;7091;7140:2;7128:9;7119:7;7115:23;7111:32;7108:119;;;7146:79;;:::i;:::-;7108:119;7294:1;7283:9;7279:17;7266:31;7324:18;7316:6;7313:30;7310:117;;;7346:79;;:::i;:::-;7310:117;7459:80;7531:7;7522:6;7511:9;7507:22;7459:80;:::i;:::-;7441:98;;;;7237:312;7616:2;7605:9;7601:18;7588:32;7647:18;7639:6;7636:30;7633:117;;;7669:79;;:::i;:::-;7633:117;7782:80;7854:7;7845:6;7834:9;7830:22;7782:80;:::i;:::-;7764:98;;;;7559:313;6945:934;;;;;;;:::o;7885:323::-;7941:6;7990:2;7978:9;7969:7;7965:23;7961:32;7958:119;;;7996:79;;:::i;:::-;7958:119;8116:1;8141:50;8183:7;8174:6;8163:9;8159:22;8141:50;:::i;:::-;8131:60;;8087:114;7885:323;;;;:::o;8214:345::-;8281:6;8330:2;8318:9;8309:7;8305:23;8301:32;8298:119;;;8336:79;;:::i;:::-;8298:119;8456:1;8481:61;8534:7;8525:6;8514:9;8510:22;8481:61;:::i;:::-;8471:71;;8427:125;8214:345;;;;:::o;8565:327::-;8623:6;8672:2;8660:9;8651:7;8647:23;8643:32;8640:119;;;8678:79;;:::i;:::-;8640:119;8798:1;8823:52;8867:7;8858:6;8847:9;8843:22;8823:52;:::i;:::-;8813:62;;8769:116;8565:327;;;;:::o;8898:349::-;8967:6;9016:2;9004:9;8995:7;8991:23;8987:32;8984:119;;;9022:79;;:::i;:::-;8984:119;9142:1;9167:63;9222:7;9213:6;9202:9;9198:22;9167:63;:::i;:::-;9157:73;;9113:127;8898:349;;;;:::o;9253:509::-;9322:6;9371:2;9359:9;9350:7;9346:23;9342:32;9339:119;;;9377:79;;:::i;:::-;9339:119;9525:1;9514:9;9510:17;9497:31;9555:18;9547:6;9544:30;9541:117;;;9577:79;;:::i;:::-;9541:117;9682:63;9737:7;9728:6;9717:9;9713:22;9682:63;:::i;:::-;9672:73;;9468:287;9253:509;;;;:::o;9768:329::-;9827:6;9876:2;9864:9;9855:7;9851:23;9847:32;9844:119;;;9882:79;;:::i;:::-;9844:119;10002:1;10027:53;10072:7;10063:6;10052:9;10048:22;10027:53;:::i;:::-;10017:63;;9973:117;9768:329;;;;:::o;10103:179::-;10172:10;10193:46;10235:3;10227:6;10193:46;:::i;:::-;10271:4;10266:3;10262:14;10248:28;;10103:179;;;;:::o;10288:118::-;10375:24;10393:5;10375:24;:::i;:::-;10370:3;10363:37;10288:118;;:::o;10442:732::-;10561:3;10590:54;10638:5;10590:54;:::i;:::-;10660:86;10739:6;10734:3;10660:86;:::i;:::-;10653:93;;10770:56;10820:5;10770:56;:::i;:::-;10849:7;10880:1;10865:284;10890:6;10887:1;10884:13;10865:284;;;10966:6;10960:13;10993:63;11052:3;11037:13;10993:63;:::i;:::-;10986:70;;11079:60;11132:6;11079:60;:::i;:::-;11069:70;;10925:224;10912:1;10909;10905:9;10900:14;;10865:284;;;10869:14;11165:3;11158:10;;10566:608;;;10442:732;;;;:::o;11180:109::-;11261:21;11276:5;11261:21;:::i;:::-;11256:3;11249:34;11180:109;;:::o;11295:360::-;11381:3;11409:38;11441:5;11409:38;:::i;:::-;11463:70;11526:6;11521:3;11463:70;:::i;:::-;11456:77;;11542:52;11587:6;11582:3;11575:4;11568:5;11564:16;11542:52;:::i;:::-;11619:29;11641:6;11619:29;:::i;:::-;11614:3;11610:39;11603:46;;11385:270;11295:360;;;;:::o;11661:373::-;11765:3;11793:38;11825:5;11793:38;:::i;:::-;11847:88;11928:6;11923:3;11847:88;:::i;:::-;11840:95;;11944:52;11989:6;11984:3;11977:4;11970:5;11966:16;11944:52;:::i;:::-;12021:6;12016:3;12012:16;12005:23;;11769:265;11661:373;;;;:::o;12040:364::-;12128:3;12156:39;12189:5;12156:39;:::i;:::-;12211:71;12275:6;12270:3;12211:71;:::i;:::-;12204:78;;12291:52;12336:6;12331:3;12324:4;12317:5;12313:16;12291:52;:::i;:::-;12368:29;12390:6;12368:29;:::i;:::-;12363:3;12359:39;12352:46;;12132:272;12040:364;;;;:::o;12410:377::-;12516:3;12544:39;12577:5;12544:39;:::i;:::-;12599:89;12681:6;12676:3;12599:89;:::i;:::-;12592:96;;12697:52;12742:6;12737:3;12730:4;12723:5;12719:16;12697:52;:::i;:::-;12774:6;12769:3;12765:16;12758:23;;12520:267;12410:377;;;;:::o;12817:845::-;12920:3;12957:5;12951:12;12986:36;13012:9;12986:36;:::i;:::-;13038:89;13120:6;13115:3;13038:89;:::i;:::-;13031:96;;13158:1;13147:9;13143:17;13174:1;13169:137;;;;13320:1;13315:341;;;;13136:520;;13169:137;13253:4;13249:9;13238;13234:25;13229:3;13222:38;13289:6;13284:3;13280:16;13273:23;;13169:137;;13315:341;13382:38;13414:5;13382:38;:::i;:::-;13442:1;13456:154;13470:6;13467:1;13464:13;13456:154;;;13544:7;13538:14;13534:1;13529:3;13525:11;13518:35;13594:1;13585:7;13581:15;13570:26;;13492:4;13489:1;13485:12;13480:17;;13456:154;;;13639:6;13634:3;13630:16;13623:23;;13322:334;;13136:520;;12924:738;;12817:845;;;;:::o;13668:366::-;13810:3;13831:67;13895:2;13890:3;13831:67;:::i;:::-;13824:74;;13907:93;13996:3;13907:93;:::i;:::-;14025:2;14020:3;14016:12;14009:19;;13668:366;;;:::o;14040:::-;14182:3;14203:67;14267:2;14262:3;14203:67;:::i;:::-;14196:74;;14279:93;14368:3;14279:93;:::i;:::-;14397:2;14392:3;14388:12;14381:19;;14040:366;;;:::o;14412:::-;14554:3;14575:67;14639:2;14634:3;14575:67;:::i;:::-;14568:74;;14651:93;14740:3;14651:93;:::i;:::-;14769:2;14764:3;14760:12;14753:19;;14412:366;;;:::o;14784:::-;14926:3;14947:67;15011:2;15006:3;14947:67;:::i;:::-;14940:74;;15023:93;15112:3;15023:93;:::i;:::-;15141:2;15136:3;15132:12;15125:19;;14784:366;;;:::o;15156:::-;15298:3;15319:67;15383:2;15378:3;15319:67;:::i;:::-;15312:74;;15395:93;15484:3;15395:93;:::i;:::-;15513:2;15508:3;15504:12;15497:19;;15156:366;;;:::o;15528:::-;15670:3;15691:67;15755:2;15750:3;15691:67;:::i;:::-;15684:74;;15767:93;15856:3;15767:93;:::i;:::-;15885:2;15880:3;15876:12;15869:19;;15528:366;;;:::o;15900:::-;16042:3;16063:67;16127:2;16122:3;16063:67;:::i;:::-;16056:74;;16139:93;16228:3;16139:93;:::i;:::-;16257:2;16252:3;16248:12;16241:19;;15900:366;;;:::o;16272:::-;16414:3;16435:67;16499:2;16494:3;16435:67;:::i;:::-;16428:74;;16511:93;16600:3;16511:93;:::i;:::-;16629:2;16624:3;16620:12;16613:19;;16272:366;;;:::o;16644:::-;16786:3;16807:67;16871:2;16866:3;16807:67;:::i;:::-;16800:74;;16883:93;16972:3;16883:93;:::i;:::-;17001:2;16996:3;16992:12;16985:19;;16644:366;;;:::o;17016:::-;17158:3;17179:67;17243:2;17238:3;17179:67;:::i;:::-;17172:74;;17255:93;17344:3;17255:93;:::i;:::-;17373:2;17368:3;17364:12;17357:19;;17016:366;;;:::o;17388:::-;17530:3;17551:67;17615:2;17610:3;17551:67;:::i;:::-;17544:74;;17627:93;17716:3;17627:93;:::i;:::-;17745:2;17740:3;17736:12;17729:19;;17388:366;;;:::o;17760:::-;17902:3;17923:67;17987:2;17982:3;17923:67;:::i;:::-;17916:74;;17999:93;18088:3;17999:93;:::i;:::-;18117:2;18112:3;18108:12;18101:19;;17760:366;;;:::o;18132:::-;18274:3;18295:67;18359:2;18354:3;18295:67;:::i;:::-;18288:74;;18371:93;18460:3;18371:93;:::i;:::-;18489:2;18484:3;18480:12;18473:19;;18132:366;;;:::o;18504:::-;18646:3;18667:67;18731:2;18726:3;18667:67;:::i;:::-;18660:74;;18743:93;18832:3;18743:93;:::i;:::-;18861:2;18856:3;18852:12;18845:19;;18504:366;;;:::o;18876:::-;19018:3;19039:67;19103:2;19098:3;19039:67;:::i;:::-;19032:74;;19115:93;19204:3;19115:93;:::i;:::-;19233:2;19228:3;19224:12;19217:19;;18876:366;;;:::o;19248:::-;19390:3;19411:67;19475:2;19470:3;19411:67;:::i;:::-;19404:74;;19487:93;19576:3;19487:93;:::i;:::-;19605:2;19600:3;19596:12;19589:19;;19248:366;;;:::o;19620:::-;19762:3;19783:67;19847:2;19842:3;19783:67;:::i;:::-;19776:74;;19859:93;19948:3;19859:93;:::i;:::-;19977:2;19972:3;19968:12;19961:19;;19620:366;;;:::o;19992:::-;20134:3;20155:67;20219:2;20214:3;20155:67;:::i;:::-;20148:74;;20231:93;20320:3;20231:93;:::i;:::-;20349:2;20344:3;20340:12;20333:19;;19992:366;;;:::o;20364:::-;20506:3;20527:67;20591:2;20586:3;20527:67;:::i;:::-;20520:74;;20603:93;20692:3;20603:93;:::i;:::-;20721:2;20716:3;20712:12;20705:19;;20364:366;;;:::o;20736:::-;20878:3;20899:67;20963:2;20958:3;20899:67;:::i;:::-;20892:74;;20975:93;21064:3;20975:93;:::i;:::-;21093:2;21088:3;21084:12;21077:19;;20736:366;;;:::o;21108:398::-;21267:3;21288:83;21369:1;21364:3;21288:83;:::i;:::-;21281:90;;21380:93;21469:3;21380:93;:::i;:::-;21498:1;21493:3;21489:11;21482:18;;21108:398;;;:::o;21512:366::-;21654:3;21675:67;21739:2;21734:3;21675:67;:::i;:::-;21668:74;;21751:93;21840:3;21751:93;:::i;:::-;21869:2;21864:3;21860:12;21853:19;;21512:366;;;:::o;21884:::-;22026:3;22047:67;22111:2;22106:3;22047:67;:::i;:::-;22040:74;;22123:93;22212:3;22123:93;:::i;:::-;22241:2;22236:3;22232:12;22225:19;;21884:366;;;:::o;22256:::-;22398:3;22419:67;22483:2;22478:3;22419:67;:::i;:::-;22412:74;;22495:93;22584:3;22495:93;:::i;:::-;22613:2;22608:3;22604:12;22597:19;;22256:366;;;:::o;22628:::-;22770:3;22791:67;22855:2;22850:3;22791:67;:::i;:::-;22784:74;;22867:93;22956:3;22867:93;:::i;:::-;22985:2;22980:3;22976:12;22969:19;;22628:366;;;:::o;23000:::-;23142:3;23163:67;23227:2;23222:3;23163:67;:::i;:::-;23156:74;;23239:93;23328:3;23239:93;:::i;:::-;23357:2;23352:3;23348:12;23341:19;;23000:366;;;:::o;23372:::-;23514:3;23535:67;23599:2;23594:3;23535:67;:::i;:::-;23528:74;;23611:93;23700:3;23611:93;:::i;:::-;23729:2;23724:3;23720:12;23713:19;;23372:366;;;:::o;23744:::-;23886:3;23907:67;23971:2;23966:3;23907:67;:::i;:::-;23900:74;;23983:93;24072:3;23983:93;:::i;:::-;24101:2;24096:3;24092:12;24085:19;;23744:366;;;:::o;24116:::-;24258:3;24279:67;24343:2;24338:3;24279:67;:::i;:::-;24272:74;;24355:93;24444:3;24355:93;:::i;:::-;24473:2;24468:3;24464:12;24457:19;;24116:366;;;:::o;24488:108::-;24565:24;24583:5;24565:24;:::i;:::-;24560:3;24553:37;24488:108;;:::o;24602:118::-;24689:24;24707:5;24689:24;:::i;:::-;24684:3;24677:37;24602:118;;:::o;24726:271::-;24856:3;24878:93;24967:3;24958:6;24878:93;:::i;:::-;24871:100;;24988:3;24981:10;;24726:271;;;;:::o;25003:589::-;25228:3;25250:95;25341:3;25332:6;25250:95;:::i;:::-;25243:102;;25362:95;25453:3;25444:6;25362:95;:::i;:::-;25355:102;;25474:92;25562:3;25553:6;25474:92;:::i;:::-;25467:99;;25583:3;25576:10;;25003:589;;;;;;:::o;25598:379::-;25782:3;25804:147;25947:3;25804:147;:::i;:::-;25797:154;;25968:3;25961:10;;25598:379;;;:::o;25983:222::-;26076:4;26114:2;26103:9;26099:18;26091:26;;26127:71;26195:1;26184:9;26180:17;26171:6;26127:71;:::i;:::-;25983:222;;;;:::o;26211:442::-;26360:4;26398:2;26387:9;26383:18;26375:26;;26411:71;26479:1;26468:9;26464:17;26455:6;26411:71;:::i;:::-;26492:72;26560:2;26549:9;26545:18;26536:6;26492:72;:::i;:::-;26574;26642:2;26631:9;26627:18;26618:6;26574:72;:::i;:::-;26211:442;;;;;;:::o;26659:640::-;26854:4;26892:3;26881:9;26877:19;26869:27;;26906:71;26974:1;26963:9;26959:17;26950:6;26906:71;:::i;:::-;26987:72;27055:2;27044:9;27040:18;27031:6;26987:72;:::i;:::-;27069;27137:2;27126:9;27122:18;27113:6;27069:72;:::i;:::-;27188:9;27182:4;27178:20;27173:2;27162:9;27158:18;27151:48;27216:76;27287:4;27278:6;27216:76;:::i;:::-;27208:84;;26659:640;;;;;;;:::o;27305:373::-;27448:4;27486:2;27475:9;27471:18;27463:26;;27535:9;27529:4;27525:20;27521:1;27510:9;27506:17;27499:47;27563:108;27666:4;27657:6;27563:108;:::i;:::-;27555:116;;27305:373;;;;:::o;27684:210::-;27771:4;27809:2;27798:9;27794:18;27786:26;;27822:65;27884:1;27873:9;27869:17;27860:6;27822:65;:::i;:::-;27684:210;;;;:::o;27900:313::-;28013:4;28051:2;28040:9;28036:18;28028:26;;28100:9;28094:4;28090:20;28086:1;28075:9;28071:17;28064:47;28128:78;28201:4;28192:6;28128:78;:::i;:::-;28120:86;;27900:313;;;;:::o;28219:419::-;28385:4;28423:2;28412:9;28408:18;28400:26;;28472:9;28466:4;28462:20;28458:1;28447:9;28443:17;28436:47;28500:131;28626:4;28500:131;:::i;:::-;28492:139;;28219:419;;;:::o;28644:::-;28810:4;28848:2;28837:9;28833:18;28825:26;;28897:9;28891:4;28887:20;28883:1;28872:9;28868:17;28861:47;28925:131;29051:4;28925:131;:::i;:::-;28917:139;;28644:419;;;:::o;29069:::-;29235:4;29273:2;29262:9;29258:18;29250:26;;29322:9;29316:4;29312:20;29308:1;29297:9;29293:17;29286:47;29350:131;29476:4;29350:131;:::i;:::-;29342:139;;29069:419;;;:::o;29494:::-;29660:4;29698:2;29687:9;29683:18;29675:26;;29747:9;29741:4;29737:20;29733:1;29722:9;29718:17;29711:47;29775:131;29901:4;29775:131;:::i;:::-;29767:139;;29494:419;;;:::o;29919:::-;30085:4;30123:2;30112:9;30108:18;30100:26;;30172:9;30166:4;30162:20;30158:1;30147:9;30143:17;30136:47;30200:131;30326:4;30200:131;:::i;:::-;30192:139;;29919:419;;;:::o;30344:::-;30510:4;30548:2;30537:9;30533:18;30525:26;;30597:9;30591:4;30587:20;30583:1;30572:9;30568:17;30561:47;30625:131;30751:4;30625:131;:::i;:::-;30617:139;;30344:419;;;:::o;30769:::-;30935:4;30973:2;30962:9;30958:18;30950:26;;31022:9;31016:4;31012:20;31008:1;30997:9;30993:17;30986:47;31050:131;31176:4;31050:131;:::i;:::-;31042:139;;30769:419;;;:::o;31194:::-;31360:4;31398:2;31387:9;31383:18;31375:26;;31447:9;31441:4;31437:20;31433:1;31422:9;31418:17;31411:47;31475:131;31601:4;31475:131;:::i;:::-;31467:139;;31194:419;;;:::o;31619:::-;31785:4;31823:2;31812:9;31808:18;31800:26;;31872:9;31866:4;31862:20;31858:1;31847:9;31843:17;31836:47;31900:131;32026:4;31900:131;:::i;:::-;31892:139;;31619:419;;;:::o;32044:::-;32210:4;32248:2;32237:9;32233:18;32225:26;;32297:9;32291:4;32287:20;32283:1;32272:9;32268:17;32261:47;32325:131;32451:4;32325:131;:::i;:::-;32317:139;;32044:419;;;:::o;32469:::-;32635:4;32673:2;32662:9;32658:18;32650:26;;32722:9;32716:4;32712:20;32708:1;32697:9;32693:17;32686:47;32750:131;32876:4;32750:131;:::i;:::-;32742:139;;32469:419;;;:::o;32894:::-;33060:4;33098:2;33087:9;33083:18;33075:26;;33147:9;33141:4;33137:20;33133:1;33122:9;33118:17;33111:47;33175:131;33301:4;33175:131;:::i;:::-;33167:139;;32894:419;;;:::o;33319:::-;33485:4;33523:2;33512:9;33508:18;33500:26;;33572:9;33566:4;33562:20;33558:1;33547:9;33543:17;33536:47;33600:131;33726:4;33600:131;:::i;:::-;33592:139;;33319:419;;;:::o;33744:::-;33910:4;33948:2;33937:9;33933:18;33925:26;;33997:9;33991:4;33987:20;33983:1;33972:9;33968:17;33961:47;34025:131;34151:4;34025:131;:::i;:::-;34017:139;;33744:419;;;:::o;34169:::-;34335:4;34373:2;34362:9;34358:18;34350:26;;34422:9;34416:4;34412:20;34408:1;34397:9;34393:17;34386:47;34450:131;34576:4;34450:131;:::i;:::-;34442:139;;34169:419;;;:::o;34594:::-;34760:4;34798:2;34787:9;34783:18;34775:26;;34847:9;34841:4;34837:20;34833:1;34822:9;34818:17;34811:47;34875:131;35001:4;34875:131;:::i;:::-;34867:139;;34594:419;;;:::o;35019:::-;35185:4;35223:2;35212:9;35208:18;35200:26;;35272:9;35266:4;35262:20;35258:1;35247:9;35243:17;35236:47;35300:131;35426:4;35300:131;:::i;:::-;35292:139;;35019:419;;;:::o;35444:::-;35610:4;35648:2;35637:9;35633:18;35625:26;;35697:9;35691:4;35687:20;35683:1;35672:9;35668:17;35661:47;35725:131;35851:4;35725:131;:::i;:::-;35717:139;;35444:419;;;:::o;35869:::-;36035:4;36073:2;36062:9;36058:18;36050:26;;36122:9;36116:4;36112:20;36108:1;36097:9;36093:17;36086:47;36150:131;36276:4;36150:131;:::i;:::-;36142:139;;35869:419;;;:::o;36294:::-;36460:4;36498:2;36487:9;36483:18;36475:26;;36547:9;36541:4;36537:20;36533:1;36522:9;36518:17;36511:47;36575:131;36701:4;36575:131;:::i;:::-;36567:139;;36294:419;;;:::o;36719:::-;36885:4;36923:2;36912:9;36908:18;36900:26;;36972:9;36966:4;36962:20;36958:1;36947:9;36943:17;36936:47;37000:131;37126:4;37000:131;:::i;:::-;36992:139;;36719:419;;;:::o;37144:::-;37310:4;37348:2;37337:9;37333:18;37325:26;;37397:9;37391:4;37387:20;37383:1;37372:9;37368:17;37361:47;37425:131;37551:4;37425:131;:::i;:::-;37417:139;;37144:419;;;:::o;37569:::-;37735:4;37773:2;37762:9;37758:18;37750:26;;37822:9;37816:4;37812:20;37808:1;37797:9;37793:17;37786:47;37850:131;37976:4;37850:131;:::i;:::-;37842:139;;37569:419;;;:::o;37994:::-;38160:4;38198:2;38187:9;38183:18;38175:26;;38247:9;38241:4;38237:20;38233:1;38222:9;38218:17;38211:47;38275:131;38401:4;38275:131;:::i;:::-;38267:139;;37994:419;;;:::o;38419:::-;38585:4;38623:2;38612:9;38608:18;38600:26;;38672:9;38666:4;38662:20;38658:1;38647:9;38643:17;38636:47;38700:131;38826:4;38700:131;:::i;:::-;38692:139;;38419:419;;;:::o;38844:::-;39010:4;39048:2;39037:9;39033:18;39025:26;;39097:9;39091:4;39087:20;39083:1;39072:9;39068:17;39061:47;39125:131;39251:4;39125:131;:::i;:::-;39117:139;;38844:419;;;:::o;39269:::-;39435:4;39473:2;39462:9;39458:18;39450:26;;39522:9;39516:4;39512:20;39508:1;39497:9;39493:17;39486:47;39550:131;39676:4;39550:131;:::i;:::-;39542:139;;39269:419;;;:::o;39694:::-;39860:4;39898:2;39887:9;39883:18;39875:26;;39947:9;39941:4;39937:20;39933:1;39922:9;39918:17;39911:47;39975:131;40101:4;39975:131;:::i;:::-;39967:139;;39694:419;;;:::o;40119:222::-;40212:4;40250:2;40239:9;40235:18;40227:26;;40263:71;40331:1;40320:9;40316:17;40307:6;40263:71;:::i;:::-;40119:222;;;;:::o;40347:129::-;40381:6;40408:20;;:::i;:::-;40398:30;;40437:33;40465:4;40457:6;40437:33;:::i;:::-;40347:129;;;:::o;40482:75::-;40515:6;40548:2;40542:9;40532:19;;40482:75;:::o;40563:307::-;40624:4;40714:18;40706:6;40703:30;40700:56;;;40736:18;;:::i;:::-;40700:56;40774:29;40796:6;40774:29;:::i;:::-;40766:37;;40858:4;40852;40848:15;40840:23;;40563:307;;;:::o;40876:308::-;40938:4;41028:18;41020:6;41017:30;41014:56;;;41050:18;;:::i;:::-;41014:56;41088:29;41110:6;41088:29;:::i;:::-;41080:37;;41172:4;41166;41162:15;41154:23;;40876:308;;;:::o;41190:132::-;41257:4;41280:3;41272:11;;41310:4;41305:3;41301:14;41293:22;;41190:132;;;:::o;41328:141::-;41377:4;41400:3;41392:11;;41423:3;41420:1;41413:14;41457:4;41454:1;41444:18;41436:26;;41328:141;;;:::o;41475:114::-;41542:6;41576:5;41570:12;41560:22;;41475:114;;;:::o;41595:98::-;41646:6;41680:5;41674:12;41664:22;;41595:98;;;:::o;41699:99::-;41751:6;41785:5;41779:12;41769:22;;41699:99;;;:::o;41804:113::-;41874:4;41906;41901:3;41897:14;41889:22;;41804:113;;;:::o;41923:184::-;42022:11;42056:6;42051:3;42044:19;42096:4;42091:3;42087:14;42072:29;;41923:184;;;;:::o;42113:168::-;42196:11;42230:6;42225:3;42218:19;42270:4;42265:3;42261:14;42246:29;;42113:168;;;;:::o;42287:147::-;42388:11;42425:3;42410:18;;42287:147;;;;:::o;42440:169::-;42524:11;42558:6;42553:3;42546:19;42598:4;42593:3;42589:14;42574:29;;42440:169;;;;:::o;42615:148::-;42717:11;42754:3;42739:18;;42615:148;;;;:::o;42769:305::-;42809:3;42828:20;42846:1;42828:20;:::i;:::-;42823:25;;42862:20;42880:1;42862:20;:::i;:::-;42857:25;;43016:1;42948:66;42944:74;42941:1;42938:81;42935:107;;;43022:18;;:::i;:::-;42935:107;43066:1;43063;43059:9;43052:16;;42769:305;;;;:::o;43080:185::-;43120:1;43137:20;43155:1;43137:20;:::i;:::-;43132:25;;43171:20;43189:1;43171:20;:::i;:::-;43166:25;;43210:1;43200:35;;43215:18;;:::i;:::-;43200:35;43257:1;43254;43250:9;43245:14;;43080:185;;;;:::o;43271:348::-;43311:7;43334:20;43352:1;43334:20;:::i;:::-;43329:25;;43368:20;43386:1;43368:20;:::i;:::-;43363:25;;43556:1;43488:66;43484:74;43481:1;43478:81;43473:1;43466:9;43459:17;43455:105;43452:131;;;43563:18;;:::i;:::-;43452:131;43611:1;43608;43604:9;43593:20;;43271:348;;;;:::o;43625:191::-;43665:4;43685:20;43703:1;43685:20;:::i;:::-;43680:25;;43719:20;43737:1;43719:20;:::i;:::-;43714:25;;43758:1;43755;43752:8;43749:34;;;43763:18;;:::i;:::-;43749:34;43808:1;43805;43801:9;43793:17;;43625:191;;;;:::o;43822:96::-;43859:7;43888:24;43906:5;43888:24;:::i;:::-;43877:35;;43822:96;;;:::o;43924:90::-;43958:7;44001:5;43994:13;43987:21;43976:32;;43924:90;;;:::o;44020:149::-;44056:7;44096:66;44089:5;44085:78;44074:89;;44020:149;;;:::o;44175:126::-;44212:7;44252:42;44245:5;44241:54;44230:65;;44175:126;;;:::o;44307:77::-;44344:7;44373:5;44362:16;;44307:77;;;:::o;44390:154::-;44474:6;44469:3;44464;44451:30;44536:1;44527:6;44522:3;44518:16;44511:27;44390:154;;;:::o;44550:307::-;44618:1;44628:113;44642:6;44639:1;44636:13;44628:113;;;44727:1;44722:3;44718:11;44712:18;44708:1;44703:3;44699:11;44692:39;44664:2;44661:1;44657:10;44652:15;;44628:113;;;44759:6;44756:1;44753:13;44750:101;;;44839:1;44830:6;44825:3;44821:16;44814:27;44750:101;44599:258;44550:307;;;:::o;44863:171::-;44902:3;44925:24;44943:5;44925:24;:::i;:::-;44916:33;;44971:4;44964:5;44961:15;44958:41;;;44979:18;;:::i;:::-;44958:41;45026:1;45019:5;45015:13;45008:20;;44863:171;;;:::o;45040:320::-;45084:6;45121:1;45115:4;45111:12;45101:22;;45168:1;45162:4;45158:12;45189:18;45179:81;;45245:4;45237:6;45233:17;45223:27;;45179:81;45307:2;45299:6;45296:14;45276:18;45273:38;45270:84;;;45326:18;;:::i;:::-;45270:84;45091:269;45040:320;;;:::o;45366:281::-;45449:27;45471:4;45449:27;:::i;:::-;45441:6;45437:40;45579:6;45567:10;45564:22;45543:18;45531:10;45528:34;45525:62;45522:88;;;45590:18;;:::i;:::-;45522:88;45630:10;45626:2;45619:22;45409:238;45366:281;;:::o;45653:233::-;45692:3;45715:24;45733:5;45715:24;:::i;:::-;45706:33;;45761:66;45754:5;45751:77;45748:103;;;45831:18;;:::i;:::-;45748:103;45878:1;45871:5;45867:13;45860:20;;45653:233;;;:::o;45892:176::-;45924:1;45941:20;45959:1;45941:20;:::i;:::-;45936:25;;45975:20;45993:1;45975:20;:::i;:::-;45970:25;;46014:1;46004:35;;46019:18;;:::i;:::-;46004:35;46060:1;46057;46053:9;46048:14;;45892:176;;;;:::o;46074:180::-;46122:77;46119:1;46112:88;46219:4;46216:1;46209:15;46243:4;46240:1;46233:15;46260:180;46308:77;46305:1;46298:88;46405:4;46402:1;46395:15;46429:4;46426:1;46419:15;46446:180;46494:77;46491:1;46484:88;46591:4;46588:1;46581:15;46615:4;46612:1;46605:15;46632:180;46680:77;46677:1;46670:88;46777:4;46774:1;46767:15;46801:4;46798:1;46791:15;46818:180;46866:77;46863:1;46856:88;46963:4;46960:1;46953:15;46987:4;46984:1;46977:15;47004:180;47052:77;47049:1;47042:88;47149:4;47146:1;47139:15;47173:4;47170:1;47163:15;47190:117;47299:1;47296;47289:12;47313:117;47422:1;47419;47412:12;47436:117;47545:1;47542;47535:12;47559:117;47668:1;47665;47658:12;47682:117;47791:1;47788;47781:12;47805:117;47914:1;47911;47904:12;47928:102;47969:6;48020:2;48016:7;48011:2;48004:5;48000:14;47996:28;47986:38;;47928:102;;;:::o;48036:230::-;48176:34;48172:1;48164:6;48160:14;48153:58;48245:13;48240:2;48232:6;48228:15;48221:38;48036:230;:::o;48272:237::-;48412:34;48408:1;48400:6;48396:14;48389:58;48481:20;48476:2;48468:6;48464:15;48457:45;48272:237;:::o;48515:225::-;48655:34;48651:1;48643:6;48639:14;48632:58;48724:8;48719:2;48711:6;48707:15;48700:33;48515:225;:::o;48746:224::-;48886:34;48882:1;48874:6;48870:14;48863:58;48955:7;48950:2;48942:6;48938:15;48931:32;48746:224;:::o;48976:178::-;49116:30;49112:1;49104:6;49100:14;49093:54;48976:178;:::o;49160:223::-;49300:34;49296:1;49288:6;49284:14;49277:58;49369:6;49364:2;49356:6;49352:15;49345:31;49160:223;:::o;49389:175::-;49529:27;49525:1;49517:6;49513:14;49506:51;49389:175;:::o;49570:225::-;49710:34;49706:1;49698:6;49694:14;49687:58;49779:8;49774:2;49766:6;49762:15;49755:33;49570:225;:::o;49801:231::-;49941:34;49937:1;49929:6;49925:14;49918:58;50010:14;50005:2;49997:6;49993:15;49986:39;49801:231;:::o;50038:243::-;50178:34;50174:1;50166:6;50162:14;50155:58;50247:26;50242:2;50234:6;50230:15;50223:51;50038:243;:::o;50287:229::-;50427:34;50423:1;50415:6;50411:14;50404:58;50496:12;50491:2;50483:6;50479:15;50472:37;50287:229;:::o;50522:228::-;50662:34;50658:1;50650:6;50646:14;50639:58;50731:11;50726:2;50718:6;50714:15;50707:36;50522:228;:::o;50756:172::-;50896:24;50892:1;50884:6;50880:14;50873:48;50756:172;:::o;50934:223::-;51074:34;51070:1;51062:6;51058:14;51051:58;51143:6;51138:2;51130:6;51126:15;51119:31;50934:223;:::o;51163:182::-;51303:34;51299:1;51291:6;51287:14;51280:58;51163:182;:::o;51351:231::-;51491:34;51487:1;51479:6;51475:14;51468:58;51560:14;51555:2;51547:6;51543:15;51536:39;51351:231;:::o;51588:182::-;51728:34;51724:1;51716:6;51712:14;51705:58;51588:182;:::o;51776:172::-;51916:24;51912:1;51904:6;51900:14;51893:48;51776:172;:::o;51954:234::-;52094:34;52090:1;52082:6;52078:14;52071:58;52163:17;52158:2;52150:6;52146:15;52139:42;51954:234;:::o;52194:220::-;52334:34;52330:1;52322:6;52318:14;52311:58;52403:3;52398:2;52390:6;52386:15;52379:28;52194:220;:::o;52420:114::-;;:::o;52540:236::-;52680:34;52676:1;52668:6;52664:14;52657:58;52749:19;52744:2;52736:6;52732:15;52725:44;52540:236;:::o;52782:179::-;52922:31;52918:1;52910:6;52906:14;52899:55;52782:179;:::o;52967:168::-;53107:20;53103:1;53095:6;53091:14;53084:44;52967:168;:::o;53141:231::-;53281:34;53277:1;53269:6;53265:14;53258:58;53350:14;53345:2;53337:6;53333:15;53326:39;53141:231;:::o;53378:229::-;53518:34;53514:1;53506:6;53502:14;53495:58;53587:12;53582:2;53574:6;53570:15;53563:37;53378:229;:::o;53613:163::-;53753:15;53749:1;53741:6;53737:14;53730:39;53613:163;:::o;53782:181::-;53922:33;53918:1;53910:6;53906:14;53899:57;53782:181;:::o;53969:177::-;54109:29;54105:1;54097:6;54093:14;54086:53;53969:177;:::o;54152:122::-;54225:24;54243:5;54225:24;:::i;:::-;54218:5;54215:35;54205:63;;54264:1;54261;54254:12;54205:63;54152:122;:::o;54280:116::-;54350:21;54365:5;54350:21;:::i;:::-;54343:5;54340:32;54330:60;;54386:1;54383;54376:12;54330:60;54280:116;:::o;54402:120::-;54474:23;54491:5;54474:23;:::i;:::-;54467:5;54464:34;54454:62;;54512:1;54509;54502:12;54454:62;54402:120;:::o;54528:122::-;54601:24;54619:5;54601:24;:::i;:::-;54594:5;54591:35;54581:63;;54640:1;54637;54630:12;54581:63;54528:122;:::o
Swarm Source
ipfs://957730988517c4d28e0937b15fb391590308191bcca70129faca928f31f69421