Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WinterBears
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-09-15
*/
// 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;
}
}
// File: contracts/WinterBears.sol
//MMMMMMMMMMMMMMMMMMNNNNNNNmmmmNNNNNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMMMMNNNmdhhyyssssssssssyyhhdmmNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMNNdhysssssssssssssssssssssssyyhdmNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMNmyssssssssssssssssssssssssssssssyyyhdmNNMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMNmyosssssssssssssssssssssssssssssssssyyyyhdmNNMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMNd+ossssssssssssssssssssssssssssssssssssyyyyyhdNNMMMMMMMMMMMMMMMMMMMMM
//MMMMNh/osssssssssssssssssssssssssssssssssssssssyyyyyhdNNMMMMMMMMMMMMMMMMMMM
//MMMNd:osssssssssssssssssssssssssssssssssssssssssyyyyyyhdNNMMMMMMMMMMMMMMMMM
//MMNN+/sssssssssssssssssssssssssssssssssssssssssssyyyyyyyhmNMMMMMMMMMMMMMMMM
//MMNh:ossssssyyyhhddddddddddddddhhyyyyssssssssssssyyyyyyyyydNMMMMMMMMMMMMMMM
//MMNo:ssyyhddhhso/::----------:/+osyhddddhyysssssssdhyyyyyyydNNMMMMMMMMMMMMM
//MNN++hddy+:.` `-:+shddddhyssymhyyyyyyydNNMMMMMMMMMMMM
//MNNdds:` `.:+oydddhhmdyyyyyyydNMMMMMMMMMMMM
//MNm+` `.-/oydmNdyyyyyyymNMMMMMMMMMMM
//NN- ````` .---/odmhyyyyyhNNMMMMMMMMMM
//Nd `.:/+ossyyyhhhhhhhyyysso+/:.` -----:mmyyyyyymNMMMMMMMMMM
//Nh -/shddhso+/:--..```````..--:/+oshddhs+:. `-----sNdhyyyyhNNNMMMMMMMM
//Nm`/ymho/. .:+shmyo::----/NNNdyyyyNm+sdNNMMMM
//NNmN/` `-+ymho/-:NNmNmdmmy/ -smNMM
//MMNh :shyo. .-:- :+ymhsNd.-::.` .:dNM
//MMNs y+:hNNm/ -ohs/-` .--:mNN- .-:mN
//MMNo .NyomNNNh .smms+:-` .---yNm ---dN
//MMNs hNNNNNN+ -s+////+o. `---sNN- `.--:mN
//MMNy `ohddy/ `---oNNh:.```````.---:yNM
//MNN: ``` `..... `---sNNNd+:--------:+dNMM
//MNh +ddyyydh- `---oNMMMNdyo+//+oydNNMMM
//MNs /mNNNNNd. .---sNMMMMMMNNNNNNMMMMMMM
//MNy -: .+dNy/` :s ----hNMMMMMMMMMMMMMMMMMMM
//MNm. .do:+mNh+/+yN+ .---oNNMMMMMMMMMMMMMMMMMMM
//MMNd. ./dNmmdhhmNd `---:oNNMMMMMMMMMMMMMMMMMMMM
//MMMNm/` :mmsoosdd- `.--:+hNMMMMMMMMMMMMMMMMMMMMMM
//MMMMMNd+.` .ohddy+` `.--:/sdNNMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMNNho:.` ``.--:/oydNNMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMNNNdhs+/:-..`````.....--:/+osyhdNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMMMMMMMNNNNNNmmmmmmmmNNNNNNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
// Winter Bears is a collection of 10,000 adorable polar bear NFTs available on the Ethereum blockchain.
// Each bear is completely unique, created using 150 individual features.
pragma solidity ^0.7.0;
pragma abicoder v2;
contract WinterBears is ERC721, Ownable {
using SafeMath for uint256;
string public BEAR_PROVENANCE = "";
uint256 public constant MAX_BEARS = 10000;
uint256 public constant MAX_BEARS_PER_MINT = 20;
uint256 public price = 60000000000000000; // 0.06 Ether
// 150 bears are reserved for the team, giveaways, promo etc
uint256 public RESERVED_BEARS = 200;
bool public isSaleActive = false;
constructor() ERC721("WinterBears", "WB") {}
function withdraw() public onlyOwner {
uint balance = address(this).balance;
msg.sender.transfer(balance);
}
function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
BEAR_PROVENANCE = _provenanceHash;
}
function reserveBears(address _to, uint256 _reserveAmount) public onlyOwner {
uint256 supply = totalSupply();
require(_reserveAmount > 0 && _reserveAmount <= RESERVED_BEARS, "Not enough reserves left");
for (uint256 i = 0; i < _reserveAmount; i++) {
_safeMint(_to, supply + i);
}
RESERVED_BEARS = RESERVED_BEARS.sub(_reserveAmount);
}
function mintBear(uint256 _count) public payable {
uint256 totalSupply = totalSupply();
require(isSaleActive, "Sale is not active" );
require(_count > 0 && _count < MAX_BEARS_PER_MINT + 1, "Exceeds maximum bears you can purchase in a single transaction");
require(totalSupply + _count < MAX_BEARS + 1, "Exceeds maximum bears available for purchase");
require(msg.value >= price.mul(_count), "Ether value sent is not correct");
for(uint256 i = 0; i < _count; i++){
_safeMint(msg.sender, totalSupply + i);
}
}
function setBaseURI(string memory _baseURI) public onlyOwner {
_setBaseURI(_baseURI);
}
function flipSaleStatus() public onlyOwner {
isSaleActive = !isSaleActive;
}
function setPrice(uint256 _newPrice) public onlyOwner() {
price = _newPrice;
}
function getPrice() public view returns (uint256){
return price;
}
function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
uint256 tokenCount = balanceOf(_owner);
if (tokenCount == 0) {
// Return an empty array
return new uint256[](0);
} else {
uint256[] memory result = new uint256[](tokenCount);
uint256 index;
for (index = 0; index < tokenCount; index++) {
result[index] = tokenOfOwnerByIndex(_owner, index);
}
return result;
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BEAR_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BEARS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BEARS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_BEARS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStatus","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":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintBear","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"reserveBears","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405260405180602001604052806000815250600b90805190602001906200002b929190620002fc565b5066d529ae9e860000600c5560c8600d556000600e60006101000a81548160ff0219169083151502179055503480156200006457600080fd5b506040518060400160405280600b81526020017f57696e74657242656172730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f5742000000000000000000000000000000000000000000000000000000000000815250620000e96301ffc9a760e01b6200021c60201b60201c565b816006908051906020019062000101929190620002fc565b5080600790805190602001906200011a929190620002fc565b50620001336380ac58cd60e01b6200021c60201b60201c565b6200014b635b5e139f60e01b6200021c60201b60201c565b6200016363780e9d6360e01b6200021c60201b60201c565b5050600062000177620002f460201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000427565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000288576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027f90620003f4565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000334576000855562000380565b82601f106200034f57805160ff191683800117855562000380565b8280016001018555821562000380579182015b828111156200037f57825182559160200191906001019062000362565b5b5090506200038f919062000393565b5090565b5b80821115620003ae57600081600090555060010162000394565b5090565b6000620003c1601c8362000416565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200040f81620003b2565b9050919050565b600082825260208201905092915050565b61435280620004376000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063ce03ec931161006f578063ce03ec931461075a578063da649ed714610771578063e2d8d80e1461079c578063e985e9c5146107c7578063f2fde38b1461080457610204565b8063a22cb465146106af578063b88d4fde146106d8578063c358575c14610701578063c87b56dd1461071d57610204565b80638da5cb5b116100e75780638da5cb5b146105da57806391b7f5ed1461060557806395d89b411461062e57806398d5fdca14610659578063a035b1fe1461068457610204565b806370a0823114610520578063715018a61461055d5780637fdb7304146105745780638462151c1461059d57610204565b80633ccfd60b1161019b578063564566a81161016a578063564566a81461043757806359283a86146104625780635d9f5a631461048d5780636352211e146104b85780636c0360eb146104f557610204565b80633ccfd60b1461039157806342842e0e146103a85780634f6ccce7146103d157806355f804b31461040e57610204565b806310969523116101d757806310969523146102d757806318160ddd1461030057806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130bf565b61082d565b60405161023d9190613cda565b60405180910390f35b34801561025257600080fd5b5061025b610894565b6040516102689190613cf5565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613152565b610936565b6040516102a59190613c51565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613083565b6109bb565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190613111565b610ad3565b005b34801561030c57600080fd5b50610315610b69565b6040516103229190614057565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612f7d565b610b7a565b005b34801561036057600080fd5b5061037b60048036038101906103769190613083565b610bda565b6040516103889190614057565b60405180910390f35b34801561039d57600080fd5b506103a6610c35565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612f7d565b610d00565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613152565b610d20565b6040516104059190614057565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613111565b610d43565b005b34801561044357600080fd5b5061044c610dcb565b6040516104599190613cda565b60405180910390f35b34801561046e57600080fd5b50610477610dde565b6040516104849190614057565b60405180910390f35b34801561049957600080fd5b506104a2610de4565b6040516104af9190614057565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613152565b610de9565b6040516104ec9190613c51565b60405180910390f35b34801561050157600080fd5b5061050a610e20565b6040516105179190613cf5565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612f18565b610ec2565b6040516105549190614057565b60405180910390f35b34801561056957600080fd5b50610572610f81565b005b34801561058057600080fd5b5061059b60048036038101906105969190613083565b6110be565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190612f18565b6111dc565b6040516105d19190613cb8565b60405180910390f35b3480156105e657600080fd5b506105ef6112d5565b6040516105fc9190613c51565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613152565b6112ff565b005b34801561063a57600080fd5b50610643611385565b6040516106509190613cf5565b60405180910390f35b34801561066557600080fd5b5061066e611427565b60405161067b9190614057565b60405180910390f35b34801561069057600080fd5b50610699611431565b6040516106a69190614057565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190613047565b611437565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190612fcc565b6115b8565b005b61071b60048036038101906107169190613152565b61161a565b005b34801561072957600080fd5b50610744600480360381019061073f9190613152565b611790565b6040516107519190613cf5565b60405180910390f35b34801561076657600080fd5b5061076f611913565b005b34801561077d57600080fd5b506107866119bb565b6040516107939190614057565b60405180910390f35b3480156107a857600080fd5b506107b16119c1565b6040516107be9190613cf5565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190612f41565b611a5f565b6040516107fb9190613cda565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190612f18565b611af3565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600061094182611c9f565b610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790613f37565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c682610de9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90613fb7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a56611cbc565b73ffffffffffffffffffffffffffffffffffffffff161480610a855750610a8481610a7f611cbc565b611a5f565b5b610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90613e77565b60405180910390fd5b610ace8383611cc4565b505050565b610adb611cbc565b73ffffffffffffffffffffffffffffffffffffffff16610af96112d5565b73ffffffffffffffffffffffffffffffffffffffff1614610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690613f57565b60405180910390fd5b80600b9080519060200190610b65929190612d34565b5050565b6000610b756002611d7d565b905090565b610b8b610b85611cbc565b82611d92565b610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613fd7565b60405180910390fd5b610bd5838383611e70565b505050565b6000610c2d82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061208790919063ffffffff16565b905092915050565b610c3d611cbc565b73ffffffffffffffffffffffffffffffffffffffff16610c5b6112d5565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613f57565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cfc573d6000803e3d6000fd5b5050565b610d1b838383604051806020016040528060008152506115b8565b505050565b600080610d378360026120a190919063ffffffff16565b50905080915050919050565b610d4b611cbc565b73ffffffffffffffffffffffffffffffffffffffff16610d696112d5565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690613f57565b60405180910390fd5b610dc8816120cd565b50565b600e60009054906101000a900460ff1681565b600d5481565b601481565b6000610e19826040518060600160405280602981526020016142f46029913960026120e79092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eb85780601f10610e8d57610100808354040283529160200191610eb8565b820191906000526020600020905b815481529060010190602001808311610e9b57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90613eb7565b60405180910390fd5b610f7a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612106565b9050919050565b610f89611cbc565b73ffffffffffffffffffffffffffffffffffffffff16610fa76112d5565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490613f57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6110c6611cbc565b73ffffffffffffffffffffffffffffffffffffffff166110e46112d5565b73ffffffffffffffffffffffffffffffffffffffff161461113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190613f57565b60405180910390fd5b6000611144610b69565b90506000821180156111585750600d548211155b611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90614037565b60405180910390fd5b60005b828110156111bb576111ae8482840161211b565b808060010191505061119a565b506111d182600d5461213990919063ffffffff16565b600d81905550505050565b606060006111e983610ec2565b9050600081141561124457600067ffffffffffffffff8111801561120c57600080fd5b5060405190808252806020026020018201604052801561123b5781602001602082028036833780820191505090505b509150506112d0565b60008167ffffffffffffffff8111801561125d57600080fd5b5060405190808252806020026020018201604052801561128c5781602001602082028036833780820191505090505b50905060005b828110156112c9576112a48582610bda565b8282815181106112b057fe5b6020026020010181815250508080600101915050611292565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611307611cbc565b73ffffffffffffffffffffffffffffffffffffffff166113256112d5565b73ffffffffffffffffffffffffffffffffffffffff161461137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613f57565b60405180910390fd5b80600c8190555050565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561141d5780601f106113f25761010080835404028352916020019161141d565b820191906000526020600020905b81548152906001019060200180831161140057829003601f168201915b5050505050905090565b6000600c54905090565b600c5481565b61143f611cbc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613db7565b60405180910390fd5b80600560006114ba611cbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611567611cbc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ac9190613cda565b60405180910390a35050565b6115c96115c3611cbc565b83611d92565b611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90613fd7565b60405180910390fd5b61161484848484612189565b50505050565b6000611624610b69565b9050600e60009054906101000a900460ff16611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613dd7565b60405180910390fd5b6000821180156116885750600160140182105b6116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90613e97565b60405180910390fd5b60016127100182820110611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790613ff7565b60405180910390fd5b61172582600c546121e590919063ffffffff16565b341015611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90613df7565b60405180910390fd5b60005b8281101561178b5761177e3382840161211b565b808060010191505061176a565b505050565b606061179b82611c9f565b6117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613f97565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118835780601f1061185857610100808354040283529160200191611883565b820191906000526020600020905b81548152906001019060200180831161186657829003601f168201915b505050505090506000611894610e20565b90506000815114156118aa57819250505061190e565b6000825111156118df5780826040516020016118c7929190613c2d565b6040516020818303038152906040529250505061190e565b806118e985612255565b6040516020016118fa929190613c2d565b604051602081830303815290604052925050505b919050565b61191b611cbc565b73ffffffffffffffffffffffffffffffffffffffff166119396112d5565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613f57565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61271081565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a575780601f10611a2c57610100808354040283529160200191611a57565b820191906000526020600020905b815481529060010190602001808311611a3a57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611afb611cbc565b73ffffffffffffffffffffffffffffffffffffffff16611b196112d5565b73ffffffffffffffffffffffffffffffffffffffff1614611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613f57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd690613d57565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611cb582600261239c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d3783610de9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d8b826000016123b6565b9050919050565b6000611d9d82611c9f565b611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390613e57565b60405180910390fd5b6000611de783610de9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e5657508373ffffffffffffffffffffffffffffffffffffffff16611e3e84610936565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e675750611e668185611a5f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e9082610de9565b73ffffffffffffffffffffffffffffffffffffffff1614611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90613f77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d90613d97565b60405180910390fd5b611f618383836123c7565b611f6c600082611cc4565b611fbd81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123cc90919063ffffffff16565b5061200f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123e690919063ffffffff16565b50612026818360026124009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006120968360000183612435565b60001c905092915050565b6000806000806120b486600001866124a2565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906120e3929190612d34565b5050565b60006120fa846000018460001b84612525565b60001c90509392505050565b6000612114826000016125b6565b9050919050565b6121358282604051806020016040528060008152506125c7565b5050565b60008282111561217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590613e17565b60405180910390fd5b818303905092915050565b612194848484611e70565b6121a084848484612622565b6121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d690613d37565b60405180910390fd5b50505050565b6000808314156121f8576000905061224f565b600082840290508284828161220957fe5b041461224a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224190613f17565b60405180910390fd5b809150505b92915050565b6060600082141561229d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612397565b600082905060005b600082146122c7578080600101915050600a82816122bf57fe5b0491506122a5565b60008167ffffffffffffffff811180156122e057600080fd5b506040519080825280601f01601f1916602001820160405280156123135781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461238f57600a848161233457fe5b0660300160f81b8282806001900393508151811061234e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161238757fe5b049350612322565b819450505050505b919050565b60006123ae836000018360001b612786565b905092915050565b600081600001805490509050919050565b505050565b60006123de836000018360001b6127a9565b905092915050565b60006123f8836000018360001b612891565b905092915050565b600061242c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612901565b90509392505050565b600081836000018054905011612480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247790613d17565b60405180910390fd5b82600001828154811061248f57fe5b9060005260206000200154905092915050565b600080828460000180549050116124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613ed7565b60405180910390fd5b60008460000184815481106124ff57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e9190613cf5565b60405180910390fd5b5084600001600182038154811061259a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6125d183836129dd565b6125de6000848484612622565b61261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490613d37565b60405180910390fd5b505050565b60006126438473ffffffffffffffffffffffffffffffffffffffff16612b6b565b612650576001905061277e565b600061271763150b7a0260e01b612665611cbc565b88878760405160240161267b9493929190613c6c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016142c2603291398773ffffffffffffffffffffffffffffffffffffffff16612b7e9092919063ffffffff16565b905060008180602001905181019061272f91906130e8565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461288557600060018203905060006001866000018054905003905060008660000182815481106127f457fe5b906000526020600020015490508087600001848154811061281157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061284957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061288b565b60009150505b92915050565b600061289d8383612b96565b6128f65782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506128fb565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156129a8578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506129d6565b828560000160018303815481106129bb57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490613ef7565b60405180910390fd5b612a5681611c9f565b15612a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8d90613d77565b60405180910390fd5b612aa2600083836123c7565b612af381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123e690919063ffffffff16565b50612b0a818360026124009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612b8d8484600085612bb9565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf590613e37565b60405180910390fd5b612c0785612b6b565b612c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3d90614017565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612c6f9190613c16565b60006040518083038185875af1925050503d8060008114612cac576040519150601f19603f3d011682016040523d82523d6000602084013e612cb1565b606091505b5091509150612cc1828286612ccd565b92505050949350505050565b60608315612cdd57829050612d2d565b600083511115612cf05782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d249190613cf5565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612d6a5760008555612db1565b82601f10612d8357805160ff1916838001178555612db1565b82800160010185558215612db1579182015b82811115612db0578251825591602001919060010190612d95565b5b509050612dbe9190612dc2565b5090565b5b80821115612ddb576000816000905550600101612dc3565b5090565b6000612df2612ded846140a3565b614072565b905082815260208101848484011115612e0a57600080fd5b612e15848285614210565b509392505050565b6000612e30612e2b846140d3565b614072565b905082815260208101848484011115612e4857600080fd5b612e53848285614210565b509392505050565b600081359050612e6a81614265565b92915050565b600081359050612e7f8161427c565b92915050565b600081359050612e9481614293565b92915050565b600081519050612ea981614293565b92915050565b600082601f830112612ec057600080fd5b8135612ed0848260208601612ddf565b91505092915050565b600082601f830112612eea57600080fd5b8135612efa848260208601612e1d565b91505092915050565b600081359050612f12816142aa565b92915050565b600060208284031215612f2a57600080fd5b6000612f3884828501612e5b565b91505092915050565b60008060408385031215612f5457600080fd5b6000612f6285828601612e5b565b9250506020612f7385828601612e5b565b9150509250929050565b600080600060608486031215612f9257600080fd5b6000612fa086828701612e5b565b9350506020612fb186828701612e5b565b9250506040612fc286828701612f03565b9150509250925092565b60008060008060808587031215612fe257600080fd5b6000612ff087828801612e5b565b945050602061300187828801612e5b565b935050604061301287828801612f03565b925050606085013567ffffffffffffffff81111561302f57600080fd5b61303b87828801612eaf565b91505092959194509250565b6000806040838503121561305a57600080fd5b600061306885828601612e5b565b925050602061307985828601612e70565b9150509250929050565b6000806040838503121561309657600080fd5b60006130a485828601612e5b565b92505060206130b585828601612f03565b9150509250929050565b6000602082840312156130d157600080fd5b60006130df84828501612e85565b91505092915050565b6000602082840312156130fa57600080fd5b600061310884828501612e9a565b91505092915050565b60006020828403121561312357600080fd5b600082013567ffffffffffffffff81111561313d57600080fd5b61314984828501612ed9565b91505092915050565b60006020828403121561316457600080fd5b600061317284828501612f03565b91505092915050565b60006131878383613bf8565b60208301905092915050565b61319c8161419c565b82525050565b6131ab8161418a565b82525050565b60006131bc82614113565b6131c68185614141565b93506131d183614103565b8060005b838110156132025781516131e9888261317b565b97506131f483614134565b9250506001810190506131d5565b5085935050505092915050565b613218816141ae565b82525050565b60006132298261411e565b6132338185614152565b935061324381856020860161421f565b61324c81614254565b840191505092915050565b60006132628261411e565b61326c8185614163565b935061327c81856020860161421f565b80840191505092915050565b600061329382614129565b61329d818561416e565b93506132ad81856020860161421f565b6132b681614254565b840191505092915050565b60006132cc82614129565b6132d6818561417f565b93506132e681856020860161421f565b80840191505092915050565b60006132ff60228361416e565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061336560328361416e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006133cb60268361416e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613431601c8361416e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061347160248361416e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134d760198361416e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061351760128361416e565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000613557601f8361416e565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613597601e8361416e565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006135d760268361416e565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061363d602c8361416e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136a360388361416e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613709603e8361416e565b91507f45786365656473206d6178696d756d20626561727320796f752063616e20707560008301527f72636861736520696e20612073696e676c65207472616e73616374696f6e00006020830152604082019050919050565b600061376f602a8361416e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137d560228361416e565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061383b60208361416e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061387b60218361416e565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138e1602c8361416e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061394760208361416e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061398760298361416e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ed602f8361416e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a5360218361416e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ab960318361416e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b1f602c8361416e565b91507f45786365656473206d6178696d756d20626561727320617661696c61626c652060008301527f666f7220707572636861736500000000000000000000000000000000000000006020830152604082019050919050565b6000613b85601d8361416e565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613bc560188361416e565b91507f4e6f7420656e6f756768207265736572766573206c65667400000000000000006000830152602082019050919050565b613c0181614206565b82525050565b613c1081614206565b82525050565b6000613c228284613257565b915081905092915050565b6000613c3982856132c1565b9150613c4582846132c1565b91508190509392505050565b6000602082019050613c6660008301846131a2565b92915050565b6000608082019050613c816000830187613193565b613c8e60208301866131a2565b613c9b6040830185613c07565b8181036060830152613cad818461321e565b905095945050505050565b60006020820190508181036000830152613cd281846131b1565b905092915050565b6000602082019050613cef600083018461320f565b92915050565b60006020820190508181036000830152613d0f8184613288565b905092915050565b60006020820190508181036000830152613d30816132f2565b9050919050565b60006020820190508181036000830152613d5081613358565b9050919050565b60006020820190508181036000830152613d70816133be565b9050919050565b60006020820190508181036000830152613d9081613424565b9050919050565b60006020820190508181036000830152613db081613464565b9050919050565b60006020820190508181036000830152613dd0816134ca565b9050919050565b60006020820190508181036000830152613df08161350a565b9050919050565b60006020820190508181036000830152613e108161354a565b9050919050565b60006020820190508181036000830152613e308161358a565b9050919050565b60006020820190508181036000830152613e50816135ca565b9050919050565b60006020820190508181036000830152613e7081613630565b9050919050565b60006020820190508181036000830152613e9081613696565b9050919050565b60006020820190508181036000830152613eb0816136fc565b9050919050565b60006020820190508181036000830152613ed081613762565b9050919050565b60006020820190508181036000830152613ef0816137c8565b9050919050565b60006020820190508181036000830152613f108161382e565b9050919050565b60006020820190508181036000830152613f308161386e565b9050919050565b60006020820190508181036000830152613f50816138d4565b9050919050565b60006020820190508181036000830152613f708161393a565b9050919050565b60006020820190508181036000830152613f908161397a565b9050919050565b60006020820190508181036000830152613fb0816139e0565b9050919050565b60006020820190508181036000830152613fd081613a46565b9050919050565b60006020820190508181036000830152613ff081613aac565b9050919050565b6000602082019050818103600083015261401081613b12565b9050919050565b6000602082019050818103600083015261403081613b78565b9050919050565b6000602082019050818103600083015261405081613bb8565b9050919050565b600060208201905061406c6000830184613c07565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561409957614098614252565b5b8060405250919050565b600067ffffffffffffffff8211156140be576140bd614252565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156140ee576140ed614252565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614195826141e6565b9050919050565b60006141a7826141e6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561423d578082015181840152602081019050614222565b8381111561424c576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61426e8161418a565b811461427957600080fd5b50565b614285816141ae565b811461429057600080fd5b50565b61429c816141ba565b81146142a757600080fd5b50565b6142b381614206565b81146142be57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205e7172c4ee26450db948ee05128ff52e7016f452aebaede669a84cdfd148766e64736f6c63430007060033
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063ce03ec931161006f578063ce03ec931461075a578063da649ed714610771578063e2d8d80e1461079c578063e985e9c5146107c7578063f2fde38b1461080457610204565b8063a22cb465146106af578063b88d4fde146106d8578063c358575c14610701578063c87b56dd1461071d57610204565b80638da5cb5b116100e75780638da5cb5b146105da57806391b7f5ed1461060557806395d89b411461062e57806398d5fdca14610659578063a035b1fe1461068457610204565b806370a0823114610520578063715018a61461055d5780637fdb7304146105745780638462151c1461059d57610204565b80633ccfd60b1161019b578063564566a81161016a578063564566a81461043757806359283a86146104625780635d9f5a631461048d5780636352211e146104b85780636c0360eb146104f557610204565b80633ccfd60b1461039157806342842e0e146103a85780634f6ccce7146103d157806355f804b31461040e57610204565b806310969523116101d757806310969523146102d757806318160ddd1461030057806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130bf565b61082d565b60405161023d9190613cda565b60405180910390f35b34801561025257600080fd5b5061025b610894565b6040516102689190613cf5565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613152565b610936565b6040516102a59190613c51565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613083565b6109bb565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190613111565b610ad3565b005b34801561030c57600080fd5b50610315610b69565b6040516103229190614057565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612f7d565b610b7a565b005b34801561036057600080fd5b5061037b60048036038101906103769190613083565b610bda565b6040516103889190614057565b60405180910390f35b34801561039d57600080fd5b506103a6610c35565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612f7d565b610d00565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613152565b610d20565b6040516104059190614057565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613111565b610d43565b005b34801561044357600080fd5b5061044c610dcb565b6040516104599190613cda565b60405180910390f35b34801561046e57600080fd5b50610477610dde565b6040516104849190614057565b60405180910390f35b34801561049957600080fd5b506104a2610de4565b6040516104af9190614057565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613152565b610de9565b6040516104ec9190613c51565b60405180910390f35b34801561050157600080fd5b5061050a610e20565b6040516105179190613cf5565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612f18565b610ec2565b6040516105549190614057565b60405180910390f35b34801561056957600080fd5b50610572610f81565b005b34801561058057600080fd5b5061059b60048036038101906105969190613083565b6110be565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190612f18565b6111dc565b6040516105d19190613cb8565b60405180910390f35b3480156105e657600080fd5b506105ef6112d5565b6040516105fc9190613c51565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613152565b6112ff565b005b34801561063a57600080fd5b50610643611385565b6040516106509190613cf5565b60405180910390f35b34801561066557600080fd5b5061066e611427565b60405161067b9190614057565b60405180910390f35b34801561069057600080fd5b50610699611431565b6040516106a69190614057565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190613047565b611437565b005b3480156106e457600080fd5b506106ff60048036038101906106fa9190612fcc565b6115b8565b005b61071b60048036038101906107169190613152565b61161a565b005b34801561072957600080fd5b50610744600480360381019061073f9190613152565b611790565b6040516107519190613cf5565b60405180910390f35b34801561076657600080fd5b5061076f611913565b005b34801561077d57600080fd5b506107866119bb565b6040516107939190614057565b60405180910390f35b3480156107a857600080fd5b506107b16119c1565b6040516107be9190613cf5565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190612f41565b611a5f565b6040516107fb9190613cda565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190612f18565b611af3565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600061094182611c9f565b610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790613f37565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c682610de9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90613fb7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a56611cbc565b73ffffffffffffffffffffffffffffffffffffffff161480610a855750610a8481610a7f611cbc565b611a5f565b5b610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90613e77565b60405180910390fd5b610ace8383611cc4565b505050565b610adb611cbc565b73ffffffffffffffffffffffffffffffffffffffff16610af96112d5565b73ffffffffffffffffffffffffffffffffffffffff1614610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690613f57565b60405180910390fd5b80600b9080519060200190610b65929190612d34565b5050565b6000610b756002611d7d565b905090565b610b8b610b85611cbc565b82611d92565b610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613fd7565b60405180910390fd5b610bd5838383611e70565b505050565b6000610c2d82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061208790919063ffffffff16565b905092915050565b610c3d611cbc565b73ffffffffffffffffffffffffffffffffffffffff16610c5b6112d5565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613f57565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cfc573d6000803e3d6000fd5b5050565b610d1b838383604051806020016040528060008152506115b8565b505050565b600080610d378360026120a190919063ffffffff16565b50905080915050919050565b610d4b611cbc565b73ffffffffffffffffffffffffffffffffffffffff16610d696112d5565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690613f57565b60405180910390fd5b610dc8816120cd565b50565b600e60009054906101000a900460ff1681565b600d5481565b601481565b6000610e19826040518060600160405280602981526020016142f46029913960026120e79092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eb85780601f10610e8d57610100808354040283529160200191610eb8565b820191906000526020600020905b815481529060010190602001808311610e9b57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90613eb7565b60405180910390fd5b610f7a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612106565b9050919050565b610f89611cbc565b73ffffffffffffffffffffffffffffffffffffffff16610fa76112d5565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490613f57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6110c6611cbc565b73ffffffffffffffffffffffffffffffffffffffff166110e46112d5565b73ffffffffffffffffffffffffffffffffffffffff161461113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190613f57565b60405180910390fd5b6000611144610b69565b90506000821180156111585750600d548211155b611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90614037565b60405180910390fd5b60005b828110156111bb576111ae8482840161211b565b808060010191505061119a565b506111d182600d5461213990919063ffffffff16565b600d81905550505050565b606060006111e983610ec2565b9050600081141561124457600067ffffffffffffffff8111801561120c57600080fd5b5060405190808252806020026020018201604052801561123b5781602001602082028036833780820191505090505b509150506112d0565b60008167ffffffffffffffff8111801561125d57600080fd5b5060405190808252806020026020018201604052801561128c5781602001602082028036833780820191505090505b50905060005b828110156112c9576112a48582610bda565b8282815181106112b057fe5b6020026020010181815250508080600101915050611292565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611307611cbc565b73ffffffffffffffffffffffffffffffffffffffff166113256112d5565b73ffffffffffffffffffffffffffffffffffffffff161461137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613f57565b60405180910390fd5b80600c8190555050565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561141d5780601f106113f25761010080835404028352916020019161141d565b820191906000526020600020905b81548152906001019060200180831161140057829003601f168201915b5050505050905090565b6000600c54905090565b600c5481565b61143f611cbc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613db7565b60405180910390fd5b80600560006114ba611cbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611567611cbc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ac9190613cda565b60405180910390a35050565b6115c96115c3611cbc565b83611d92565b611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90613fd7565b60405180910390fd5b61161484848484612189565b50505050565b6000611624610b69565b9050600e60009054906101000a900460ff16611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613dd7565b60405180910390fd5b6000821180156116885750600160140182105b6116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90613e97565b60405180910390fd5b60016127100182820110611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790613ff7565b60405180910390fd5b61172582600c546121e590919063ffffffff16565b341015611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90613df7565b60405180910390fd5b60005b8281101561178b5761177e3382840161211b565b808060010191505061176a565b505050565b606061179b82611c9f565b6117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613f97565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118835780601f1061185857610100808354040283529160200191611883565b820191906000526020600020905b81548152906001019060200180831161186657829003601f168201915b505050505090506000611894610e20565b90506000815114156118aa57819250505061190e565b6000825111156118df5780826040516020016118c7929190613c2d565b6040516020818303038152906040529250505061190e565b806118e985612255565b6040516020016118fa929190613c2d565b604051602081830303815290604052925050505b919050565b61191b611cbc565b73ffffffffffffffffffffffffffffffffffffffff166119396112d5565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613f57565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61271081565b600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a575780601f10611a2c57610100808354040283529160200191611a57565b820191906000526020600020905b815481529060010190602001808311611a3a57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611afb611cbc565b73ffffffffffffffffffffffffffffffffffffffff16611b196112d5565b73ffffffffffffffffffffffffffffffffffffffff1614611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613f57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd690613d57565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611cb582600261239c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d3783610de9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d8b826000016123b6565b9050919050565b6000611d9d82611c9f565b611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390613e57565b60405180910390fd5b6000611de783610de9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e5657508373ffffffffffffffffffffffffffffffffffffffff16611e3e84610936565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e675750611e668185611a5f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e9082610de9565b73ffffffffffffffffffffffffffffffffffffffff1614611ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edd90613f77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d90613d97565b60405180910390fd5b611f618383836123c7565b611f6c600082611cc4565b611fbd81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123cc90919063ffffffff16565b5061200f81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123e690919063ffffffff16565b50612026818360026124009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006120968360000183612435565b60001c905092915050565b6000806000806120b486600001866124a2565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906120e3929190612d34565b5050565b60006120fa846000018460001b84612525565b60001c90509392505050565b6000612114826000016125b6565b9050919050565b6121358282604051806020016040528060008152506125c7565b5050565b60008282111561217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590613e17565b60405180910390fd5b818303905092915050565b612194848484611e70565b6121a084848484612622565b6121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d690613d37565b60405180910390fd5b50505050565b6000808314156121f8576000905061224f565b600082840290508284828161220957fe5b041461224a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224190613f17565b60405180910390fd5b809150505b92915050565b6060600082141561229d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612397565b600082905060005b600082146122c7578080600101915050600a82816122bf57fe5b0491506122a5565b60008167ffffffffffffffff811180156122e057600080fd5b506040519080825280601f01601f1916602001820160405280156123135781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461238f57600a848161233457fe5b0660300160f81b8282806001900393508151811061234e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161238757fe5b049350612322565b819450505050505b919050565b60006123ae836000018360001b612786565b905092915050565b600081600001805490509050919050565b505050565b60006123de836000018360001b6127a9565b905092915050565b60006123f8836000018360001b612891565b905092915050565b600061242c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612901565b90509392505050565b600081836000018054905011612480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247790613d17565b60405180910390fd5b82600001828154811061248f57fe5b9060005260206000200154905092915050565b600080828460000180549050116124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590613ed7565b60405180910390fd5b60008460000184815481106124ff57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e9190613cf5565b60405180910390fd5b5084600001600182038154811061259a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6125d183836129dd565b6125de6000848484612622565b61261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490613d37565b60405180910390fd5b505050565b60006126438473ffffffffffffffffffffffffffffffffffffffff16612b6b565b612650576001905061277e565b600061271763150b7a0260e01b612665611cbc565b88878760405160240161267b9493929190613c6c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016142c2603291398773ffffffffffffffffffffffffffffffffffffffff16612b7e9092919063ffffffff16565b905060008180602001905181019061272f91906130e8565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461288557600060018203905060006001866000018054905003905060008660000182815481106127f457fe5b906000526020600020015490508087600001848154811061281157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061284957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061288b565b60009150505b92915050565b600061289d8383612b96565b6128f65782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506128fb565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156129a8578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506129d6565b828560000160018303815481106129bb57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490613ef7565b60405180910390fd5b612a5681611c9f565b15612a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8d90613d77565b60405180910390fd5b612aa2600083836123c7565b612af381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206123e690919063ffffffff16565b50612b0a818360026124009092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612b8d8484600085612bb9565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf590613e37565b60405180910390fd5b612c0785612b6b565b612c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3d90614017565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612c6f9190613c16565b60006040518083038185875af1925050503d8060008114612cac576040519150601f19603f3d011682016040523d82523d6000602084013e612cb1565b606091505b5091509150612cc1828286612ccd565b92505050949350505050565b60608315612cdd57829050612d2d565b600083511115612cf05782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d249190613cf5565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612d6a5760008555612db1565b82601f10612d8357805160ff1916838001178555612db1565b82800160010185558215612db1579182015b82811115612db0578251825591602001919060010190612d95565b5b509050612dbe9190612dc2565b5090565b5b80821115612ddb576000816000905550600101612dc3565b5090565b6000612df2612ded846140a3565b614072565b905082815260208101848484011115612e0a57600080fd5b612e15848285614210565b509392505050565b6000612e30612e2b846140d3565b614072565b905082815260208101848484011115612e4857600080fd5b612e53848285614210565b509392505050565b600081359050612e6a81614265565b92915050565b600081359050612e7f8161427c565b92915050565b600081359050612e9481614293565b92915050565b600081519050612ea981614293565b92915050565b600082601f830112612ec057600080fd5b8135612ed0848260208601612ddf565b91505092915050565b600082601f830112612eea57600080fd5b8135612efa848260208601612e1d565b91505092915050565b600081359050612f12816142aa565b92915050565b600060208284031215612f2a57600080fd5b6000612f3884828501612e5b565b91505092915050565b60008060408385031215612f5457600080fd5b6000612f6285828601612e5b565b9250506020612f7385828601612e5b565b9150509250929050565b600080600060608486031215612f9257600080fd5b6000612fa086828701612e5b565b9350506020612fb186828701612e5b565b9250506040612fc286828701612f03565b9150509250925092565b60008060008060808587031215612fe257600080fd5b6000612ff087828801612e5b565b945050602061300187828801612e5b565b935050604061301287828801612f03565b925050606085013567ffffffffffffffff81111561302f57600080fd5b61303b87828801612eaf565b91505092959194509250565b6000806040838503121561305a57600080fd5b600061306885828601612e5b565b925050602061307985828601612e70565b9150509250929050565b6000806040838503121561309657600080fd5b60006130a485828601612e5b565b92505060206130b585828601612f03565b9150509250929050565b6000602082840312156130d157600080fd5b60006130df84828501612e85565b91505092915050565b6000602082840312156130fa57600080fd5b600061310884828501612e9a565b91505092915050565b60006020828403121561312357600080fd5b600082013567ffffffffffffffff81111561313d57600080fd5b61314984828501612ed9565b91505092915050565b60006020828403121561316457600080fd5b600061317284828501612f03565b91505092915050565b60006131878383613bf8565b60208301905092915050565b61319c8161419c565b82525050565b6131ab8161418a565b82525050565b60006131bc82614113565b6131c68185614141565b93506131d183614103565b8060005b838110156132025781516131e9888261317b565b97506131f483614134565b9250506001810190506131d5565b5085935050505092915050565b613218816141ae565b82525050565b60006132298261411e565b6132338185614152565b935061324381856020860161421f565b61324c81614254565b840191505092915050565b60006132628261411e565b61326c8185614163565b935061327c81856020860161421f565b80840191505092915050565b600061329382614129565b61329d818561416e565b93506132ad81856020860161421f565b6132b681614254565b840191505092915050565b60006132cc82614129565b6132d6818561417f565b93506132e681856020860161421f565b80840191505092915050565b60006132ff60228361416e565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061336560328361416e565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006133cb60268361416e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613431601c8361416e565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061347160248361416e565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134d760198361416e565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061351760128361416e565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000613557601f8361416e565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613597601e8361416e565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006135d760268361416e565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061363d602c8361416e565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136a360388361416e565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613709603e8361416e565b91507f45786365656473206d6178696d756d20626561727320796f752063616e20707560008301527f72636861736520696e20612073696e676c65207472616e73616374696f6e00006020830152604082019050919050565b600061376f602a8361416e565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137d560228361416e565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061383b60208361416e565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061387b60218361416e565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138e1602c8361416e565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061394760208361416e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061398760298361416e565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ed602f8361416e565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613a5360218361416e565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ab960318361416e565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b1f602c8361416e565b91507f45786365656473206d6178696d756d20626561727320617661696c61626c652060008301527f666f7220707572636861736500000000000000000000000000000000000000006020830152604082019050919050565b6000613b85601d8361416e565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b6000613bc560188361416e565b91507f4e6f7420656e6f756768207265736572766573206c65667400000000000000006000830152602082019050919050565b613c0181614206565b82525050565b613c1081614206565b82525050565b6000613c228284613257565b915081905092915050565b6000613c3982856132c1565b9150613c4582846132c1565b91508190509392505050565b6000602082019050613c6660008301846131a2565b92915050565b6000608082019050613c816000830187613193565b613c8e60208301866131a2565b613c9b6040830185613c07565b8181036060830152613cad818461321e565b905095945050505050565b60006020820190508181036000830152613cd281846131b1565b905092915050565b6000602082019050613cef600083018461320f565b92915050565b60006020820190508181036000830152613d0f8184613288565b905092915050565b60006020820190508181036000830152613d30816132f2565b9050919050565b60006020820190508181036000830152613d5081613358565b9050919050565b60006020820190508181036000830152613d70816133be565b9050919050565b60006020820190508181036000830152613d9081613424565b9050919050565b60006020820190508181036000830152613db081613464565b9050919050565b60006020820190508181036000830152613dd0816134ca565b9050919050565b60006020820190508181036000830152613df08161350a565b9050919050565b60006020820190508181036000830152613e108161354a565b9050919050565b60006020820190508181036000830152613e308161358a565b9050919050565b60006020820190508181036000830152613e50816135ca565b9050919050565b60006020820190508181036000830152613e7081613630565b9050919050565b60006020820190508181036000830152613e9081613696565b9050919050565b60006020820190508181036000830152613eb0816136fc565b9050919050565b60006020820190508181036000830152613ed081613762565b9050919050565b60006020820190508181036000830152613ef0816137c8565b9050919050565b60006020820190508181036000830152613f108161382e565b9050919050565b60006020820190508181036000830152613f308161386e565b9050919050565b60006020820190508181036000830152613f50816138d4565b9050919050565b60006020820190508181036000830152613f708161393a565b9050919050565b60006020820190508181036000830152613f908161397a565b9050919050565b60006020820190508181036000830152613fb0816139e0565b9050919050565b60006020820190508181036000830152613fd081613a46565b9050919050565b60006020820190508181036000830152613ff081613aac565b9050919050565b6000602082019050818103600083015261401081613b12565b9050919050565b6000602082019050818103600083015261403081613b78565b9050919050565b6000602082019050818103600083015261405081613bb8565b9050919050565b600060208201905061406c6000830184613c07565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561409957614098614252565b5b8060405250919050565b600067ffffffffffffffff8211156140be576140bd614252565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156140ee576140ed614252565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614195826141e6565b9050919050565b60006141a7826141e6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561423d578082015181840152602081019050614222565b8381111561424c576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61426e8161418a565b811461427957600080fd5b50565b614285816141ae565b811461429057600080fd5b50565b61429c816141ba565b81146142a757600080fd5b50565b6142b381614206565b81146142be57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212205e7172c4ee26450db948ee05128ff52e7016f452aebaede669a84cdfd148766e64736f6c63430007060033
Deployed Bytecode Sourcemap
69762:2749:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10204:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51465:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54251:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53781:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70404:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53259:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55141:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53021:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70265:131;;;;;;;;;;;;;:::i;:::-;;55517:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53547:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71564:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70172:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70128:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69943:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51221:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52840:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50938:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66172:148;;;;;;;;;;;;;:::i;:::-;;70539:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71968:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65521:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71776:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51634:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71876:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69999:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54544:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55739:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70956:600;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51809:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71673:90;;;;;;;;;;;;;:::i;:::-;;69889:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69846:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54910:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66475:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10204:150;10289:4;10313:20;:33;10334:11;10313:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10306:40;;10204:150;;;:::o;51465:100::-;51519:13;51552:5;51545:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51465:100;:::o;54251:221::-;54327:7;54355:16;54363:7;54355;:16::i;:::-;54347:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54440:15;:24;54456:7;54440:24;;;;;;;;;;;;;;;;;;;;;54433:31;;54251:221;;;:::o;53781:404::-;53862:13;53878:23;53893:7;53878:14;:23::i;:::-;53862:39;;53926:5;53920:11;;:2;:11;;;;53912:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54006:5;53990:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54015:44;54039:5;54046:12;:10;:12::i;:::-;54015:23;:44::i;:::-;53990:69;53982:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54156:21;54165:2;54169:7;54156:8;:21::i;:::-;53781:404;;;:::o;70404:127::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70508:15:::1;70490;:33;;;;;;;;;;;;:::i;:::-;;70404:127:::0;:::o;53259:211::-;53320:7;53441:21;:12;:19;:21::i;:::-;53434:28;;53259:211;:::o;55141:305::-;55302:41;55321:12;:10;:12::i;:::-;55335:7;55302:18;:41::i;:::-;55294:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55410:28;55420:4;55426:2;55430:7;55410:9;:28::i;:::-;55141:305;;;:::o;53021:162::-;53118:7;53145:30;53169:5;53145:13;:20;53159:5;53145:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53138:37;;53021:162;;;;:::o;70265:131::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70313:12:::1;70328:21;70313:36;;70360:10;:19;;:28;70380:7;70360:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65812:1;70265:131::o:0;55517:151::-;55621:39;55638:4;55644:2;55648:7;55621:39;;;;;;;;;;;;:16;:39::i;:::-;55517:151;;;:::o;53547:172::-;53622:7;53643:15;53664:22;53680:5;53664:12;:15;;:22;;;;:::i;:::-;53642:44;;;53704:7;53697:14;;;53547:172;;;:::o;71564:101::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71636:21:::1;71648:8;71636:11;:21::i;:::-;71564:101:::0;:::o;70172:32::-;;;;;;;;;;;;;:::o;70128:35::-;;;;:::o;69943:47::-;69988:2;69943:47;:::o;51221:177::-;51293:7;51320:70;51337:7;51320:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51313:77;;51221:177;;;:::o;52840:97::-;52888:13;52921:8;52914:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52840:97;:::o;50938:221::-;51010:7;51055:1;51038:19;;:5;:19;;;;51030:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51122:29;:13;:20;51136:5;51122:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51115:36;;50938:221;;;:::o;66172:148::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66279:1:::1;66242:40;;66263:6;;;;;;;;;;;66242:40;;;;;;;;;;;;66310:1;66293:6;;:19;;;;;;;;;;;;;;;;;;66172:148::o:0;70539:405::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70634:14:::1;70651:13;:11;:13::i;:::-;70634:30;;70700:1;70683:14;:18;:54;;;;;70723:14;;70705;:32;;70683:54;70675:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;70782:9;70777:98;70801:14;70797:1;:18;70777:98;;;70837:26;70847:3;70861:1;70852:6;:10;70837:9;:26::i;:::-;70817:3;;;;;;;70777:98;;;;70902:34;70921:14;70902;;:18;;:34;;;;:::i;:::-;70885:14;:51;;;;65812:1;70539:405:::0;;:::o;71968:540::-;72029:16;72059:18;72080:17;72090:6;72080:9;:17::i;:::-;72059:38;;72126:1;72112:10;:15;72108:393;;;72203:1;72189:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72182:23;;;;;72108:393;72238:23;72278:10;72264:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72238:51;;72304:13;72332:130;72356:10;72348:5;:18;72332:130;;;72412:34;72432:6;72440:5;72412:19;:34::i;:::-;72396:6;72403:5;72396:13;;;;;;;;;;;;;:50;;;;;72368:7;;;;;;;72332:130;;;72483:6;72476:13;;;;;71968:540;;;;:::o;65521:87::-;65567:7;65594:6;;;;;;;;;;;65587:13;;65521:87;:::o;71776:92::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71851:9:::1;71843:5;:17;;;;71776:92:::0;:::o;51634:104::-;51690:13;51723:7;51716:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51634:104;:::o;71876:80::-;71917:7;71943:5;;71936:12;;71876:80;:::o;69999:40::-;;;;:::o;54544:295::-;54659:12;:10;:12::i;:::-;54647:24;;:8;:24;;;;54639:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54759:8;54714:18;:32;54733:12;:10;:12::i;:::-;54714:32;;;;;;;;;;;;;;;:42;54747:8;54714:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54812:8;54783:48;;54798:12;:10;:12::i;:::-;54783:48;;;54822:8;54783:48;;;;;;:::i;:::-;;;;;;;;54544:295;;:::o;55739:285::-;55871:41;55890:12;:10;:12::i;:::-;55904:7;55871:18;:41::i;:::-;55863:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55977:39;55991:4;55997:2;56001:7;56010:5;55977:13;:39::i;:::-;55739:285;;;;:::o;70956:600::-;71016:19;71038:13;:11;:13::i;:::-;71016:35;;71072:12;;;;;;;;;;;71064:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;71136:1;71127:6;:10;:45;;;;;71171:1;69988:2;71150:22;71141:6;:31;71127:45;71119:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;71293:1;69925:5;71281:13;71272:6;71258:11;:20;:36;71250:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;71375:17;71385:6;71375:5;;:9;;:17;;;;:::i;:::-;71362:9;:30;;71354:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;71453:9;71449:100;71472:6;71468:1;:10;71449:100;;;71499:38;71509:10;71535:1;71521:11;:15;71499:9;:38::i;:::-;71480:3;;;;;;;71449:100;;;;70956:600;;:::o;51809:792::-;51882:13;51916:16;51924:7;51916;:16::i;:::-;51908:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;51997:23;52023:10;:19;52034:7;52023:19;;;;;;;;;;;51997:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52053:18;52074:9;:7;:9::i;:::-;52053:30;;52181:1;52165:4;52159:18;:23;52155:72;;;52206:9;52199:16;;;;;;52155:72;52357:1;52337:9;52331:23;:27;52327:108;;;52406:4;52412:9;52389:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52375:48;;;;;;52327:108;52567:4;52573:18;:7;:16;:18::i;:::-;52550:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52536:57;;;;51809:792;;;;:::o;71673:90::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71743:12:::1;;;;;;;;;;;71742:13;71727:12;;:28;;;;;;;;;;;;;;;;;;71673:90::o:0;69889:41::-;69925:5;69889:41;:::o;69846:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54910:164::-;55007:4;55031:18;:25;55050:5;55031:25;;;;;;;;;;;;;;;:35;55057:8;55031:35;;;;;;;;;;;;;;;;;;;;;;;;;55024:42;;54910:164;;;;:::o;66475:244::-;65752:12;:10;:12::i;:::-;65741:23;;:7;:5;:7::i;:::-;:23;;;65733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66584:1:::1;66564:22;;:8;:22;;;;66556:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66674:8;66645:38;;66666:6;;;;;;;;;;;66645:38;;;;;;;;;;;;66703:8;66694:6;;:17;;;;;;;;;;;;;;;;;;66475:244:::0;:::o;57491:127::-;57556:4;57580:30;57602:7;57580:12;:21;;:30;;;;:::i;:::-;57573:37;;57491:127;;;:::o;668:106::-;721:15;756:10;749:17;;668:106;:::o;63509:192::-;63611:2;63584:15;:24;63600:7;63584:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63667:7;63663:2;63629:46;;63638:23;63653:7;63638:14;:23::i;:::-;63629:46;;;;;;;;;;;;63509:192;;:::o;44231:123::-;44300:7;44327:19;44335:3;:10;;44327:7;:19::i;:::-;44320:26;;44231:123;;;:::o;57785:355::-;57878:4;57903:16;57911:7;57903;:16::i;:::-;57895:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57979:13;57995:23;58010:7;57995:14;:23::i;:::-;57979:39;;58048:5;58037:16;;:7;:16;;;:51;;;;58081:7;58057:31;;:20;58069:7;58057:11;:20::i;:::-;:31;;;58037:51;:94;;;;58092:39;58116:5;58123:7;58092:23;:39::i;:::-;58037:94;58029:103;;;57785:355;;;;:::o;60921:599::-;61046:4;61019:31;;:23;61034:7;61019:14;:23::i;:::-;:31;;;61011:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61147:1;61133:16;;:2;:16;;;;61125:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61203:39;61224:4;61230:2;61234:7;61203:20;:39::i;:::-;61307:29;61324:1;61328:7;61307:8;:29::i;:::-;61349:35;61376:7;61349:13;:19;61363:4;61349:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61395:30;61417:7;61395:13;:17;61409:2;61395:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61438:29;61455:7;61464:2;61438:12;:16;;:29;;;;;:::i;:::-;;61504:7;61500:2;61485:27;;61494:4;61485:27;;;;;;;;;;;;60921:599;;;:::o;36026:137::-;36097:7;36132:22;36136:3;:10;;36148:5;36132:3;:22::i;:::-;36124:31;;36117:38;;36026:137;;;;:::o;44693:236::-;44773:7;44782;44803:11;44816:13;44833:22;44837:3;:10;;44849:5;44833:3;:22::i;:::-;44802:53;;;;44882:3;44874:12;;44912:5;44904:14;;44866:55;;;;;;44693:236;;;;;:::o;62121:100::-;62205:8;62194;:19;;;;;;;;;;;;:::i;:::-;;62121:100;:::o;45979:213::-;46086:7;46137:44;46142:3;:10;;46162:3;46154:12;;46168;46137:4;:44::i;:::-;46129:53;;46106:78;;45979:213;;;;;:::o;35568:114::-;35628:7;35655:19;35663:3;:10;;35655:7;:19::i;:::-;35648:26;;35568:114;;;:::o;58483:110::-;58559:26;58569:2;58573:7;58559:26;;;;;;;;;;;;:9;:26::i;:::-;58483:110;;:::o;14224:158::-;14282:7;14315:1;14310;:6;;14302:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14373:1;14369;:5;14362:12;;14224:158;;;;:::o;56906:272::-;57020:28;57030:4;57036:2;57040:7;57020:9;:28::i;:::-;57067:48;57090:4;57096:2;57100:7;57109:5;57067:22;:48::i;:::-;57059:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56906:272;;;;:::o;14641:220::-;14699:7;14728:1;14723;:6;14719:20;;;14738:1;14731:8;;;;14719:20;14750:9;14766:1;14762;:5;14750:17;;14795:1;14790;14786;:5;;;;;;:10;14778:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14852:1;14845:8;;;14641:220;;;;;:::o;46439:746::-;46495:13;46725:1;46716:5;:10;46712:53;;;46743:10;;;;;;;;;;;;;;;;;;;;;46712:53;46775:12;46790:5;46775:20;;46806:14;46831:78;46846:1;46838:4;:9;46831:78;;46864:8;;;;;;;46895:2;46887:10;;;;;;;;;46831:78;;;46919:19;46951:6;46941:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46919:39;;46969:13;46994:1;46985:6;:10;46969:26;;47013:5;47006:12;;47029:117;47044:1;47036:4;:9;47029:117;;47105:2;47098:4;:9;;;;;;47093:2;:14;47080:29;;47062:6;47069:7;;;;;;;47062:15;;;;;;;;;;;:47;;;;;;;;;;;47132:2;47124:10;;;;;;;;;47029:117;;;47170:6;47156:21;;;;;;46439:746;;;;:::o;43992:151::-;44076:4;44100:35;44110:3;:10;;44130:3;44122:12;;44100:9;:35::i;:::-;44093:42;;43992:151;;;;:::o;40810:110::-;40866:7;40893:3;:12;;:19;;;;40886:26;;40810:110;;;:::o;64314:93::-;;;;:::o;35113:137::-;35183:4;35207:35;35215:3;:10;;35235:5;35227:14;;35207:7;:35::i;:::-;35200:42;;35113:137;;;;:::o;34806:131::-;34873:4;34897:32;34902:3;:10;;34922:5;34914:14;;34897:4;:32::i;:::-;34890:39;;34806:131;;;;:::o;43415:185::-;43504:4;43528:64;43533:3;:10;;43553:3;43545:12;;43583:5;43567:23;;43559:32;;43528:4;:64::i;:::-;43521:71;;43415:185;;;;;:::o;31064:204::-;31131:7;31180:5;31159:3;:11;;:18;;;;:26;31151:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31242:3;:11;;31254:5;31242:18;;;;;;;;;;;;;;;;31235:25;;31064:204;;;;:::o;41275:279::-;41342:7;41351;41401:5;41379:3;:12;;:19;;;;:27;41371:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41458:22;41483:3;:12;;41496:5;41483:19;;;;;;;;;;;;;;;;;;41458:44;;41521:5;:10;;;41533:5;:12;;;41513:33;;;;;41275:279;;;;;:::o;42772:319::-;42866:7;42886:16;42905:3;:12;;:17;42918:3;42905:17;;;;;;;;;;;;42886:36;;42953:1;42941:8;:13;;42956:12;42933:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43023:3;:12;;43047:1;43036:8;:12;43023:26;;;;;;;;;;;;;;;;;;:33;;;43016:40;;;42772:319;;;;;:::o;30611:109::-;30667:7;30694:3;:11;;:18;;;;30687:25;;30611:109;;;:::o;58820:250::-;58916:18;58922:2;58926:7;58916:5;:18::i;:::-;58953:54;58984:1;58988:2;58992:7;59001:5;58953:22;:54::i;:::-;58945:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58820:250;;;:::o;62786:604::-;62907:4;62934:15;:2;:13;;;:15::i;:::-;62929:60;;62973:4;62966:11;;;;62929:60;62999:23;63025:252;63078:45;;;63138:12;:10;:12::i;:::-;63165:4;63184:7;63206:5;63041:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63025:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;62999:278;;63288:13;63315:10;63304:32;;;;;;;;;;;;:::i;:::-;63288:48;;47935:10;63365:16;;63355:26;;;:6;:26;;;;63347:35;;;;62786:604;;;;;;;:::o;40590:125::-;40661:4;40706:1;40685:3;:12;;:17;40698:3;40685:17;;;;;;;;;;;;:22;;40678:29;;40590:125;;;;:::o;28766:1544::-;28832:4;28950:18;28971:3;:12;;:19;28984:5;28971:19;;;;;;;;;;;;28950:40;;29021:1;29007:10;:15;29003:1300;;29369:21;29406:1;29393:10;:14;29369:38;;29422:17;29463:1;29442:3;:11;;:18;;;;:22;29422:42;;29709:17;29729:3;:11;;29741:9;29729:22;;;;;;;;;;;;;;;;29709:42;;29875:9;29846:3;:11;;29858:13;29846:26;;;;;;;;;;;;;;;:38;;;;29994:1;29978:13;:17;29952:3;:12;;:23;29965:9;29952:23;;;;;;;;;;;:43;;;;30104:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30199:3;:12;;:19;30212:5;30199:19;;;;;;;;;;;30192:26;;;30242:4;30235:11;;;;;;;;29003:1300;30286:5;30279:12;;;28766:1544;;;;;:::o;28176:414::-;28239:4;28261:21;28271:3;28276:5;28261:9;:21::i;:::-;28256:327;;28299:3;:11;;28316:5;28299:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28482:3;:11;;:18;;;;28460:3;:12;;:19;28473:5;28460:19;;;;;;;;;;;:40;;;;28522:4;28515:11;;;;28256:327;28566:5;28559:12;;28176:414;;;;;:::o;38090:692::-;38166:4;38282:16;38301:3;:12;;:17;38314:3;38301:17;;;;;;;;;;;;38282:36;;38347:1;38335:8;:13;38331:444;;;38402:3;:12;;38420:38;;;;;;;;38437:3;38420:38;;;;38450:5;38420:38;;;38402:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38617:3;:12;;:19;;;;38597:3;:12;;:17;38610:3;38597:17;;;;;;;;;;;:39;;;;38658:4;38651:11;;;;;38331:444;38731:5;38695:3;:12;;38719:1;38708:8;:12;38695:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38758:5;38751:12;;;38090:692;;;;;;:::o;59406:404::-;59500:1;59486:16;;:2;:16;;;;59478:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59559:16;59567:7;59559;:16::i;:::-;59558:17;59550:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59621:45;59650:1;59654:2;59658:7;59621:20;:45::i;:::-;59679:30;59701:7;59679:13;:17;59693:2;59679:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59722:29;59739:7;59748:2;59722:12;:16;;:29;;;;;:::i;:::-;;59794:7;59790:2;59769:33;;59786:1;59769:33;;;;;;;;;;;;59406:404;;:::o;19199:422::-;19259:4;19467:12;19578:7;19566:20;19558:28;;19612:1;19605:4;:8;19598:15;;;19199:422;;;:::o;22117:195::-;22220:12;22252:52;22274:6;22282:4;22288:1;22291:12;22252:21;:52::i;:::-;22245:59;;22117:195;;;;;:::o;30396:129::-;30469:4;30516:1;30493:3;:12;;:19;30506:5;30493:19;;;;;;;;;;;;:24;;30486:31;;30396:129;;;;:::o;23169:530::-;23296:12;23354:5;23329:21;:30;;23321:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23421:18;23432:6;23421:10;:18::i;:::-;23413:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23547:12;23561:23;23588:6;:11;;23608:5;23616:4;23588:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23546:75;;;;23639:52;23657:7;23666:10;23678:12;23639:17;:52::i;:::-;23632:59;;;;23169:530;;;;;;:::o;25709:742::-;25824:12;25853:7;25849:595;;;25884:10;25877:17;;;;25849:595;26018:1;25998:10;:17;:21;25994:439;;;26261:10;26255:17;26322:15;26309:10;26305:2;26301:19;26294:44;26209:148;26404:12;26397:20;;;;;;;;;;;:::i;:::-;;;;;;;;25709:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8922:366::-;;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9182:34;9178:1;9173:3;9169:11;9162:55;9248:4;9243:2;9238:3;9234:12;9227:26;9279:2;9274:3;9270:12;9263:19;;9068:220;;;:::o;9294:382::-;;9457:67;9521:2;9516:3;9457:67;:::i;:::-;9450:74;;9554:34;9550:1;9545:3;9541:11;9534:55;9620:20;9615:2;9610:3;9606:12;9599:42;9667:2;9662:3;9658:12;9651:19;;9440:236;;;:::o;9682:370::-;;9845:67;9909:2;9904:3;9845:67;:::i;:::-;9838:74;;9942:34;9938:1;9933:3;9929:11;9922:55;10008:8;10003:2;9998:3;9994:12;9987:30;10043:2;10038:3;10034:12;10027:19;;9828:224;;;:::o;10058:326::-;;10221:67;10285:2;10280:3;10221:67;:::i;:::-;10214:74;;10318:30;10314:1;10309:3;10305:11;10298:51;10375:2;10370:3;10366:12;10359:19;;10204:180;;;:::o;10390:368::-;;10553:67;10617:2;10612:3;10553:67;:::i;:::-;10546:74;;10650:34;10646:1;10641:3;10637:11;10630:55;10716:6;10711:2;10706:3;10702:12;10695:28;10749:2;10744:3;10740:12;10733:19;;10536:222;;;:::o;10764:323::-;;10927:67;10991:2;10986:3;10927:67;:::i;:::-;10920:74;;11024:27;11020:1;11015:3;11011:11;11004:48;11078:2;11073:3;11069:12;11062:19;;10910:177;;;:::o;11093:316::-;;11256:67;11320:2;11315:3;11256:67;:::i;:::-;11249:74;;11353:20;11349:1;11344:3;11340:11;11333:41;11400:2;11395:3;11391:12;11384:19;;11239:170;;;:::o;11415:329::-;;11578:67;11642:2;11637:3;11578:67;:::i;:::-;11571:74;;11675:33;11671:1;11666:3;11662:11;11655:54;11735:2;11730:3;11726:12;11719:19;;11561:183;;;:::o;11750:328::-;;11913:67;11977:2;11972:3;11913:67;:::i;:::-;11906:74;;12010:32;12006:1;12001:3;11997:11;11990:53;12069:2;12064:3;12060:12;12053:19;;11896:182;;;:::o;12084:370::-;;12247:67;12311:2;12306:3;12247:67;:::i;:::-;12240:74;;12344:34;12340:1;12335:3;12331:11;12324:55;12410:8;12405:2;12400:3;12396:12;12389:30;12445:2;12440:3;12436:12;12429:19;;12230:224;;;:::o;12460:376::-;;12623:67;12687:2;12682:3;12623:67;:::i;:::-;12616:74;;12720:34;12716:1;12711:3;12707:11;12700:55;12786:14;12781:2;12776:3;12772:12;12765:36;12827:2;12822:3;12818:12;12811:19;;12606:230;;;:::o;12842:388::-;;13005:67;13069:2;13064:3;13005:67;:::i;:::-;12998:74;;13102:34;13098:1;13093:3;13089:11;13082:55;13168:26;13163:2;13158:3;13154:12;13147:48;13221:2;13216:3;13212:12;13205:19;;12988:242;;;:::o;13236:394::-;;13399:67;13463:2;13458:3;13399:67;:::i;:::-;13392:74;;13496:34;13492:1;13487:3;13483:11;13476:55;13562:32;13557:2;13552:3;13548:12;13541:54;13621:2;13616:3;13612:12;13605:19;;13382:248;;;:::o;13636:374::-;;13799:67;13863:2;13858:3;13799:67;:::i;:::-;13792:74;;13896:34;13892:1;13887:3;13883:11;13876:55;13962:12;13957:2;13952:3;13948:12;13941:34;14001:2;13996:3;13992:12;13985:19;;13782:228;;;:::o;14016:366::-;;14179:67;14243:2;14238:3;14179:67;:::i;:::-;14172:74;;14276:34;14272:1;14267:3;14263:11;14256:55;14342:4;14337:2;14332:3;14328:12;14321:26;14373:2;14368:3;14364:12;14357:19;;14162:220;;;:::o;14388:330::-;;14551:67;14615:2;14610:3;14551:67;:::i;:::-;14544:74;;14648:34;14644:1;14639:3;14635:11;14628:55;14709:2;14704:3;14700:12;14693:19;;14534:184;;;:::o;14724:365::-;;14887:67;14951:2;14946:3;14887:67;:::i;:::-;14880:74;;14984:34;14980:1;14975:3;14971:11;14964:55;15050:3;15045:2;15040:3;15036:12;15029:25;15080:2;15075:3;15071:12;15064:19;;14870:219;;;:::o;15095:376::-;;15258:67;15322:2;15317:3;15258:67;:::i;:::-;15251:74;;15355:34;15351:1;15346:3;15342:11;15335:55;15421:14;15416:2;15411:3;15407:12;15400:36;15462:2;15457:3;15453:12;15446:19;;15241:230;;;:::o;15477:330::-;;15640:67;15704:2;15699:3;15640:67;:::i;:::-;15633:74;;15737:34;15733:1;15728:3;15724:11;15717:55;15798:2;15793:3;15789:12;15782:19;;15623:184;;;:::o;15813:373::-;;15976:67;16040:2;16035:3;15976:67;:::i;:::-;15969:74;;16073:34;16069:1;16064:3;16060:11;16053:55;16139:11;16134:2;16129:3;16125:12;16118:33;16177:2;16172:3;16168:12;16161:19;;15959:227;;;:::o;16192:379::-;;16355:67;16419:2;16414:3;16355:67;:::i;:::-;16348:74;;16452:34;16448:1;16443:3;16439:11;16432:55;16518:17;16513:2;16508:3;16504:12;16497:39;16562:2;16557:3;16553:12;16546:19;;16338:233;;;:::o;16577:365::-;;16740:67;16804:2;16799:3;16740:67;:::i;:::-;16733:74;;16837:34;16833:1;16828:3;16824:11;16817:55;16903:3;16898:2;16893:3;16889:12;16882:25;16933:2;16928:3;16924:12;16917:19;;16723:219;;;:::o;16948:381::-;;17111:67;17175:2;17170:3;17111:67;:::i;:::-;17104:74;;17208:34;17204:1;17199:3;17195:11;17188:55;17274:19;17269:2;17264:3;17260:12;17253:41;17320:2;17315:3;17311:12;17304:19;;17094:235;;;:::o;17335:376::-;;17498:67;17562:2;17557:3;17498:67;:::i;:::-;17491:74;;17595:34;17591:1;17586:3;17582:11;17575:55;17661:14;17656:2;17651:3;17647:12;17640:36;17702:2;17697:3;17693:12;17686:19;;17481:230;;;:::o;17717:327::-;;17880:67;17944:2;17939:3;17880:67;:::i;:::-;17873:74;;17977:31;17973:1;17968:3;17964:11;17957:52;18035:2;18030:3;18026:12;18019:19;;17863:181;;;:::o;18050:322::-;;18213:67;18277:2;18272:3;18213:67;:::i;:::-;18206:74;;18310:26;18306:1;18301:3;18297:11;18290:47;18363:2;18358:3;18354:12;18347:19;;18196:176;;;:::o;18378:108::-;18455:24;18473:5;18455:24;:::i;:::-;18450:3;18443:37;18433:53;;:::o;18492:118::-;18579:24;18597:5;18579:24;:::i;:::-;18574:3;18567:37;18557:53;;:::o;18616:271::-;;18768:93;18857:3;18848:6;18768:93;:::i;:::-;18761:100;;18878:3;18871:10;;18750:137;;;;:::o;18893:435::-;;19095:95;19186:3;19177:6;19095:95;:::i;:::-;19088:102;;19207:95;19298:3;19289:6;19207:95;:::i;:::-;19200:102;;19319:3;19312:10;;19077:251;;;;;:::o;19334:222::-;;19465:2;19454:9;19450:18;19442:26;;19478:71;19546:1;19535:9;19531:17;19522:6;19478:71;:::i;:::-;19432:124;;;;:::o;19562:672::-;;19811:3;19800:9;19796:19;19788:27;;19825:87;19909:1;19898:9;19894:17;19885:6;19825:87;:::i;:::-;19922:72;19990:2;19979:9;19975:18;19966:6;19922:72;:::i;:::-;20004;20072:2;20061:9;20057:18;20048:6;20004:72;:::i;:::-;20123:9;20117:4;20113:20;20108:2;20097:9;20093:18;20086:48;20151:76;20222:4;20213:6;20151:76;:::i;:::-;20143:84;;19778:456;;;;;;;:::o;20240:373::-;;20421:2;20410:9;20406:18;20398:26;;20470:9;20464:4;20460:20;20456:1;20445:9;20441:17;20434:47;20498:108;20601:4;20592:6;20498:108;:::i;:::-;20490:116;;20388:225;;;;:::o;20619:210::-;;20744:2;20733:9;20729:18;20721:26;;20757:65;20819:1;20808:9;20804:17;20795:6;20757:65;:::i;:::-;20711:118;;;;:::o;20835:313::-;;20986:2;20975:9;20971:18;20963:26;;21035:9;21029:4;21025:20;21021:1;21010:9;21006:17;20999:47;21063:78;21136:4;21127:6;21063:78;:::i;:::-;21055:86;;20953:195;;;;:::o;21154:419::-;;21358:2;21347:9;21343:18;21335:26;;21407:9;21401:4;21397:20;21393:1;21382:9;21378:17;21371:47;21435:131;21561:4;21435:131;:::i;:::-;21427:139;;21325:248;;;:::o;21579:419::-;;21783:2;21772:9;21768:18;21760:26;;21832:9;21826:4;21822:20;21818:1;21807:9;21803:17;21796:47;21860:131;21986:4;21860:131;:::i;:::-;21852:139;;21750:248;;;:::o;22004:419::-;;22208:2;22197:9;22193:18;22185:26;;22257:9;22251:4;22247:20;22243:1;22232:9;22228:17;22221:47;22285:131;22411:4;22285:131;:::i;:::-;22277:139;;22175:248;;;:::o;22429:419::-;;22633:2;22622:9;22618:18;22610:26;;22682:9;22676:4;22672:20;22668:1;22657:9;22653:17;22646:47;22710:131;22836:4;22710:131;:::i;:::-;22702:139;;22600:248;;;:::o;22854:419::-;;23058:2;23047:9;23043:18;23035:26;;23107:9;23101:4;23097:20;23093:1;23082:9;23078:17;23071:47;23135:131;23261:4;23135:131;:::i;:::-;23127:139;;23025:248;;;:::o;23279:419::-;;23483:2;23472:9;23468:18;23460:26;;23532:9;23526:4;23522:20;23518:1;23507:9;23503:17;23496:47;23560:131;23686:4;23560:131;:::i;:::-;23552:139;;23450:248;;;:::o;23704:419::-;;23908:2;23897:9;23893:18;23885:26;;23957:9;23951:4;23947:20;23943:1;23932:9;23928:17;23921:47;23985:131;24111:4;23985:131;:::i;:::-;23977:139;;23875:248;;;:::o;24129:419::-;;24333:2;24322:9;24318:18;24310:26;;24382:9;24376:4;24372:20;24368:1;24357:9;24353:17;24346:47;24410:131;24536:4;24410:131;:::i;:::-;24402:139;;24300:248;;;:::o;24554:419::-;;24758:2;24747:9;24743:18;24735:26;;24807:9;24801:4;24797:20;24793:1;24782:9;24778:17;24771:47;24835:131;24961:4;24835:131;:::i;:::-;24827:139;;24725:248;;;:::o;24979:419::-;;25183:2;25172:9;25168:18;25160:26;;25232:9;25226:4;25222:20;25218:1;25207:9;25203:17;25196:47;25260:131;25386:4;25260:131;:::i;:::-;25252:139;;25150:248;;;:::o;25404:419::-;;25608:2;25597:9;25593:18;25585:26;;25657:9;25651:4;25647:20;25643:1;25632:9;25628:17;25621:47;25685:131;25811:4;25685:131;:::i;:::-;25677:139;;25575:248;;;:::o;25829:419::-;;26033:2;26022:9;26018:18;26010:26;;26082:9;26076:4;26072:20;26068:1;26057:9;26053:17;26046:47;26110:131;26236:4;26110:131;:::i;:::-;26102:139;;26000:248;;;:::o;26254:419::-;;26458:2;26447:9;26443:18;26435:26;;26507:9;26501:4;26497:20;26493:1;26482:9;26478:17;26471:47;26535:131;26661:4;26535:131;:::i;:::-;26527:139;;26425:248;;;:::o;26679:419::-;;26883:2;26872:9;26868:18;26860:26;;26932:9;26926:4;26922:20;26918:1;26907:9;26903:17;26896:47;26960:131;27086:4;26960:131;:::i;:::-;26952:139;;26850:248;;;:::o;27104:419::-;;27308:2;27297:9;27293:18;27285:26;;27357:9;27351:4;27347:20;27343:1;27332:9;27328:17;27321:47;27385:131;27511:4;27385:131;:::i;:::-;27377:139;;27275:248;;;:::o;27529:419::-;;27733:2;27722:9;27718:18;27710:26;;27782:9;27776:4;27772:20;27768:1;27757:9;27753:17;27746:47;27810:131;27936:4;27810:131;:::i;:::-;27802:139;;27700:248;;;:::o;27954:419::-;;28158:2;28147:9;28143:18;28135:26;;28207:9;28201:4;28197:20;28193:1;28182:9;28178:17;28171:47;28235:131;28361:4;28235:131;:::i;:::-;28227:139;;28125:248;;;:::o;28379:419::-;;28583:2;28572:9;28568:18;28560:26;;28632:9;28626:4;28622:20;28618:1;28607:9;28603:17;28596:47;28660:131;28786:4;28660:131;:::i;:::-;28652:139;;28550:248;;;:::o;28804:419::-;;29008:2;28997:9;28993:18;28985:26;;29057:9;29051:4;29047:20;29043:1;29032:9;29028:17;29021:47;29085:131;29211:4;29085:131;:::i;:::-;29077:139;;28975:248;;;:::o;29229:419::-;;29433:2;29422:9;29418:18;29410:26;;29482:9;29476:4;29472:20;29468:1;29457:9;29453:17;29446:47;29510:131;29636:4;29510:131;:::i;:::-;29502:139;;29400:248;;;:::o;29654:419::-;;29858:2;29847:9;29843:18;29835:26;;29907:9;29901:4;29897:20;29893:1;29882:9;29878:17;29871:47;29935:131;30061:4;29935:131;:::i;:::-;29927:139;;29825:248;;;:::o;30079:419::-;;30283:2;30272:9;30268:18;30260:26;;30332:9;30326:4;30322:20;30318:1;30307:9;30303:17;30296:47;30360:131;30486:4;30360:131;:::i;:::-;30352:139;;30250:248;;;:::o;30504:419::-;;30708:2;30697:9;30693:18;30685:26;;30757:9;30751:4;30747:20;30743:1;30732:9;30728:17;30721:47;30785:131;30911:4;30785:131;:::i;:::-;30777:139;;30675:248;;;:::o;30929:419::-;;31133:2;31122:9;31118:18;31110:26;;31182:9;31176:4;31172:20;31168:1;31157:9;31153:17;31146:47;31210:131;31336:4;31210:131;:::i;:::-;31202:139;;31100:248;;;:::o;31354:419::-;;31558:2;31547:9;31543:18;31535:26;;31607:9;31601:4;31597:20;31593:1;31582:9;31578:17;31571:47;31635:131;31761:4;31635:131;:::i;:::-;31627:139;;31525:248;;;:::o;31779:419::-;;31983:2;31972:9;31968:18;31960:26;;32032:9;32026:4;32022:20;32018:1;32007:9;32003:17;31996:47;32060:131;32186:4;32060:131;:::i;:::-;32052:139;;31950:248;;;:::o;32204:222::-;;32335:2;32324:9;32320:18;32312:26;;32348:71;32416:1;32405:9;32401:17;32392:6;32348:71;:::i;:::-;32302:124;;;;:::o;32432:278::-;;32498:2;32492:9;32482:19;;32540:4;32532:6;32528:17;32647:6;32635:10;32632:22;32611:18;32599:10;32596:34;32593:62;32590:2;;;32658:13;;:::i;:::-;32590:2;32693:10;32689:2;32682:22;32472:238;;;;:::o;32716:326::-;;32867:18;32859:6;32856:30;32853:2;;;32889:13;;:::i;:::-;32853:2;32969:4;32965:9;32958:4;32950:6;32946:17;32942:33;32934:41;;33030:4;33024;33020:15;33012:23;;32782:260;;;:::o;33048:327::-;;33200:18;33192:6;33189:30;33186:2;;;33222:13;;:::i;:::-;33186:2;33302:4;33298:9;33291:4;33283:6;33279:17;33275:33;33267:41;;33363:4;33357;33353:15;33345:23;;33115:260;;;:::o;33381:132::-;;33471:3;33463:11;;33501:4;33496:3;33492:14;33484:22;;33453:60;;;:::o;33519:114::-;;33620:5;33614:12;33604:22;;33593:40;;;:::o;33639:98::-;;33724:5;33718:12;33708:22;;33697:40;;;:::o;33743:99::-;;33829:5;33823:12;33813:22;;33802:40;;;:::o;33848:113::-;;33950:4;33945:3;33941:14;33933:22;;33923:38;;;:::o;33967:184::-;;34100:6;34095:3;34088:19;34140:4;34135:3;34131:14;34116:29;;34078:73;;;;:::o;34157:168::-;;34274:6;34269:3;34262:19;34314:4;34309:3;34305:14;34290:29;;34252:73;;;;:::o;34331:147::-;;34469:3;34454:18;;34444:34;;;;:::o;34484:169::-;;34602:6;34597:3;34590:19;34642:4;34637:3;34633:14;34618:29;;34580:73;;;;:::o;34659:148::-;;34798:3;34783:18;;34773:34;;;;:::o;34813:96::-;;34879:24;34897:5;34879:24;:::i;:::-;34868:35;;34858:51;;;:::o;34915:104::-;;34989:24;35007:5;34989:24;:::i;:::-;34978:35;;34968:51;;;:::o;35025:90::-;;35102:5;35095:13;35088:21;35077:32;;35067:48;;;:::o;35121:149::-;;35197:66;35190:5;35186:78;35175:89;;35165:105;;;:::o;35276:126::-;;35353:42;35346:5;35342:54;35331:65;;35321:81;;;:::o;35408:77::-;;35474:5;35463:16;;35453:32;;;:::o;35491:154::-;35575:6;35570:3;35565;35552:30;35637:1;35628:6;35623:3;35619:16;35612:27;35542:103;;;:::o;35651:307::-;35719:1;35729:113;35743:6;35740:1;35737:13;35729:113;;;35828:1;35823:3;35819:11;35813:18;35809:1;35804:3;35800:11;35793:39;35765:2;35762:1;35758:10;35753:15;;35729:113;;;35860:6;35857:1;35854:13;35851:2;;;35940:1;35931:6;35926:3;35922:16;35915:27;35851:2;35700:258;;;;:::o;35964:48::-;35997:9;36018:102;;36110:2;36106:7;36101:2;36094:5;36090:14;36086:28;36076:38;;36066:54;;;:::o;36126:122::-;36199:24;36217:5;36199:24;:::i;:::-;36192:5;36189:35;36179:2;;36238:1;36235;36228:12;36179:2;36169:79;:::o;36254:116::-;36324:21;36339:5;36324:21;:::i;:::-;36317:5;36314:32;36304:2;;36360:1;36357;36350:12;36304:2;36294:76;:::o;36376:120::-;36448:23;36465:5;36448:23;:::i;:::-;36441:5;36438:34;36428:2;;36486:1;36483;36476:12;36428:2;36418:78;:::o;36502:122::-;36575:24;36593:5;36575:24;:::i;:::-;36568:5;36565:35;36555:2;;36614:1;36611;36604:12;36555:2;36545:79;:::o
Swarm Source
ipfs://5e7172c4ee26450db948ee05128ff52e7016f452aebaede669a84cdfd148766e
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.