Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
424 MUC
Holders
133
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
8 MUCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MagicalUnicornCoalition
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-11 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/introspection/ERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/utils/EnumerableMap.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.7.0; pragma abicoder v2; contract MagicalUnicornCoalition is ERC721, Ownable { using SafeMath for uint256; string public UNICORN_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN UNICORNS ARE ALL SOLD OUT string public LICENSE_TEXT = ""; bool licenseLocked = false; uint256 public constant unicornPrice = 55500000000000000; // 0.0555 ETH uint public constant maxUnicornPurchase = 20; mapping(address => bool) public whitelist; modifier onlyWhitelisted() { require(whitelist[msg.sender]); _; } uint256 public constant MAX_UNICORNS = 7777; bool public saleIsActive = false; bool public presaleIsActive = false; // Reserve 77 unicorns for giveaways uint public unicornReserve = 77; //payout wallets address private constant ADDR1_8 = 0x3057313c83eB036b631aB87422697D569320Ee2C; address private constant ADDR2_19 = 0x1B3637900285168adAbe6Ed458BDefF1e4548aD9; address private constant ADDR3_28 = 0xbc78E58c65a58C04B42BCb1e35a1C07f2057Bc04; address private constant ADDR4_18 = 0x0f53045a4b50b269954caE726cFDB03C9aA73D11; address private constant ADDR5_18 = 0xC27f2F8Adf67f8bce6b3a1dB5192fF3Ac845cAc0; address private constant ADDR6_4 = 0x1E82E5fF137D4e0ecf3589e9fB03428155Ffbfd5; address private constant ADDR7_5 = 0xDbbF29eF198b106408C70afa8D67a8d39146f1D3; event licenseisLocked(string _licenseText); constructor() ERC721("Magical Unicorn Coalition", "MUC") { } function withdraw() public onlyOwner { uint balance = address(this).balance; msg.sender.transfer(balance); } function withdrawAll() public payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _widthdraw(ADDR1_8, balance.mul(8).div(100)); _widthdraw(ADDR2_19, balance.mul(19).div(100)); _widthdraw(ADDR3_28, balance.mul(28).div(100)); _widthdraw(ADDR4_18, balance.mul(18).div(100)); _widthdraw(ADDR5_18, balance.mul(18).div(100)); _widthdraw(ADDR6_4, balance.mul(4).div(100)); _widthdraw(ADDR7_5, balance.mul(5).div(100)); } function _widthdraw(address _address, uint256 _amount) private { (bool success,) = _address.call{value : _amount}(""); require(success, "Transfer failed."); } function reserveUnicorns(address _to, uint256 _reserveAmount) public onlyOwner { uint supply = totalSupply(); require(_reserveAmount > 0 && _reserveAmount <= unicornReserve, "Not enough reserve left for team"); for (uint i = 0; i < _reserveAmount; i++) { _safeMint(_to, supply + i); } unicornReserve = unicornReserve.sub(_reserveAmount); } function setProvenanceHash(string memory provenanceHash) public onlyOwner { UNICORN_PROVENANCE = provenanceHash; } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function flipPresaleState() public onlyOwner { presaleIsActive = !presaleIsActive; } function addAddressToWhitelist(address addr) onlyOwner public returns(bool success) { if (!whitelist[addr]) { whitelist[addr] = true; success = true; } } function addAddressesToWhitelist(address[] memory addrs) onlyOwner public returns(bool success) { for (uint256 i = 0; i < addrs.length; i++) { if (addAddressToWhitelist(addrs[i])) { success = true; } } } function tokensOfOwner(address _owner) external view returns(uint256[] memory ) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } // Returns the license for tokens function tokenLicense(uint _id) public view returns(string memory) { require(_id < totalSupply(), "CHOOSE A UNICORN WITHIN RANGE"); return LICENSE_TEXT; } // Locks the license to prevent further changes function lockLicense() public onlyOwner { licenseLocked = true; emit licenseisLocked(LICENSE_TEXT); } // Change the license function changeLicense(string memory _license) public onlyOwner { require(licenseLocked == false, "License already locked"); LICENSE_TEXT = _license; } function mintUnicorn(uint numberOfTokens) public payable { require(saleIsActive, "Sale must be active to mint Unicorn"); require(numberOfTokens > 0 && numberOfTokens <= maxUnicornPurchase, "Can only mint 20 tokens at a time"); require(totalSupply().add(numberOfTokens) <= MAX_UNICORNS, "Purchase would exceed max supply of Unicorns"); require(msg.value >= unicornPrice.mul(numberOfTokens), "Ether value sent is not correct"); for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_UNICORNS) { _safeMint(msg.sender, mintIndex); } } } function mintPresale(uint numberOfTokens) onlyWhitelisted public payable { require(presaleIsActive, "Presale must be active to mint Unicorn"); require(numberOfTokens > 0 && numberOfTokens <= maxUnicornPurchase, "Can only mint 20 tokens at a time"); require(totalSupply().add(numberOfTokens) <= MAX_UNICORNS, "Purchase would exceed max supply of Unicorns"); require(msg.value >= unicornPrice.mul(numberOfTokens), "Ether value sent is not correct"); for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_UNICORNS) { _safeMint(msg.sender, mintIndex); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_UNICORNS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNICORN_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxUnicornPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintUnicorn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveUnicorns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unicornPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unicornReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600b91620001ea565b506040805160208101918290526000908190526200003c91600c91620001ea565b50600d805460ff19169055600f805461ffff19169055604d6010553480156200006457600080fd5b50604080518082018252601981527f4d61676963616c20556e69636f726e20436f616c6974696f6e00000000000000602080830191909152825180840190935260038352624d554360e81b9083015290620000c66301ffc9a760e01b6200018b565b8151620000db906006906020850190620001ea565b508051620000f1906007906020840190620001ea565b50620001046380ac58cd60e01b6200018b565b62000116635b5e139f60e01b6200018b565b6200012863780e9d6360e01b6200018b565b506000905062000137620001e6565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002cd565b6001600160e01b03198082161415620001c15760405162461bcd60e51b8152600401620001b89062000296565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200022257600085556200026d565b82601f106200023d57805160ff19168380011785556200026d565b828001600101855582156200026d579182015b828111156200026d57825182559160200191906001019062000250565b506200027b9291506200027f565b5090565b5b808211156200027b576000815560010162000280565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b6131c180620002dd6000396000f3fe6080604052600436106102675760003560e01c8063808274c011610144578063bf4702fc116100b6578063eb8d24441161007a578063eb8d2444146106bb578063f26c738e146106d0578063f2fde38b146106e3578063f6a00f1d14610703578063f759867a14610718578063f81227d41461072b57610267565b8063bf4702fc14610626578063c87b56dd1461063b578063d9b137b21461065b578063e2ec6ec31461067b578063e985e9c51461069b57610267565b806395d89b411161010857806395d89b411461057c5780639b19251a146105915780639c3e72bd146105b1578063a22cb465146105c6578063b09904b5146105e6578063b88d4fde1461060657610267565b8063808274c0146105085780638462151c1461051d578063853828b61461054a57806389247305146105525780638da5cb5b1461056757610267565b80633ccfd60b116101dd5780636352211e116101a15780636352211e1461045e5780636c0360eb1461047e5780636dcb66a01461049357806370a08231146104b3578063715018a6146104d35780637b9417c8146104e857610267565b80633ccfd60b146103d457806342842e0e146103e95780634f6ccce71461040957806355f804b3146104295780636322d7711461044957610267565b8063109695231161022f578063109695231461033557806318160ddd1461035557806323b872dd1461036a5780632f745c591461038a57806330f72cd4146103aa57806334918dfd146103bf57610267565b806301ffc9a71461026c57806304db5e44146102a257806306fdde03146102c4578063081812fc146102e6578063095ea7b314610313575b600080fd5b34801561027857600080fd5b5061028c610287366004612697565b610740565b604051610299919061283c565b60405180910390f35b3480156102ae57600080fd5b506102b7610763565b60405161029991906130b5565b3480156102d057600080fd5b506102d9610769565b6040516102999190612847565b3480156102f257600080fd5b50610306610301366004612715565b6107ff565b60405161029991906127a7565b34801561031f57600080fd5b5061033361032e3660046125c6565b61084b565b005b34801561034157600080fd5b506103336103503660046126cf565b6108e3565b34801561036157600080fd5b506102b7610939565b34801561037657600080fd5b506103336103853660046124d8565b61094a565b34801561039657600080fd5b506102b76103a53660046125c6565b610982565b3480156103b657600080fd5b5061028c6109ad565b3480156103cb57600080fd5b506103336109bb565b3480156103e057600080fd5b50610333610a0e565b3480156103f557600080fd5b506103336104043660046124d8565b610a7c565b34801561041557600080fd5b506102b7610424366004612715565b610a97565b34801561043557600080fd5b506103336104443660046126cf565b610aad565b34801561045557600080fd5b506102b7610af8565b34801561046a57600080fd5b50610306610479366004612715565b610afd565b34801561048a57600080fd5b506102d9610b25565b34801561049f57600080fd5b506103336104ae3660046125c6565b610b86565b3480156104bf57600080fd5b506102b76104ce36600461248c565b610c34565b3480156104df57600080fd5b50610333610c7d565b3480156104f457600080fd5b5061028c61050336600461248c565b610d06565b34801561051457600080fd5b506102b7610d90565b34801561052957600080fd5b5061053d61053836600461248c565b610d9b565b60405161029991906127f8565b610333610e4f565b34801561055e57600080fd5b506102b7610fbc565b34801561057357600080fd5b50610306610fc2565b34801561058857600080fd5b506102d9610fd1565b34801561059d57600080fd5b5061028c6105ac36600461248c565b611032565b3480156105bd57600080fd5b506102d9611047565b3480156105d257600080fd5b506103336105e136600461258c565b6110d5565b3480156105f257600080fd5b506103336106013660046126cf565b6111a3565b34801561061257600080fd5b50610333610621366004612513565b611218565b34801561063257600080fd5b50610333611257565b34801561064757600080fd5b506102d9610656366004612715565b6112de565b34801561066757600080fd5b506102d9610676366004612715565b611422565b34801561068757600080fd5b5061028c6106963660046125ef565b6114dc565b3480156106a757600080fd5b5061028c6106b63660046124a6565b611557565b3480156106c757600080fd5b5061028c611585565b6103336106de366004612715565b61158e565b3480156106ef57600080fd5b506103336106fe36600461248c565b61167b565b34801561070f57600080fd5b506102d961173c565b610333610726366004612715565b611797565b34801561073757600080fd5b5061033361189f565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b611e6181565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a826118fb565b61082f5760405162461bcd60e51b815260040161082690612df0565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085682610afd565b9050806001600160a01b0316836001600160a01b0316141561088a5760405162461bcd60e51b815260040161082690612f4c565b806001600160a01b031661089c611908565b6001600160a01b031614806108b857506108b8816106b6611908565b6108d45760405162461bcd60e51b815260040161082690612c5a565b6108de838361190c565b505050565b6108eb611908565b6001600160a01b03166108fc610fc2565b6001600160a01b0316146109225760405162461bcd60e51b815260040161082690612e7f565b805161093590600b906020840190612382565b5050565b6000610945600261197a565b905090565b61095b610955611908565b82611985565b6109775760405162461bcd60e51b81526004016108269061302d565b6108de838383611a0a565b6001600160a01b03821660009081526001602052604081206109a49083611b18565b90505b92915050565b600f54610100900460ff1681565b6109c3611908565b6001600160a01b03166109d4610fc2565b6001600160a01b0316146109fa5760405162461bcd60e51b815260040161082690612e7f565b600f805460ff19811660ff90911615179055565b610a16611908565b6001600160a01b0316610a27610fc2565b6001600160a01b031614610a4d5760405162461bcd60e51b815260040161082690612e7f565b6040514790339082156108fc029083906000818181858888f19350505050158015610935573d6000803e3d6000fd5b6108de83838360405180602001604052806000815250611218565b600080610aa5600284611b24565b509392505050565b610ab5611908565b6001600160a01b0316610ac6610fc2565b6001600160a01b031614610aec5760405162461bcd60e51b815260040161082690612e7f565b610af581611b40565b50565b601481565b60006109a7826040518060600160405280602981526020016131636029913960029190611b53565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f55780601f106107ca576101008083540402835291602001916107f5565b610b8e611908565b6001600160a01b0316610b9f610fc2565b6001600160a01b031614610bc55760405162461bcd60e51b815260040161082690612e7f565b6000610bcf610939565b9050600082118015610be357506010548211155b610bff5760405162461bcd60e51b815260040161082690612a2c565b60005b82811015610c1e57610c1684828401611b6a565b600101610c02565b50601054610c2c9083611b84565b601055505050565b60006001600160a01b038216610c5c5760405162461bcd60e51b815260040161082690612cb7565b6001600160a01b03821660009081526001602052604090206109a79061197a565b610c85611908565b6001600160a01b0316610c96610fc2565b6001600160a01b031614610cbc5760405162461bcd60e51b815260040161082690612e7f565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6000610d10611908565b6001600160a01b0316610d21610fc2565b6001600160a01b031614610d475760405162461bcd60e51b815260040161082690612e7f565b6001600160a01b0382166000908152600e602052604090205460ff1661075e57506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b66c52cf4b908c00081565b60606000610da883610c34565b905080610dc557505060408051600081526020810190915261075e565b60008167ffffffffffffffff81118015610dde57600080fd5b50604051908082528060200260200182016040528015610e08578160200160208202803683370190505b50905060005b82811015610e3f57610e208582610982565b828281518110610e2c57fe5b6020908102919091010152600101610e0e565b50915061075e9050565b50919050565b610e57611908565b6001600160a01b0316610e68610fc2565b6001600160a01b031614610e8e5760405162461bcd60e51b815260040161082690612e7f565b4780610e9957600080fd5b610ecc733057313c83eb036b631ab87422697d569320ee2c610ec76064610ec1856008611bac565b90611be6565b611c18565b610ef4731b3637900285168adabe6ed458bdeff1e4548ad9610ec76064610ec1856013611bac565b610f1c73bc78e58c65a58c04b42bcb1e35a1c07f2057bc04610ec76064610ec185601c611bac565b610f44730f53045a4b50b269954cae726cfdb03c9aa73d11610ec76064610ec1856012611bac565b610f6c73c27f2f8adf67f8bce6b3a1db5192ff3ac845cac0610ec76064610ec1856012611bac565b610f94731e82e5ff137d4e0ecf3589e9fb03428155ffbfd5610ec76064610ec1856004611bac565b610af573dbbf29ef198b106408c70afa8d67a8d39146f1d3610ec76064610ec1856005611bac565b60105481565b600a546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f55780601f106107ca576101008083540402835291602001916107f5565b600e6020526000908152604090205460ff1681565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110cd5780601f106110a2576101008083540402835291602001916110cd565b820191906000526020600020905b8154815290600101906020018083116110b057829003601f168201915b505050505081565b6110dd611908565b6001600160a01b0316826001600160a01b0316141561110e5760405162461bcd60e51b815260040161082690612aa5565b806005600061111b611908565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561115f611908565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611197919061283c565b60405180910390a35050565b6111ab611908565b6001600160a01b03166111bc610fc2565b6001600160a01b0316146111e25760405162461bcd60e51b815260040161082690612e7f565b600d5460ff16156112055760405162461bcd60e51b815260040161082690612fd3565b805161093590600c906020840190612382565b611229611223611908565b83611985565b6112455760405162461bcd60e51b81526004016108269061302d565b61125184848484611c94565b50505050565b61125f611908565b6001600160a01b0316611270610fc2565b6001600160a01b0316146112965760405162461bcd60e51b815260040161082690612e7f565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0906112d490600c9061285a565b60405180910390a1565b60606112e9826118fb565b6113055760405162461bcd60e51b815260040161082690612efd565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156113985780601f1061136d57610100808354040283529160200191611398565b820191906000526020600020905b81548152906001019060200180831161137b57829003601f168201915b5050505050905060006113a9610b25565b90508051600014156113bd5750905061075e565b8151156113ef5780826040516020016113d7929190612775565b6040516020818303038152906040529250505061075e565b806113f985611cc7565b60405160200161140a929190612775565b60405160208183030381529060405292505050919050565b606061142c610939565b821061144a5760405162461bcd60e51b815260040161082690612d01565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156114d05780601f106114a5576101008083540402835291602001916114d0565b820191906000526020600020905b8154815290600101906020018083116114b357829003601f168201915b50505050509050919050565b60006114e6611908565b6001600160a01b03166114f7610fc2565b6001600160a01b03161461151d5760405162461bcd60e51b815260040161082690612e7f565b60005b8251811015610e495761154583828151811061153857fe5b6020026020010151610d06565b1561154f57600191505b600101611520565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b600f5460ff166115b05760405162461bcd60e51b815260040161082690612e3c565b6000811180156115c1575060148111155b6115dd5760405162461bcd60e51b815260040161082690612c19565b611e616115f2826115ec610939565b90611da2565b11156116105760405162461bcd60e51b815260040161082690612b4a565b61162166c52cf4b908c00082611bac565b3410156116405760405162461bcd60e51b815260040161082690612adc565b60005b81811015610935576000611655610939565b9050611e61611662610939565b1015611672576116723382611b6a565b50600101611643565b611683611908565b6001600160a01b0316611694610fc2565b6001600160a01b0316146116ba5760405162461bcd60e51b815260040161082690612e7f565b6001600160a01b0381166116e05760405162461bcd60e51b815260040161082690612978565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110cd5780601f106110a2576101008083540402835291602001916110cd565b336000908152600e602052604090205460ff166117b357600080fd5b600f54610100900460ff166117da5760405162461bcd60e51b815260040161082690612f8d565b6000811180156117eb575060148111155b6118075760405162461bcd60e51b815260040161082690612c19565b611e61611816826115ec610939565b11156118345760405162461bcd60e51b815260040161082690612b4a565b61184566c52cf4b908c00082611bac565b3410156118645760405162461bcd60e51b815260040161082690612adc565b60005b81811015610935576000611879610939565b9050611e61611886610939565b1015611896576118963382611b6a565b50600101611867565b6118a7611908565b6001600160a01b03166118b8610fc2565b6001600160a01b0316146118de5760405162461bcd60e51b815260040161082690612e7f565b600f805461ff001981166101009182900460ff1615909102179055565b60006109a7600283611dc7565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061194182610afd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006109a782611dd3565b6000611990826118fb565b6119ac5760405162461bcd60e51b815260040161082690612b96565b60006119b783610afd565b9050806001600160a01b0316846001600160a01b031614806119f25750836001600160a01b03166119e7846107ff565b6001600160a01b0316145b80611a025750611a028185611557565b949350505050565b826001600160a01b0316611a1d82610afd565b6001600160a01b031614611a435760405162461bcd60e51b815260040161082690612eb4565b6001600160a01b038216611a695760405162461bcd60e51b815260040161082690612a61565b611a748383836108de565b611a7f60008261190c565b6001600160a01b0383166000908152600160205260409020611aa19082611dd7565b506001600160a01b0382166000908152600160205260409020611ac49082611de3565b50611ad160028284611def565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006109a48383611e05565b6000808080611b338686611e4a565b9097909650945050505050565b8051610935906009906020840190612382565b6000611b60848484611ea6565b90505b9392505050565b610935828260405180602001604052806000815250611f05565b600082821115611ba65760405162461bcd60e51b815260040161082690612b13565b50900390565b600082611bbb575060006109a7565b82820282848281611bc857fe5b04146109a45760405162461bcd60e51b815260040161082690612daf565b6000808211611c075760405162461bcd60e51b815260040161082690612be2565b818381611c1057fe5b049392505050565b6000826001600160a01b031682604051611c31906127a4565b60006040518083038185875af1925050503d8060008114611c6e576040519150601f19603f3d011682016040523d82523d6000602084013e611c73565b606091505b50509050806108de5760405162461bcd60e51b815260040161082690613003565b611c9f848484611a0a565b611cab84848484611f38565b6112515760405162461bcd60e51b815260040161082690612926565b606081611cec57506040805180820190915260018152600360fc1b602082015261075e565b8160005b8115611d0457600101600a82049150611cf0565b60008167ffffffffffffffff81118015611d1d57600080fd5b506040519080825280601f01601f191660200182016040528015611d48576020820181803683370190505b50859350905060001982015b8315611d9957600a840660300160f81b82828060019003935081518110611d7757fe5b60200101906001600160f81b031916908160001a905350600a84049350611d54565b50949350505050565b6000828201838110156109a45760405162461bcd60e51b8152600401610826906129f5565b60006109a48383612017565b5490565b60006109a4838361202f565b60006109a483836120f5565b6000611b6084846001600160a01b03851661213f565b81546000908210611e285760405162461bcd60e51b8152600401610826906128e4565b826000018281548110611e3757fe5b9060005260206000200154905092915050565b815460009081908310611e6f5760405162461bcd60e51b815260040161082690612d38565b6000846000018481548110611e8057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611ed65760405162461bcd60e51b81526004016108269190612847565b50846000016001820381548110611ee957fe5b9060005260206000209060020201600101549150509392505050565b611f0f83836121d6565b611f1c6000848484611f38565b6108de5760405162461bcd60e51b815260040161082690612926565b6000611f4c846001600160a01b031661229a565b611f5857506001611a02565b6000611fe0630a85bd0160e11b611f6d611908565b888787604051602401611f8394939291906127bb565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613131603291396001600160a01b03881691906122a0565b9050600081806020019051810190611ff891906126b3565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b600081815260018301602052604081205480156120eb578354600019808301919081019060009087908390811061206257fe5b906000526020600020015490508087600001848154811061207f57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806120af57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506109a7565b60009150506109a7565b60006121018383612017565b612137575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109a7565b5060006109a7565b6000828152600184016020526040812054806121a4575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611b63565b828560000160018303815481106121b757fe5b9060005260206000209060020201600101819055506000915050611b63565b6001600160a01b0382166121fc5760405162461bcd60e51b815260040161082690612d7a565b612205816118fb565b156122225760405162461bcd60e51b8152600401610826906129be565b61222e600083836108de565b6001600160a01b03821660009081526001602052604090206122509082611de3565b5061225d60028284611def565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611b608484600085856122b48561229a565b6122d05760405162461bcd60e51b81526004016108269061307e565b600080866001600160a01b031685876040516122ec9190612759565b60006040518083038185875af1925050503d8060008114612329576040519150601f19603f3d011682016040523d82523d6000602084013e61232e565b606091505b509150915061233e828286612349565b979650505050505050565b60608315612358575081611b63565b8251156123685782518084602001fd5b8160405162461bcd60e51b81526004016108269190612847565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826123b857600085556123fe565b82601f106123d157805160ff19168380011785556123fe565b828001600101855582156123fe579182015b828111156123fe5782518255916020019190600101906123e3565b5061240a92915061240e565b5090565b5b8082111561240a576000815560010161240f565b600067ffffffffffffffff83111561243757fe5b61244a601f8401601f19166020016130be565b905082815283838301111561245e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461075e57600080fd5b60006020828403121561249d578081fd5b6109a482612475565b600080604083850312156124b8578081fd5b6124c183612475565b91506124cf60208401612475565b90509250929050565b6000806000606084860312156124ec578081fd5b6124f584612475565b925061250360208501612475565b9150604084013590509250925092565b60008060008060808587031215612528578081fd5b61253185612475565b935061253f60208601612475565b925060408501359150606085013567ffffffffffffffff811115612561578182fd5b8501601f81018713612571578182fd5b61258087823560208401612423565b91505092959194509250565b6000806040838503121561259e578182fd5b6125a783612475565b9150602083013580151581146125bb578182fd5b809150509250929050565b600080604083850312156125d8578182fd5b6125e183612475565b946020939093013593505050565b60006020808385031215612601578182fd5b823567ffffffffffffffff80821115612618578384fd5b818501915085601f83011261262b578384fd5b81358181111561263757fe5b83810291506126478483016130be565b8181528481019084860184860187018a1015612661578788fd5b8795505b8386101561268a5761267681612475565b835260019590950194918601918601612665565b5098975050505050505050565b6000602082840312156126a8578081fd5b81356109a48161311a565b6000602082840312156126c4578081fd5b81516109a48161311a565b6000602082840312156126e0578081fd5b813567ffffffffffffffff8111156126f6578182fd5b8201601f81018413612706578182fd5b611a0284823560208401612423565b600060208284031215612726578081fd5b5035919050565b600081518084526127458160208601602086016130ee565b601f01601f19169290920160200192915050565b6000825161276b8184602087016130ee565b9190910192915050565b600083516127878184602088016130ee565b83519083019061279b8183602088016130ee565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ee9083018461272d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561283057835183529284019291840191600101612814565b50909695505050505050565b901515815260200190565b6000602082526109a4602083018461272d565b60006020808301818452828554600180821660008114612881576001811461289f576128d7565b60028304607f16855260ff19831660408901526060880193506128d7565b600283048086526128af8a6130e2565b885b828110156128cd5781548b8201604001529084019088016128b1565b8a01604001955050505b5091979650505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201526b206f6620556e69636f726e7360a01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6040820152606560f81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252601d908201527f43484f4f5345204120554e49434f524e2057495448494e2052414e4745000000604082015260600190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f53616c65206d7573742062652061637469766520746f206d696e7420556e696360408201526237b93760e91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526026908201527f50726573616c65206d7573742062652061637469766520746f206d696e7420556040820152653734b1b7b93760d11b606082015260800190565b602080825260169082015275131a58d95b9cd948185b1c9958591e481b1bd8dad95960521b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff811182821017156130da57fe5b604052919050565b60009081526020902090565b60005b838110156131095781810151838201526020016130f1565b838111156112515750506000910152565b6001600160e01b031981168114610af557600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212206e366e37cf07f29a1dece6fb1a86878d6949b99a36288279866d62727f833aa364736f6c63430007060033
Deployed Bytecode
0x6080604052600436106102675760003560e01c8063808274c011610144578063bf4702fc116100b6578063eb8d24441161007a578063eb8d2444146106bb578063f26c738e146106d0578063f2fde38b146106e3578063f6a00f1d14610703578063f759867a14610718578063f81227d41461072b57610267565b8063bf4702fc14610626578063c87b56dd1461063b578063d9b137b21461065b578063e2ec6ec31461067b578063e985e9c51461069b57610267565b806395d89b411161010857806395d89b411461057c5780639b19251a146105915780639c3e72bd146105b1578063a22cb465146105c6578063b09904b5146105e6578063b88d4fde1461060657610267565b8063808274c0146105085780638462151c1461051d578063853828b61461054a57806389247305146105525780638da5cb5b1461056757610267565b80633ccfd60b116101dd5780636352211e116101a15780636352211e1461045e5780636c0360eb1461047e5780636dcb66a01461049357806370a08231146104b3578063715018a6146104d35780637b9417c8146104e857610267565b80633ccfd60b146103d457806342842e0e146103e95780634f6ccce71461040957806355f804b3146104295780636322d7711461044957610267565b8063109695231161022f578063109695231461033557806318160ddd1461035557806323b872dd1461036a5780632f745c591461038a57806330f72cd4146103aa57806334918dfd146103bf57610267565b806301ffc9a71461026c57806304db5e44146102a257806306fdde03146102c4578063081812fc146102e6578063095ea7b314610313575b600080fd5b34801561027857600080fd5b5061028c610287366004612697565b610740565b604051610299919061283c565b60405180910390f35b3480156102ae57600080fd5b506102b7610763565b60405161029991906130b5565b3480156102d057600080fd5b506102d9610769565b6040516102999190612847565b3480156102f257600080fd5b50610306610301366004612715565b6107ff565b60405161029991906127a7565b34801561031f57600080fd5b5061033361032e3660046125c6565b61084b565b005b34801561034157600080fd5b506103336103503660046126cf565b6108e3565b34801561036157600080fd5b506102b7610939565b34801561037657600080fd5b506103336103853660046124d8565b61094a565b34801561039657600080fd5b506102b76103a53660046125c6565b610982565b3480156103b657600080fd5b5061028c6109ad565b3480156103cb57600080fd5b506103336109bb565b3480156103e057600080fd5b50610333610a0e565b3480156103f557600080fd5b506103336104043660046124d8565b610a7c565b34801561041557600080fd5b506102b7610424366004612715565b610a97565b34801561043557600080fd5b506103336104443660046126cf565b610aad565b34801561045557600080fd5b506102b7610af8565b34801561046a57600080fd5b50610306610479366004612715565b610afd565b34801561048a57600080fd5b506102d9610b25565b34801561049f57600080fd5b506103336104ae3660046125c6565b610b86565b3480156104bf57600080fd5b506102b76104ce36600461248c565b610c34565b3480156104df57600080fd5b50610333610c7d565b3480156104f457600080fd5b5061028c61050336600461248c565b610d06565b34801561051457600080fd5b506102b7610d90565b34801561052957600080fd5b5061053d61053836600461248c565b610d9b565b60405161029991906127f8565b610333610e4f565b34801561055e57600080fd5b506102b7610fbc565b34801561057357600080fd5b50610306610fc2565b34801561058857600080fd5b506102d9610fd1565b34801561059d57600080fd5b5061028c6105ac36600461248c565b611032565b3480156105bd57600080fd5b506102d9611047565b3480156105d257600080fd5b506103336105e136600461258c565b6110d5565b3480156105f257600080fd5b506103336106013660046126cf565b6111a3565b34801561061257600080fd5b50610333610621366004612513565b611218565b34801561063257600080fd5b50610333611257565b34801561064757600080fd5b506102d9610656366004612715565b6112de565b34801561066757600080fd5b506102d9610676366004612715565b611422565b34801561068757600080fd5b5061028c6106963660046125ef565b6114dc565b3480156106a757600080fd5b5061028c6106b63660046124a6565b611557565b3480156106c757600080fd5b5061028c611585565b6103336106de366004612715565b61158e565b3480156106ef57600080fd5b506103336106fe36600461248c565b61167b565b34801561070f57600080fd5b506102d961173c565b610333610726366004612715565b611797565b34801561073757600080fd5b5061033361189f565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b611e6181565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a826118fb565b61082f5760405162461bcd60e51b815260040161082690612df0565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085682610afd565b9050806001600160a01b0316836001600160a01b0316141561088a5760405162461bcd60e51b815260040161082690612f4c565b806001600160a01b031661089c611908565b6001600160a01b031614806108b857506108b8816106b6611908565b6108d45760405162461bcd60e51b815260040161082690612c5a565b6108de838361190c565b505050565b6108eb611908565b6001600160a01b03166108fc610fc2565b6001600160a01b0316146109225760405162461bcd60e51b815260040161082690612e7f565b805161093590600b906020840190612382565b5050565b6000610945600261197a565b905090565b61095b610955611908565b82611985565b6109775760405162461bcd60e51b81526004016108269061302d565b6108de838383611a0a565b6001600160a01b03821660009081526001602052604081206109a49083611b18565b90505b92915050565b600f54610100900460ff1681565b6109c3611908565b6001600160a01b03166109d4610fc2565b6001600160a01b0316146109fa5760405162461bcd60e51b815260040161082690612e7f565b600f805460ff19811660ff90911615179055565b610a16611908565b6001600160a01b0316610a27610fc2565b6001600160a01b031614610a4d5760405162461bcd60e51b815260040161082690612e7f565b6040514790339082156108fc029083906000818181858888f19350505050158015610935573d6000803e3d6000fd5b6108de83838360405180602001604052806000815250611218565b600080610aa5600284611b24565b509392505050565b610ab5611908565b6001600160a01b0316610ac6610fc2565b6001600160a01b031614610aec5760405162461bcd60e51b815260040161082690612e7f565b610af581611b40565b50565b601481565b60006109a7826040518060600160405280602981526020016131636029913960029190611b53565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f55780601f106107ca576101008083540402835291602001916107f5565b610b8e611908565b6001600160a01b0316610b9f610fc2565b6001600160a01b031614610bc55760405162461bcd60e51b815260040161082690612e7f565b6000610bcf610939565b9050600082118015610be357506010548211155b610bff5760405162461bcd60e51b815260040161082690612a2c565b60005b82811015610c1e57610c1684828401611b6a565b600101610c02565b50601054610c2c9083611b84565b601055505050565b60006001600160a01b038216610c5c5760405162461bcd60e51b815260040161082690612cb7565b6001600160a01b03821660009081526001602052604090206109a79061197a565b610c85611908565b6001600160a01b0316610c96610fc2565b6001600160a01b031614610cbc5760405162461bcd60e51b815260040161082690612e7f565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6000610d10611908565b6001600160a01b0316610d21610fc2565b6001600160a01b031614610d475760405162461bcd60e51b815260040161082690612e7f565b6001600160a01b0382166000908152600e602052604090205460ff1661075e57506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b66c52cf4b908c00081565b60606000610da883610c34565b905080610dc557505060408051600081526020810190915261075e565b60008167ffffffffffffffff81118015610dde57600080fd5b50604051908082528060200260200182016040528015610e08578160200160208202803683370190505b50905060005b82811015610e3f57610e208582610982565b828281518110610e2c57fe5b6020908102919091010152600101610e0e565b50915061075e9050565b50919050565b610e57611908565b6001600160a01b0316610e68610fc2565b6001600160a01b031614610e8e5760405162461bcd60e51b815260040161082690612e7f565b4780610e9957600080fd5b610ecc733057313c83eb036b631ab87422697d569320ee2c610ec76064610ec1856008611bac565b90611be6565b611c18565b610ef4731b3637900285168adabe6ed458bdeff1e4548ad9610ec76064610ec1856013611bac565b610f1c73bc78e58c65a58c04b42bcb1e35a1c07f2057bc04610ec76064610ec185601c611bac565b610f44730f53045a4b50b269954cae726cfdb03c9aa73d11610ec76064610ec1856012611bac565b610f6c73c27f2f8adf67f8bce6b3a1db5192ff3ac845cac0610ec76064610ec1856012611bac565b610f94731e82e5ff137d4e0ecf3589e9fb03428155ffbfd5610ec76064610ec1856004611bac565b610af573dbbf29ef198b106408c70afa8d67a8d39146f1d3610ec76064610ec1856005611bac565b60105481565b600a546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107f55780601f106107ca576101008083540402835291602001916107f5565b600e6020526000908152604090205460ff1681565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110cd5780601f106110a2576101008083540402835291602001916110cd565b820191906000526020600020905b8154815290600101906020018083116110b057829003601f168201915b505050505081565b6110dd611908565b6001600160a01b0316826001600160a01b0316141561110e5760405162461bcd60e51b815260040161082690612aa5565b806005600061111b611908565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561115f611908565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611197919061283c565b60405180910390a35050565b6111ab611908565b6001600160a01b03166111bc610fc2565b6001600160a01b0316146111e25760405162461bcd60e51b815260040161082690612e7f565b600d5460ff16156112055760405162461bcd60e51b815260040161082690612fd3565b805161093590600c906020840190612382565b611229611223611908565b83611985565b6112455760405162461bcd60e51b81526004016108269061302d565b61125184848484611c94565b50505050565b61125f611908565b6001600160a01b0316611270610fc2565b6001600160a01b0316146112965760405162461bcd60e51b815260040161082690612e7f565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0906112d490600c9061285a565b60405180910390a1565b60606112e9826118fb565b6113055760405162461bcd60e51b815260040161082690612efd565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156113985780601f1061136d57610100808354040283529160200191611398565b820191906000526020600020905b81548152906001019060200180831161137b57829003601f168201915b5050505050905060006113a9610b25565b90508051600014156113bd5750905061075e565b8151156113ef5780826040516020016113d7929190612775565b6040516020818303038152906040529250505061075e565b806113f985611cc7565b60405160200161140a929190612775565b60405160208183030381529060405292505050919050565b606061142c610939565b821061144a5760405162461bcd60e51b815260040161082690612d01565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156114d05780601f106114a5576101008083540402835291602001916114d0565b820191906000526020600020905b8154815290600101906020018083116114b357829003601f168201915b50505050509050919050565b60006114e6611908565b6001600160a01b03166114f7610fc2565b6001600160a01b03161461151d5760405162461bcd60e51b815260040161082690612e7f565b60005b8251811015610e495761154583828151811061153857fe5b6020026020010151610d06565b1561154f57600191505b600101611520565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b600f5460ff166115b05760405162461bcd60e51b815260040161082690612e3c565b6000811180156115c1575060148111155b6115dd5760405162461bcd60e51b815260040161082690612c19565b611e616115f2826115ec610939565b90611da2565b11156116105760405162461bcd60e51b815260040161082690612b4a565b61162166c52cf4b908c00082611bac565b3410156116405760405162461bcd60e51b815260040161082690612adc565b60005b81811015610935576000611655610939565b9050611e61611662610939565b1015611672576116723382611b6a565b50600101611643565b611683611908565b6001600160a01b0316611694610fc2565b6001600160a01b0316146116ba5760405162461bcd60e51b815260040161082690612e7f565b6001600160a01b0381166116e05760405162461bcd60e51b815260040161082690612978565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600b805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156110cd5780601f106110a2576101008083540402835291602001916110cd565b336000908152600e602052604090205460ff166117b357600080fd5b600f54610100900460ff166117da5760405162461bcd60e51b815260040161082690612f8d565b6000811180156117eb575060148111155b6118075760405162461bcd60e51b815260040161082690612c19565b611e61611816826115ec610939565b11156118345760405162461bcd60e51b815260040161082690612b4a565b61184566c52cf4b908c00082611bac565b3410156118645760405162461bcd60e51b815260040161082690612adc565b60005b81811015610935576000611879610939565b9050611e61611886610939565b1015611896576118963382611b6a565b50600101611867565b6118a7611908565b6001600160a01b03166118b8610fc2565b6001600160a01b0316146118de5760405162461bcd60e51b815260040161082690612e7f565b600f805461ff001981166101009182900460ff1615909102179055565b60006109a7600283611dc7565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061194182610afd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006109a782611dd3565b6000611990826118fb565b6119ac5760405162461bcd60e51b815260040161082690612b96565b60006119b783610afd565b9050806001600160a01b0316846001600160a01b031614806119f25750836001600160a01b03166119e7846107ff565b6001600160a01b0316145b80611a025750611a028185611557565b949350505050565b826001600160a01b0316611a1d82610afd565b6001600160a01b031614611a435760405162461bcd60e51b815260040161082690612eb4565b6001600160a01b038216611a695760405162461bcd60e51b815260040161082690612a61565b611a748383836108de565b611a7f60008261190c565b6001600160a01b0383166000908152600160205260409020611aa19082611dd7565b506001600160a01b0382166000908152600160205260409020611ac49082611de3565b50611ad160028284611def565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006109a48383611e05565b6000808080611b338686611e4a565b9097909650945050505050565b8051610935906009906020840190612382565b6000611b60848484611ea6565b90505b9392505050565b610935828260405180602001604052806000815250611f05565b600082821115611ba65760405162461bcd60e51b815260040161082690612b13565b50900390565b600082611bbb575060006109a7565b82820282848281611bc857fe5b04146109a45760405162461bcd60e51b815260040161082690612daf565b6000808211611c075760405162461bcd60e51b815260040161082690612be2565b818381611c1057fe5b049392505050565b6000826001600160a01b031682604051611c31906127a4565b60006040518083038185875af1925050503d8060008114611c6e576040519150601f19603f3d011682016040523d82523d6000602084013e611c73565b606091505b50509050806108de5760405162461bcd60e51b815260040161082690613003565b611c9f848484611a0a565b611cab84848484611f38565b6112515760405162461bcd60e51b815260040161082690612926565b606081611cec57506040805180820190915260018152600360fc1b602082015261075e565b8160005b8115611d0457600101600a82049150611cf0565b60008167ffffffffffffffff81118015611d1d57600080fd5b506040519080825280601f01601f191660200182016040528015611d48576020820181803683370190505b50859350905060001982015b8315611d9957600a840660300160f81b82828060019003935081518110611d7757fe5b60200101906001600160f81b031916908160001a905350600a84049350611d54565b50949350505050565b6000828201838110156109a45760405162461bcd60e51b8152600401610826906129f5565b60006109a48383612017565b5490565b60006109a4838361202f565b60006109a483836120f5565b6000611b6084846001600160a01b03851661213f565b81546000908210611e285760405162461bcd60e51b8152600401610826906128e4565b826000018281548110611e3757fe5b9060005260206000200154905092915050565b815460009081908310611e6f5760405162461bcd60e51b815260040161082690612d38565b6000846000018481548110611e8057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611ed65760405162461bcd60e51b81526004016108269190612847565b50846000016001820381548110611ee957fe5b9060005260206000209060020201600101549150509392505050565b611f0f83836121d6565b611f1c6000848484611f38565b6108de5760405162461bcd60e51b815260040161082690612926565b6000611f4c846001600160a01b031661229a565b611f5857506001611a02565b6000611fe0630a85bd0160e11b611f6d611908565b888787604051602401611f8394939291906127bb565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613131603291396001600160a01b03881691906122a0565b9050600081806020019051810190611ff891906126b3565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b600081815260018301602052604081205480156120eb578354600019808301919081019060009087908390811061206257fe5b906000526020600020015490508087600001848154811061207f57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806120af57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506109a7565b60009150506109a7565b60006121018383612017565b612137575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109a7565b5060006109a7565b6000828152600184016020526040812054806121a4575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611b63565b828560000160018303815481106121b757fe5b9060005260206000209060020201600101819055506000915050611b63565b6001600160a01b0382166121fc5760405162461bcd60e51b815260040161082690612d7a565b612205816118fb565b156122225760405162461bcd60e51b8152600401610826906129be565b61222e600083836108de565b6001600160a01b03821660009081526001602052604090206122509082611de3565b5061225d60028284611def565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611b608484600085856122b48561229a565b6122d05760405162461bcd60e51b81526004016108269061307e565b600080866001600160a01b031685876040516122ec9190612759565b60006040518083038185875af1925050503d8060008114612329576040519150601f19603f3d011682016040523d82523d6000602084013e61232e565b606091505b509150915061233e828286612349565b979650505050505050565b60608315612358575081611b63565b8251156123685782518084602001fd5b8160405162461bcd60e51b81526004016108269190612847565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826123b857600085556123fe565b82601f106123d157805160ff19168380011785556123fe565b828001600101855582156123fe579182015b828111156123fe5782518255916020019190600101906123e3565b5061240a92915061240e565b5090565b5b8082111561240a576000815560010161240f565b600067ffffffffffffffff83111561243757fe5b61244a601f8401601f19166020016130be565b905082815283838301111561245e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461075e57600080fd5b60006020828403121561249d578081fd5b6109a482612475565b600080604083850312156124b8578081fd5b6124c183612475565b91506124cf60208401612475565b90509250929050565b6000806000606084860312156124ec578081fd5b6124f584612475565b925061250360208501612475565b9150604084013590509250925092565b60008060008060808587031215612528578081fd5b61253185612475565b935061253f60208601612475565b925060408501359150606085013567ffffffffffffffff811115612561578182fd5b8501601f81018713612571578182fd5b61258087823560208401612423565b91505092959194509250565b6000806040838503121561259e578182fd5b6125a783612475565b9150602083013580151581146125bb578182fd5b809150509250929050565b600080604083850312156125d8578182fd5b6125e183612475565b946020939093013593505050565b60006020808385031215612601578182fd5b823567ffffffffffffffff80821115612618578384fd5b818501915085601f83011261262b578384fd5b81358181111561263757fe5b83810291506126478483016130be565b8181528481019084860184860187018a1015612661578788fd5b8795505b8386101561268a5761267681612475565b835260019590950194918601918601612665565b5098975050505050505050565b6000602082840312156126a8578081fd5b81356109a48161311a565b6000602082840312156126c4578081fd5b81516109a48161311a565b6000602082840312156126e0578081fd5b813567ffffffffffffffff8111156126f6578182fd5b8201601f81018413612706578182fd5b611a0284823560208401612423565b600060208284031215612726578081fd5b5035919050565b600081518084526127458160208601602086016130ee565b601f01601f19169290920160200192915050565b6000825161276b8184602087016130ee565b9190910192915050565b600083516127878184602088016130ee565b83519083019061279b8183602088016130ee565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ee9083018461272d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561283057835183529284019291840191600101612814565b50909695505050505050565b901515815260200190565b6000602082526109a4602083018461272d565b60006020808301818452828554600180821660008114612881576001811461289f576128d7565b60028304607f16855260ff19831660408901526060880193506128d7565b600283048086526128af8a6130e2565b885b828110156128cd5781548b8201604001529084019088016128b1565b8a01604001955050505b5091979650505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201526b206f6620556e69636f726e7360a01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6040820152606560f81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252601d908201527f43484f4f5345204120554e49434f524e2057495448494e2052414e4745000000604082015260600190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f53616c65206d7573742062652061637469766520746f206d696e7420556e696360408201526237b93760e91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526026908201527f50726573616c65206d7573742062652061637469766520746f206d696e7420556040820152653734b1b7b93760d11b606082015260800190565b602080825260169082015275131a58d95b9cd948185b1c9958591e481b1bd8dad95960521b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff811182821017156130da57fe5b604052919050565b60009081526020902090565b60005b838110156131095781810151838201526020016130f1565b838111156112515750506000910152565b6001600160e01b031981168114610af557600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212206e366e37cf07f29a1dece6fb1a86878d6949b99a36288279866d62727f833aa364736f6c63430007060033
Deployed Bytecode Sourcemap
66834:6385:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10236:150;;;;;;;;;;-1:-1:-1;10236:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67398:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51521:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54307:221::-;;;;;;;;;;-1:-1:-1;54307:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53837:404::-;;;;;;;;;;-1:-1:-1;53837:404:0;;;;;:::i;:::-;;:::i;:::-;;69660:128;;;;;;;;;;-1:-1:-1;69660:128:0;;;;;:::i;:::-;;:::i;53315:211::-;;;;;;;;;;;;;:::i;55197:305::-;;;;;;;;;;-1:-1:-1;55197:305:0;;;;;:::i;:::-;;:::i;53077:162::-;;;;;;;;;;-1:-1:-1;53077:162:0;;;;;:::i;:::-;;:::i;67491:35::-;;;;;;;;;;;;;:::i;69903:89::-;;;;;;;;;;;;;:::i;68368:131::-;;;;;;;;;;;;;:::i;55573:151::-;;;;;;;;;;-1:-1:-1;55573:151:0;;;;;:::i;:::-;;:::i;53603:172::-;;;;;;;;;;-1:-1:-1;53603:172:0;;;;;:::i;:::-;;:::i;69796:99::-;;;;;;;;;;-1:-1:-1;69796:99:0;;;;;:::i;:::-;;:::i;67201:44::-;;;;;;;;;;;;;:::i;51277:177::-;;;;;;;;;;-1:-1:-1;51277:177:0;;;;;:::i;:::-;;:::i;52896:97::-;;;;;;;;;;;;;:::i;69242:410::-;;;;;;;;;;-1:-1:-1;69242:410:0;;;;;:::i;:::-;;:::i;50994:221::-;;;;;;;;;;-1:-1:-1;50994:221:0;;;;;:::i;:::-;;:::i;66232:148::-;;;;;;;;;;;;;:::i;70110:200::-;;;;;;;;;;-1:-1:-1;70110:200:0;;;;;:::i;:::-;;:::i;67122:56::-;;;;;;;;;;;;;:::i;70600:540::-;;;;;;;;;;-1:-1:-1;70600:540:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68511:530::-;;;:::i;67581:31::-;;;;;;;;;;;;;:::i;65581:87::-;;;;;;;;;;;;;:::i;51690:104::-;;;;;;;;;;;;;:::i;67258:41::-;;;;;;;;;;-1:-1:-1;67258:41:0;;;;;:::i;:::-;;:::i;67041:31::-;;;;;;;;;;;;;:::i;54600:295::-;;;;;;;;;;-1:-1:-1;54600:295:0;;;;;:::i;:::-;;:::i;71598:174::-;;;;;;;;;;-1:-1:-1;71598:174:0;;;;;:::i;:::-;;:::i;55795:285::-;;;;;;;;;;-1:-1:-1;55795:285:0;;;;;:::i;:::-;;:::i;71434:125::-;;;;;;;;;;;;;:::i;51865:792::-;;;;;;;;;;-1:-1:-1;51865:792:0;;;;;:::i;:::-;;:::i;71191:177::-;;;;;;;;;;-1:-1:-1;71191:177:0;;;;;:::i;:::-;;:::i;70320:263::-;;;;;;;;;;-1:-1:-1;70320:263:0;;;;;:::i;:::-;;:::i;54966:164::-;;;;;;;;;;-1:-1:-1;54966:164:0;;;;;:::i;:::-;;:::i;67450:32::-;;;;;;;;;;;;;:::i;71784:701::-;;;;;;:::i;:::-;;:::i;66535:244::-;;;;;;;;;;-1:-1:-1;66535:244:0;;;;;:::i;:::-;;:::i;66934:37::-;;;;;;;;;;;;;:::i;72493:723::-;;;;;;:::i;:::-;;:::i;70000:98::-;;;;;;;;;;;;;:::i;10236:150::-;-1:-1:-1;;;;;;10345:33:0;;10321:4;10345:33;;;;;;;;;;;;;10236:150;;;;:::o;67398:43::-;67437:4;67398:43;:::o;51521:100::-;51608:5;51601:12;;;;;;;;-1:-1:-1;;51601:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51575:13;;51601:12;;51608:5;;51601:12;;51608:5;51601:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51521:100;:::o;54307:221::-;54383:7;54411:16;54419:7;54411;:16::i;:::-;54403:73;;;;-1:-1:-1;;;54403:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;54496:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54496:24:0;;54307:221::o;53837:404::-;53918:13;53934:23;53949:7;53934:14;:23::i;:::-;53918:39;;53982:5;-1:-1:-1;;;;;53976:11:0;:2;-1:-1:-1;;;;;53976:11:0;;;53968:57;;;;-1:-1:-1;;;53968:57:0;;;;;;;:::i;:::-;54062:5;-1:-1:-1;;;;;54046:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;54046:21:0;;:69;;;;54071:44;54095:5;54102:12;:10;:12::i;54071:44::-;54038:161;;;;-1:-1:-1;;;54038:161:0;;;;;;;:::i;:::-;54212:21;54221:2;54225:7;54212:8;:21::i;:::-;53837:404;;;:::o;69660:128::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;69745:35;;::::1;::::0;:18:::1;::::0;:35:::1;::::0;::::1;::::0;::::1;:::i;:::-;;69660:128:::0;:::o;53315:211::-;53376:7;53497:21;:12;:19;:21::i;:::-;53490:28;;53315:211;:::o;55197:305::-;55358:41;55377:12;:10;:12::i;:::-;55391:7;55358:18;:41::i;:::-;55350:103;;;;-1:-1:-1;;;55350:103:0;;;;;;;:::i;:::-;55466:28;55476:4;55482:2;55486:7;55466:9;:28::i;53077:162::-;-1:-1:-1;;;;;53201:20:0;;53174:7;53201:20;;;:13;:20;;;;;:30;;53225:5;53201:23;:30::i;:::-;53194:37;;53077:162;;;;;:::o;67491:35::-;;;;;;;;;:::o;69903:89::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;69972:12:::1;::::0;;-1:-1:-1;;69956:28:0;::::1;69972:12;::::0;;::::1;69971:13;69956:28;::::0;;69903:89::o;68368:131::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;68463:28:::1;::::0;68431:21:::1;::::0;68463:10:::1;::::0;:28;::::1;;;::::0;68431:21;;68416:12:::1;68463:28:::0;68416:12;68463:28;68431:21;68463:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;55573:151:::0;55677:39;55694:4;55700:2;55704:7;55677:39;;;;;;;;;;;;:16;:39::i;53603:172::-;53678:7;;53720:22;:12;53736:5;53720:15;:22::i;:::-;-1:-1:-1;53698:44:0;53603:172;-1:-1:-1;;;53603:172:0:o;69796:99::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;69867:20:::1;69879:7;69867:11;:20::i;:::-;69796:99:::0;:::o;67201:44::-;67243:2;67201:44;:::o;51277:177::-;51349:7;51376:70;51393:7;51376:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52896:97::-;52977:8;52970:15;;;;;;;;-1:-1:-1;;52970:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52944:13;;52970:15;;52977:8;;52970:15;;52977:8;52970:15;;;;;;;;;;;;;;;;;;;;;;;;69242:410;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;69340:11:::1;69354:13;:11;:13::i;:::-;69340:27;;69403:1;69386:14;:18;:54;;;;;69426:14;;69408;:32;;69386:54;69378:99;;;;-1:-1:-1::0;;;69378:99:0::1;;;;;;;:::i;:::-;69493:6;69488:95;69509:14;69505:1;:18;69488:95;;;69545:26;69555:3;69569:1;69560:6;:10;69545:9;:26::i;:::-;69525:3;;69488:95;;;-1:-1:-1::0;69610:14:0::1;::::0;:34:::1;::::0;69629:14;69610:18:::1;:34::i;:::-;69593:14;:51:::0;-1:-1:-1;;;69242:410:0:o;50994:221::-;51066:7;-1:-1:-1;;;;;51094:19:0;;51086:74;;;;-1:-1:-1;;;51086:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51178:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;66232:148::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;66323:6:::1;::::0;66302:40:::1;::::0;66339:1:::1;::::0;-1:-1:-1;;;;;66323:6:0::1;::::0;66302:40:::1;::::0;66339:1;;66302:40:::1;66353:6;:19:::0;;-1:-1:-1;;;;;;66353:19:0::1;::::0;;66232:148::o;70110:200::-;70180:12;65812;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;70210:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;70205:97;;-1:-1:-1::0;;;;;;70240:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:22;;-1:-1:-1;;70240:22:0::1;70258:4;70240:22:::0;;::::1;::::0;;;70258:4;70110:200::o;67122:56::-;67161:17;67122:56;:::o;70600:540::-;70661:16;70691:18;70712:17;70722:6;70712:9;:17::i;:::-;70691:38;-1:-1:-1;70744:15:0;70740:393;;-1:-1:-1;;70821:16:0;;;70835:1;70821:16;;;;;;;;70814:23;;70740:393;70870:23;70910:10;70896:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70896:25:0;;70870:51;;70936:13;70964:130;70988:10;70980:5;:18;70964:130;;;71044:34;71064:6;71072:5;71044:19;:34::i;:::-;71028:6;71035:5;71028:13;;;;;;;;;;;;;;;;;:50;71000:7;;70964:130;;;-1:-1:-1;71115:6:0;-1:-1:-1;71108:13:0;;-1:-1:-1;71108:13:0;70740:393;70600:540;;;;:::o;68511:530::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;68588:21:::1;68628:11:::0;68620:20:::1;;;::::0;::::1;;68651:44;67682:42;68671:23;68690:3;68671:14;:7:::0;68683:1:::1;68671:11;:14::i;:::-;:18:::0;::::1;:23::i;:::-;68651:10;:44::i;:::-;68706:46;67767:42;68727:24;68747:3;68727:15;:7:::0;68739:2:::1;68727:11;:15::i;68706:46::-;68763;67852:42;68784:24;68804:3;68784:15;:7:::0;68796:2:::1;68784:11;:15::i;68763:46::-;68820;67937:42;68841:24;68861:3;68841:15;:7:::0;68853:2:::1;68841:11;:15::i;68820:46::-;68877;68022:42;68898:24;68918:3;68898:15;:7:::0;68910:2:::1;68898:11;:15::i;68877:46::-;68934:44;68106:42;68954:23;68973:3;68954:14;:7:::0;68966:1:::1;68954:11;:14::i;68934:44::-;68989;68190:42;69009:23;69028:3;69009:14;:7:::0;69021:1:::1;69009:11;:14::i;67581:31::-:0;;;;:::o;65581:87::-;65654:6;;-1:-1:-1;;;;;65654:6:0;65581:87;:::o;51690:104::-;51779:7;51772:14;;;;;;;;-1:-1:-1;;51772:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51746:13;;51772:14;;51779:7;;51772:14;;51779:7;51772:14;;;;;;;;;;;;;;;;;;;;;;;;67258:41;;;;;;;;;;;;;;;:::o;67041:31::-;;;;;;;;;;;;;;;-1:-1:-1;;67041:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54600:295::-;54715:12;:10;:12::i;:::-;-1:-1:-1;;;;;54703:24:0;:8;-1:-1:-1;;;;;54703:24:0;;;54695:62;;;;-1:-1:-1;;;54695:62:0;;;;;;;:::i;:::-;54815:8;54770:18;:32;54789:12;:10;:12::i;:::-;-1:-1:-1;;;;;54770:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;54770:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;54770:53:0;;;;;;;;;;;54854:12;:10;:12::i;:::-;-1:-1:-1;;;;;54839:48:0;;54878:8;54839:48;;;;;;:::i;:::-;;;;;;;;54600:295;;:::o;71598:174::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;71681:13:::1;::::0;::::1;;:22;71673:57;;;;-1:-1:-1::0;;;71673:57:0::1;;;;;;;:::i;:::-;71741:23:::0;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;55795:285::-:0;55927:41;55946:12;:10;:12::i;:::-;55960:7;55927:18;:41::i;:::-;55919:103;;;;-1:-1:-1;;;55919:103:0;;;;;;;:::i;:::-;56033:39;56047:4;56053:2;56057:7;56066:5;56033:13;:39::i;:::-;55795:285;;;;:::o;71434:125::-;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;71485:13:::1;:21:::0;;-1:-1:-1;;71485:21:0::1;71502:4;71485:21;::::0;;71522:29:::1;::::0;::::1;::::0;::::1;::::0;71538:12:::1;::::0;71522:29:::1;:::i;:::-;;;;;;;;71434:125::o:0;51865:792::-;51938:13;51972:16;51980:7;51972;:16::i;:::-;51964:76;;;;-1:-1:-1;;;51964:76:0;;;;;;;:::i;:::-;52053:23;52079:19;;;:10;:19;;;;;;;;52053:45;;;;;;;;;;;-1:-1:-1;;52053:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;52079:19;;52053:45;;;52079:19;52053:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52109:18;52130:9;:7;:9::i;:::-;52109:30;;52221:4;52215:18;52237:1;52215:23;52211:72;;;-1:-1:-1;52262:9:0;-1:-1:-1;52255:16:0;;52211:72;52387:23;;:27;52383:108;;52462:4;52468:9;52445:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52431:48;;;;;;52383:108;52623:4;52629:18;:7;:16;:18::i;:::-;52606:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52592:57;;;;51865:792;;;:::o;71191:177::-;71243:13;71283;:11;:13::i;:::-;71277:3;:19;71269:61;;;;-1:-1:-1;;;71269:61:0;;;;;;;:::i;:::-;71348:12;71341:19;;;;;;;;;;;;;-1:-1:-1;;71341:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;71348:12;71341:19;;71348:12;71341:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71191:177;;;:::o;70320:263::-;70402:12;65812;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;70432:9:::1;70427:147;70451:5;:12;70447:1;:16;70427:147;;;70487:31;70509:5;70515:1;70509:8;;;;;;;;;;;;;;70487:21;:31::i;:::-;70483:80;;;70545:4;70535:14;;70483:80;70465:3;;70427:147;;54966:164:::0;-1:-1:-1;;;;;55087:25:0;;;55063:4;55087:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54966:164::o;67450:32::-;;;;;;:::o;71784:701::-;71860:12;;;;71852:60;;;;-1:-1:-1;;;71852:60:0;;;;;;;:::i;:::-;71948:1;71931:14;:18;:58;;;;;67243:2;71953:14;:36;;71931:58;71923:104;;;;-1:-1:-1;;;71923:104:0;;;;;;;:::i;:::-;67437:4;72046:33;72064:14;72046:13;:11;:13::i;:::-;:17;;:33::i;:::-;:49;;72038:106;;;;-1:-1:-1;;;72038:106:0;;;;;;;:::i;:::-;72176:32;67161:17;72193:14;72176:16;:32::i;:::-;72163:9;:45;;72155:89;;;;-1:-1:-1;;;72155:89:0;;;;;;;:::i;:::-;72269:6;72265:213;72285:14;72281:1;:18;72265:213;;;72321:14;72338:13;:11;:13::i;:::-;72321:30;;67437:4;72370:13;:11;:13::i;:::-;:28;72366:101;;;72419:32;72429:10;72441:9;72419;:32::i;:::-;-1:-1:-1;72301:3:0;;72265:213;;66535:244;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66624:22:0;::::1;66616:73;;;;-1:-1:-1::0;;;66616:73:0::1;;;;;;;:::i;:::-;66726:6;::::0;66705:38:::1;::::0;-1:-1:-1;;;;;66705:38:0;;::::1;::::0;66726:6:::1;::::0;66705:38:::1;::::0;66726:6:::1;::::0;66705:38:::1;66754:6;:17:::0;;-1:-1:-1;;;;;;66754:17:0::1;-1:-1:-1::0;;;;;66754:17:0;;;::::1;::::0;;;::::1;::::0;;66535:244::o;66934:37::-;;;;;;;;;;;;;;;-1:-1:-1;;66934:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72493:723;67364:10;67354:21;;;;:9;:21;;;;;;;;67346:30;;;;;;72585:15:::1;::::0;::::1;::::0;::::1;;;72577:66;;;;-1:-1:-1::0;;;72577:66:0::1;;;;;;;:::i;:::-;72679:1;72662:14;:18;:58;;;;;67243:2;72684:14;:36;;72662:58;72654:104;;;;-1:-1:-1::0;;;72654:104:0::1;;;;;;;:::i;:::-;67437:4;72777:33;72795:14;72777:13;:11;:13::i;:33::-;:49;;72769:106;;;;-1:-1:-1::0;;;72769:106:0::1;;;;;;;:::i;:::-;72907:32;67161:17;72924:14:::0;72907:16:::1;:32::i;:::-;72894:9;:45;;72886:89;;;;-1:-1:-1::0;;;72886:89:0::1;;;;;;;:::i;:::-;73000:6;72996:213;73016:14;73012:1;:18;72996:213;;;73052:14;73069:13;:11;:13::i;:::-;73052:30;;67437:4;73101:13;:11;:13::i;:::-;:28;73097:101;;;73150:32;73160:10;73172:9;73150;:32::i;:::-;-1:-1:-1::0;73032:3:0::1;;72996:213;;70000:98:::0;65812:12;:10;:12::i;:::-;-1:-1:-1;;;;;65801:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65801:23:0;;65793:68;;;;-1:-1:-1;;;65793:68:0;;;;;;;:::i;:::-;70075:15:::1;::::0;;-1:-1:-1;;70056:34:0;::::1;70075:15;::::0;;;::::1;;;70074:16;70056:34:::0;;::::1;;::::0;;70000:98::o;57547:127::-;57612:4;57636:30;:12;57658:7;57636:21;:30::i;668:106::-;756:10;668:106;:::o;63565:192::-;63640:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63640:29:0;-1:-1:-1;;;;;63640:29:0;;;;;;;;:24;;63694:23;63640:24;63694:14;:23::i;:::-;-1:-1:-1;;;;;63685:46:0;;;;;;;;;;;63565:192;;:::o;44279:123::-;44348:7;44375:19;44383:3;44375:7;:19::i;57841:355::-;57934:4;57959:16;57967:7;57959;:16::i;:::-;57951:73;;;;-1:-1:-1;;;57951:73:0;;;;;;;:::i;:::-;58035:13;58051:23;58066:7;58051:14;:23::i;:::-;58035:39;;58104:5;-1:-1:-1;;;;;58093:16:0;:7;-1:-1:-1;;;;;58093:16:0;;:51;;;;58137:7;-1:-1:-1;;;;;58113:31:0;:20;58125:7;58113:11;:20::i;:::-;-1:-1:-1;;;;;58113:31:0;;58093:51;:94;;;;58148:39;58172:5;58179:7;58148:23;:39::i;:::-;58085:103;57841:355;-1:-1:-1;;;;57841:355:0:o;60977:599::-;61102:4;-1:-1:-1;;;;;61075:31:0;:23;61090:7;61075:14;:23::i;:::-;-1:-1:-1;;;;;61075:31:0;;61067:85;;;;-1:-1:-1;;;61067:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61189:16:0;;61181:65;;;;-1:-1:-1;;;61181:65:0;;;;;;;:::i;:::-;61259:39;61280:4;61286:2;61290:7;61259:20;:39::i;:::-;61363:29;61380:1;61384:7;61363:8;:29::i;:::-;-1:-1:-1;;;;;61405:19:0;;;;;;:13;:19;;;;;:35;;61432:7;61405:26;:35::i;:::-;-1:-1:-1;;;;;;61451:17:0;;;;;;:13;:17;;;;;:30;;61473:7;61451:21;:30::i;:::-;-1:-1:-1;61494:29:0;:12;61511:7;61520:2;61494:16;:29::i;:::-;;61560:7;61556:2;-1:-1:-1;;;;;61541:27:0;61550:4;-1:-1:-1;;;;;61541:27:0;;;;;;;;;;;60977:599;;;:::o;36070:137::-;36141:7;36176:22;36180:3;36192:5;36176:3;:22::i;44741:236::-;44821:7;;;;44881:22;44885:3;44897:5;44881:3;:22::i;:::-;44850:53;;;;-1:-1:-1;44741:236:0;-1:-1:-1;;;;;44741:236:0:o;62177:100::-;62250:19;;;;:8;;:19;;;;;:::i;46027:213::-;46134:7;46185:44;46190:3;46210;46216:12;46185:4;:44::i;:::-;46177:53;-1:-1:-1;46027:213:0;;;;;;:::o;58539:110::-;58615:26;58625:2;58629:7;58615:26;;;;;;;;;;;;:9;:26::i;14260:158::-;14318:7;14351:1;14346;:6;;14338:49;;;;-1:-1:-1;;;14338:49:0;;;;;;;:::i;:::-;-1:-1:-1;14405:5:0;;;14260:158::o;14677:220::-;14735:7;14759:6;14755:20;;-1:-1:-1;14774:1:0;14767:8;;14755:20;14798:5;;;14802:1;14798;:5;:1;14822:5;;;;;:10;14814:56;;;;-1:-1:-1;;;14814:56:0;;;;;;;:::i;15375:153::-;15433:7;15465:1;15461;:5;15453:44;;;;-1:-1:-1;;;15453:44:0;;;;;;;:::i;:::-;15519:1;15515;:5;;;;;;;15375:153;-1:-1:-1;;;15375:153:0:o;69049:181::-;69124:12;69141:8;-1:-1:-1;;;;;69141:13:0;69163:7;69141:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69123:52;;;69194:7;69186:36;;;;-1:-1:-1;;;69186:36:0;;;;;;;:::i;56962:272::-;57076:28;57086:4;57092:2;57096:7;57076:9;:28::i;:::-;57123:48;57146:4;57152:2;57156:7;57165:5;57123:22;:48::i;:::-;57115:111;;;;-1:-1:-1;;;57115:111:0;;;;;;;:::i;46491:746::-;46547:13;46768:10;46764:53;;-1:-1:-1;46795:10:0;;;;;;;;;;;;-1:-1:-1;;;46795:10:0;;;;;;46764:53;46842:5;46827:12;46883:78;46890:9;;46883:78;;46916:8;;46947:2;46939:10;;;;46883:78;;;46971:19;47003:6;46993:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46993:17:0;-1:-1:-1;47065:5:0;;-1:-1:-1;46971:39:0;-1:-1:-1;;;47037:10:0;;47081:117;47088:9;;47081:117;;47157:2;47150:4;:9;47145:2;:14;47132:29;;47114:6;47121:7;;;;;;;47114:15;;;;;;;;;;;:47;-1:-1:-1;;;;;47114:47:0;;;;;;;;-1:-1:-1;47184:2:0;47176:10;;;;47081:117;;;-1:-1:-1;47222:6:0;46491:746;-1:-1:-1;;;;46491:746:0:o;13798:179::-;13856:7;13888:5;;;13912:6;;;;13904:46;;;;-1:-1:-1;;;13904:46:0;;;;;;;:::i;44040:151::-;44124:4;44148:35;44158:3;44178;44148:9;:35::i;40858:110::-;40941:19;;40858:110::o;35157:137::-;35227:4;35251:35;35259:3;35279:5;35251:7;:35::i;34850:131::-;34917:4;34941:32;34946:3;34966:5;34941:4;:32::i;43463:185::-;43552:4;43576:64;43581:3;43601;-1:-1:-1;;;;;43615:23:0;;43576:4;:64::i;31108:204::-;31203:18;;31175:7;;31203:26;-1:-1:-1;31195:73:0;;;;-1:-1:-1;;;31195:73:0;;;;;;;:::i;:::-;31286:3;:11;;31298:5;31286:18;;;;;;;;;;;;;;;;31279:25;;31108:204;;;;:::o;41323:279::-;41427:19;;41390:7;;;;41427:27;-1:-1:-1;41419:74:0;;;;-1:-1:-1;;;41419:74:0;;;;;;;:::i;:::-;41506:22;41531:3;:12;;41544:5;41531:19;;;;;;;;;;;;;;;;;;41506:44;;41569:5;:10;;;41581:5;:12;;;41561:33;;;;;41323:279;;;;;:::o;42820:319::-;42914:7;42953:17;;;:12;;;:17;;;;;;43004:12;42989:13;42981:36;;;;-1:-1:-1;;;42981:36:0;;;;;;;;:::i;:::-;;43071:3;:12;;43095:1;43084:8;:12;43071:26;;;;;;;;;;;;;;;;;;:33;;;43064:40;;;42820:319;;;;;:::o;58876:250::-;58972:18;58978:2;58982:7;58972:5;:18::i;:::-;59009:54;59040:1;59044:2;59048:7;59057:5;59009:22;:54::i;:::-;59001:117;;;;-1:-1:-1;;;59001:117:0;;;;;;;:::i;62842:604::-;62963:4;62990:15;:2;-1:-1:-1;;;;;62990:13:0;;:15::i;:::-;62985:60;;-1:-1:-1;63029:4:0;63022:11;;62985:60;63055:23;63081:252;-1:-1:-1;;;63194:12:0;:10;:12::i;:::-;63221:4;63240:7;63262:5;63097:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;63097:181:0;;;;;;;-1:-1:-1;;;;;63097:181:0;;;;;;;;;;;63081:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63081:15:0;;;:252;:15;:252::i;:::-;63055:278;;63344:13;63371:10;63360:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;63411:26:0;-1:-1:-1;;;63411:26:0;;-1:-1:-1;;;62842:604:0;;;;;;:::o;40638:125::-;40709:4;40733:17;;;:12;;;;;:17;;;;;;:22;;;40638:125::o;28810:1544::-;28876:4;29015:19;;;:12;;;:19;;;;;;29051:15;;29047:1300;;29486:18;;-1:-1:-1;;29437:14:0;;;;29486:22;;;;29413:21;;29486:3;;:22;;29773;;;;;;;;;;;;;;29753:42;;29919:9;29890:3;:11;;29902:13;29890:26;;;;;;;;;;;;;;;;;;;:38;;;;29996:23;;;30038:1;29996:12;;;:23;;;;;;30022:17;;;29996:43;;30148:17;;29996:3;;30148:17;;;;;;;;;;;;;;;;;;;;;;30243:3;:12;;:19;30256:5;30243:19;;;;;;;;;;;30236:26;;;30286:4;30279:11;;;;;;;;29047:1300;30330:5;30323:12;;;;;28220:414;28283:4;28305:21;28315:3;28320:5;28305:9;:21::i;:::-;28300:327;;-1:-1:-1;28343:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28526:18;;28504:19;;;:12;;;:19;;;;;;:40;;;;28559:11;;28300:327;-1:-1:-1;28610:5:0;28603:12;;38138:692;38214:4;38349:17;;;:12;;;:17;;;;;;38383:13;38379:444;;-1:-1:-1;;38468:38:0;;;;;;;;;;;;;;;;;;38450:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38665:19;;38645:17;;;:12;;;:17;;;;;;;:39;38699:11;;38379:444;38779:5;38743:3;:12;;38767:1;38756:8;:12;38743:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38806:5;38799:12;;;;;59462:404;-1:-1:-1;;;;;59542:16:0;;59534:61;;;;-1:-1:-1;;;59534:61:0;;;;;;;:::i;:::-;59615:16;59623:7;59615;:16::i;:::-;59614:17;59606:58;;;;-1:-1:-1;;;59606:58:0;;;;;;;:::i;:::-;59677:45;59706:1;59710:2;59714:7;59677:20;:45::i;:::-;-1:-1:-1;;;;;59735:17:0;;;;;;:13;:17;;;;;:30;;59757:7;59735:21;:30::i;:::-;-1:-1:-1;59778:29:0;:12;59795:7;59804:2;59778:16;:29::i;:::-;-1:-1:-1;59825:33:0;;59850:7;;-1:-1:-1;;;;;59825:33:0;;;59842:1;;59825:33;;59842:1;;59825:33;59462:404;;:::o;19239:422::-;19606:20;19645:8;;;19239:422::o;22157:195::-;22260:12;22292:52;22314:6;22322:4;22328:1;22331:12;22260;23461:18;23472:6;23461:10;:18::i;:::-;23453:60;;;;-1:-1:-1;;;23453:60:0;;;;;;;:::i;:::-;23587:12;23601:23;23628:6;-1:-1:-1;;;;;23628:11:0;23648:5;23656:4;23628:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23586:75;;;;23679:52;23697:7;23706:10;23718:12;23679:17;:52::i;:::-;23672:59;23209:530;-1:-1:-1;;;;;;;23209:530:0:o;25749:742::-;25864:12;25893:7;25889:595;;;-1:-1:-1;25924:10:0;25917:17;;25889:595;26038:17;;:21;26034:439;;26301:10;26295:17;26362:15;26349:10;26345:2;26341:19;26334:44;26249:148;26444:12;26437:20;;-1:-1:-1;;;26437:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:400:1;;114:18;106:6;103:30;100:2;;;136:9;100:2;165:58;211:2;188:17;;-1:-1:-1;;184:31:1;217:4;180:42;165:58;:::i;:::-;156:67;;246:6;239:5;232:21;286:3;277:6;272:3;268:16;265:25;262:2;;;303:1;300;293:12;262:2;352:6;347:3;340:4;333:5;329:16;316:43;406:1;399:4;390:6;383:5;379:18;375:29;368:40;90:324;;;;;:::o;419:175::-;489:20;;-1:-1:-1;;;;;538:31:1;;528:42;;518:2;;584:1;581;574:12;599:198;;711:2;699:9;690:7;686:23;682:32;679:2;;;732:6;724;717:22;679:2;760:31;781:9;760:31;:::i;802:274::-;;;931:2;919:9;910:7;906:23;902:32;899:2;;;952:6;944;937:22;899:2;980:31;1001:9;980:31;:::i;:::-;970:41;;1030:40;1066:2;1055:9;1051:18;1030:40;:::i;:::-;1020:50;;889:187;;;;;:::o;1081:342::-;;;;1227:2;1215:9;1206:7;1202:23;1198:32;1195:2;;;1248:6;1240;1233:22;1195:2;1276:31;1297:9;1276:31;:::i;:::-;1266:41;;1326:40;1362:2;1351:9;1347:18;1326:40;:::i;:::-;1316:50;;1413:2;1402:9;1398:18;1385:32;1375:42;;1185:238;;;;;:::o;1428:702::-;;;;;1600:3;1588:9;1579:7;1575:23;1571:33;1568:2;;;1622:6;1614;1607:22;1568:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1842:2;1831:9;1827:18;1814:32;1869:18;1861:6;1858:30;1855:2;;;1906:6;1898;1891:22;1855:2;1934:22;;1987:4;1979:13;;1975:27;-1:-1:-1;1965:2:1;;2021:6;2013;2006:22;1965:2;2049:75;2116:7;2111:2;2098:16;2093:2;2089;2085:11;2049:75;:::i;:::-;2039:85;;;1558:572;;;;;;;:::o;2135:369::-;;;2261:2;2249:9;2240:7;2236:23;2232:32;2229:2;;;2282:6;2274;2267:22;2229:2;2310:31;2331:9;2310:31;:::i;:::-;2300:41;;2391:2;2380:9;2376:18;2363:32;2438:5;2431:13;2424:21;2417:5;2414:32;2404:2;;2465:6;2457;2450:22;2404:2;2493:5;2483:15;;;2219:285;;;;;:::o;2509:266::-;;;2638:2;2626:9;2617:7;2613:23;2609:32;2606:2;;;2659:6;2651;2644:22;2606:2;2687:31;2708:9;2687:31;:::i;:::-;2677:41;2765:2;2750:18;;;;2737:32;;-1:-1:-1;;;2596:179:1:o;2780:1001::-;;2895:2;2938;2926:9;2917:7;2913:23;2909:32;2906:2;;;2959:6;2951;2944:22;2906:2;3004:9;2991:23;3033:18;3074:2;3066:6;3063:14;3060:2;;;3095:6;3087;3080:22;3060:2;3138:6;3127:9;3123:22;3113:32;;3183:7;3176:4;3172:2;3168:13;3164:27;3154:2;;3210:6;3202;3195:22;3154:2;3251;3238:16;3273:2;3269;3266:10;3263:2;;;3279:9;3263:2;3317;3313;3309:11;3299:21;;3340:27;3363:2;3359;3355:11;3340:27;:::i;:::-;3401:15;;;3432:12;;;;3464:11;;;3494;;;3490:20;;3487:33;-1:-1:-1;3484:2:1;;;3538:6;3530;3523:22;3484:2;3565:6;3556:15;;3580:171;3594:2;3591:1;3588:9;3580:171;;;3651:25;3672:3;3651:25;:::i;:::-;3639:38;;3612:1;3605:9;;;;;3697:12;;;;3729;;3580:171;;;-1:-1:-1;3770:5:1;2875:906;-1:-1:-1;;;;;;;;2875:906:1:o;3786:257::-;;3897:2;3885:9;3876:7;3872:23;3868:32;3865:2;;;3918:6;3910;3903:22;3865:2;3962:9;3949:23;3981:32;4007:5;3981:32;:::i;4048:261::-;;4170:2;4158:9;4149:7;4145:23;4141:32;4138:2;;;4191:6;4183;4176:22;4138:2;4228:9;4222:16;4247:32;4273:5;4247:32;:::i;4314:482::-;;4436:2;4424:9;4415:7;4411:23;4407:32;4404:2;;;4457:6;4449;4442:22;4404:2;4502:9;4489:23;4535:18;4527:6;4524:30;4521:2;;;4572:6;4564;4557:22;4521:2;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:2:1;;4687:6;4679;4672:22;4631:2;4715:75;4782:7;4777:2;4764:16;4759:2;4755;4751:11;4715:75;:::i;4801:190::-;;4913:2;4901:9;4892:7;4888:23;4884:32;4881:2;;;4934:6;4926;4919:22;4881:2;-1:-1:-1;4962:23:1;;4871:120;-1:-1:-1;4871:120:1:o;4996:259::-;;5077:5;5071:12;5104:6;5099:3;5092:19;5120:63;5176:6;5169:4;5164:3;5160:14;5153:4;5146:5;5142:16;5120:63;:::i;:::-;5237:2;5216:15;-1:-1:-1;;5212:29:1;5203:39;;;;5244:4;5199:50;;5047:208;-1:-1:-1;;5047:208:1:o;5260:274::-;;5427:6;5421:13;5443:53;5489:6;5484:3;5477:4;5469:6;5465:17;5443:53;:::i;:::-;5512:16;;;;;5397:137;-1:-1:-1;;5397:137:1:o;5539:470::-;;5756:6;5750:13;5772:53;5818:6;5813:3;5806:4;5798:6;5794:17;5772:53;:::i;:::-;5888:13;;5847:16;;;;5910:57;5888:13;5847:16;5944:4;5932:17;;5910:57;:::i;:::-;5983:20;;5726:283;-1:-1:-1;;;;5726:283:1:o;6014:205::-;6214:3;6205:14::o;6224:203::-;-1:-1:-1;;;;;6388:32:1;;;;6370:51;;6358:2;6343:18;;6325:102::o;6432:506::-;-1:-1:-1;;;;;6717:15:1;;;6699:34;;6769:15;;6764:2;6749:18;;6742:43;6816:2;6801:18;;6794:34;;;6864:3;6859:2;6844:18;;6837:31;;;6432:506;;6885:47;;6912:19;;6904:6;6885:47;:::i;:::-;6877:55;6651:287;-1:-1:-1;;;;;;6651:287:1:o;6943:635::-;7114:2;7166:21;;;7236:13;;7139:18;;;7258:22;;;6943:635;;7114:2;7337:15;;;;7311:2;7296:18;;;6943:635;7383:169;7397:6;7394:1;7391:13;7383:169;;;7458:13;;7446:26;;7527:15;;;;7492:12;;;;7419:1;7412:9;7383:169;;;-1:-1:-1;7569:3:1;;7094:484;-1:-1:-1;;;;;;7094:484:1:o;7583:187::-;7748:14;;7741:22;7723:41;;7711:2;7696:18;;7678:92::o;7775:221::-;;7924:2;7913:9;7906:21;7944:46;7986:2;7975:9;7971:18;7963:6;7944:46;:::i;8001:979::-;;8139:2;8179;8168:9;8164:18;8209:2;8198:9;8191:21;8232:4;8268:6;8262:13;8294:1;8326:2;8315:9;8311:18;8343:1;8338:178;;;;8530:1;8525:429;;;;8304:650;;8338:178;8393:1;8378:17;;8397:4;8374:28;8359:44;;-1:-1:-1;;8443:24:1;;8438:2;8423:18;;8416:52;8503:2;8488:18;;;-1:-1:-1;8338:178:1;;8525:429;8575:1;8564:9;8560:17;8605:6;8597;8590:22;8640:39;8672:6;8640:39;:::i;:::-;8701:4;8718:180;8732:6;8729:1;8726:13;8718:180;;;8825:14;;8801:17;;;8820:2;8797:26;8790:50;8868:16;;;;8747:10;;8718:180;;;8922:17;;8941:2;8918:26;;-1:-1:-1;;;8304:650:1;-1:-1:-1;8971:3:1;;8119:861;-1:-1:-1;;;;;;;8119:861:1:o;8985:398::-;9187:2;9169:21;;;9226:2;9206:18;;;9199:30;9265:34;9260:2;9245:18;;9238:62;-1:-1:-1;;;9331:2:1;9316:18;;9309:32;9373:3;9358:19;;9159:224::o;9388:414::-;9590:2;9572:21;;;9629:2;9609:18;;;9602:30;9668:34;9663:2;9648:18;;9641:62;-1:-1:-1;;;9734:2:1;9719:18;;9712:48;9792:3;9777:19;;9562:240::o;9807:402::-;10009:2;9991:21;;;10048:2;10028:18;;;10021:30;10087:34;10082:2;10067:18;;10060:62;-1:-1:-1;;;10153:2:1;10138:18;;10131:36;10199:3;10184:19;;9981:228::o;10214:352::-;10416:2;10398:21;;;10455:2;10435:18;;;10428:30;10494;10489:2;10474:18;;10467:58;10557:2;10542:18;;10388:178::o;10571:351::-;10773:2;10755:21;;;10812:2;10792:18;;;10785:30;10851:29;10846:2;10831:18;;10824:57;10913:2;10898:18;;10745:177::o;10927:356::-;11129:2;11111:21;;;11148:18;;;11141:30;11207:34;11202:2;11187:18;;11180:62;11274:2;11259:18;;11101:182::o;11288:400::-;11490:2;11472:21;;;11529:2;11509:18;;;11502:30;11568:34;11563:2;11548:18;;11541:62;-1:-1:-1;;;11634:2:1;11619:18;;11612:34;11678:3;11663:19;;11462:226::o;11693:349::-;11895:2;11877:21;;;11934:2;11914:18;;;11907:30;11973:27;11968:2;11953:18;;11946:55;12033:2;12018:18;;11867:175::o;12047:355::-;12249:2;12231:21;;;12288:2;12268:18;;;12261:30;12327:33;12322:2;12307:18;;12300:61;12393:2;12378:18;;12221:181::o;12407:354::-;12609:2;12591:21;;;12648:2;12628:18;;;12621:30;12687:32;12682:2;12667:18;;12660:60;12752:2;12737:18;;12581:180::o;12766:408::-;12968:2;12950:21;;;13007:2;12987:18;;;12980:30;13046:34;13041:2;13026:18;;13019:62;-1:-1:-1;;;13112:2:1;13097:18;;13090:42;13164:3;13149:19;;12940:234::o;13586:408::-;13788:2;13770:21;;;13827:2;13807:18;;;13800:30;13866:34;13861:2;13846:18;;13839:62;-1:-1:-1;;;13932:2:1;13917:18;;13910:42;13984:3;13969:19;;13760:234::o;13999:350::-;14201:2;14183:21;;;14240:2;14220:18;;;14213:30;14279:28;14274:2;14259:18;;14252:56;14340:2;14325:18;;14173:176::o;14354:397::-;14556:2;14538:21;;;14595:2;14575:18;;;14568:30;14634:34;14629:2;14614:18;;14607:62;-1:-1:-1;;;14700:2:1;14685:18;;14678:31;14741:3;14726:19;;14528:223::o;14756:420::-;14958:2;14940:21;;;14997:2;14977:18;;;14970:30;15036:34;15031:2;15016:18;;15009:62;15107:26;15102:2;15087:18;;15080:54;15166:3;15151:19;;14930:246::o;15181:406::-;15383:2;15365:21;;;15422:2;15402:18;;;15395:30;15461:34;15456:2;15441:18;;15434:62;-1:-1:-1;;;15527:2:1;15512:18;;15505:40;15577:3;15562:19;;15355:232::o;15592:353::-;15794:2;15776:21;;;15833:2;15813:18;;;15806:30;15872:31;15867:2;15852:18;;15845:59;15936:2;15921:18;;15766:179::o;15950:398::-;16152:2;16134:21;;;16191:2;16171:18;;;16164:30;16230:34;16225:2;16210:18;;16203:62;-1:-1:-1;;;16296:2:1;16281:18;;16274:32;16338:3;16323:19;;16124:224::o;16353:356::-;16555:2;16537:21;;;16574:18;;;16567:30;16633:34;16628:2;16613:18;;16606:62;16700:2;16685:18;;16527:182::o;16714:397::-;16916:2;16898:21;;;16955:2;16935:18;;;16928:30;16994:34;16989:2;16974:18;;16967:62;-1:-1:-1;;;17060:2:1;17045:18;;17038:31;17101:3;17086:19;;16888:223::o;17116:408::-;17318:2;17300:21;;;17357:2;17337:18;;;17330:30;17396:34;17391:2;17376:18;;17369:62;-1:-1:-1;;;17462:2:1;17447:18;;17440:42;17514:3;17499:19;;17290:234::o;17529:399::-;17731:2;17713:21;;;17770:2;17750:18;;;17743:30;17809:34;17804:2;17789:18;;17782:62;-1:-1:-1;;;17875:2:1;17860:18;;17853:33;17918:3;17903:19;;17703:225::o;17933:356::-;18135:2;18117:21;;;18154:18;;;18147:30;18213:34;18208:2;18193:18;;18186:62;18280:2;18265:18;;18107:182::o;18294:405::-;18496:2;18478:21;;;18535:2;18515:18;;;18508:30;18574:34;18569:2;18554:18;;18547:62;-1:-1:-1;;;18640:2:1;18625:18;;18618:39;18689:3;18674:19;;18468:231::o;18704:411::-;18906:2;18888:21;;;18945:2;18925:18;;;18918:30;18984:34;18979:2;18964:18;;18957:62;-1:-1:-1;;;19050:2:1;19035:18;;19028:45;19105:3;19090:19;;18878:237::o;19120:397::-;19322:2;19304:21;;;19361:2;19341:18;;;19334:30;19400:34;19395:2;19380:18;;19373:62;-1:-1:-1;;;19466:2:1;19451:18;;19444:31;19507:3;19492:19;;19294:223::o;19522:402::-;19724:2;19706:21;;;19763:2;19743:18;;;19736:30;19802:34;19797:2;19782:18;;19775:62;-1:-1:-1;;;19868:2:1;19853:18;;19846:36;19914:3;19899:19;;19696:228::o;19929:346::-;20131:2;20113:21;;;20170:2;20150:18;;;20143:30;-1:-1:-1;;;20204:2:1;20189:18;;20182:52;20266:2;20251:18;;20103:172::o;20280:340::-;20482:2;20464:21;;;20521:2;20501:18;;;20494:30;-1:-1:-1;;;20555:2:1;20540:18;;20533:46;20611:2;20596:18;;20454:166::o;20625:413::-;20827:2;20809:21;;;20866:2;20846:18;;;20839:30;20905:34;20900:2;20885:18;;20878:62;-1:-1:-1;;;20971:2:1;20956:18;;20949:47;21028:3;21013:19;;20799:239::o;21043:353::-;21245:2;21227:21;;;21284:2;21264:18;;;21257:30;21323:31;21318:2;21303:18;;21296:59;21387:2;21372:18;;21217:179::o;21401:177::-;21547:25;;;21535:2;21520:18;;21502:76::o;21583:242::-;21653:2;21647:9;21683:17;;;21730:18;21715:34;;21751:22;;;21712:62;21709:2;;;21777:9;21709:2;21804;21797:22;21627:198;;-1:-1:-1;21627:198:1:o;21830:129::-;;21898:17;;;21948:4;21932:21;;;21888:71::o;21964:258::-;22036:1;22046:113;22060:6;22057:1;22054:13;22046:113;;;22136:11;;;22130:18;22117:11;;;22110:39;22082:2;22075:10;22046:113;;;22177:6;22174:1;22171:13;22168:2;;;-1:-1:-1;;22212:1:1;22194:16;;22187:27;22017:205::o;22227:133::-;-1:-1:-1;;;;;;22303:32:1;;22293:43;;22283:2;;22350:1;22347;22340:12
Swarm Source
ipfs://6e366e37cf07f29a1dece6fb1a86878d6949b99a36288279866d62727f833aa3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.