ERC-20
Overview
Max Total Supply
199,999,862,001,252.210534541804480724 $Imagination
Holders
7
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
137,998,747.789465458195519276 $ImaginationValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Imagination
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-16 */ /** Just imagine this is the first ever launched BONE token. You can create yourself a name that sounds bullsh to you. You will never wake from this dream after you bought it. $imagination */ // SPDX-License-Identifier: UNLICENSED // Sources flattened with hardhat v2.9.2 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] 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/access/[email protected] pragma solidity ^0.7.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 {transferOwnerImaginationp}. * * 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 OwnerImaginationpTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnerImaginationpTransferred(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 ownerImaginationp will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnerImaginationp() public virtual onlyOwner { emit OwnerImaginationpTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownerImaginationp of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnerImaginationp(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnerImaginationpTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.7.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/math/[email protected] pragma solidity ^0.7.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/token/ERC20/[email protected] pragma solidity ^0.7.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationImaginationp between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slaImaginationng mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.7.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/token/ERC20/[email protected] pragma solidity ^0.7.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.7.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @uniswap/v3-core/contracts/libraries/[email protected] pragma solidity >=0.4.0 <0.8.0; /// @title Contains 512-bit math functions /// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision /// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits library FullMath { /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 /// @param a The multiplicand /// @param b The multiplier /// @param denominator The divisor /// @return result The 256-bit result /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv function mulDiv( uint256 a, uint256 b, uint256 denominator ) internal pure returns (uint256 result) { // 512-bit multiply [prod1 prod0] = a * b // Compute the product mod 2**256 and mod 2**256 - 1 // then use the Chinese Remainder Theorem to reconstruct // the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2**256 + prod0 uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(a, b, not(0)) prod0 := mul(a, b) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division if (prod1 == 0) { require(denominator > 0); assembly { result := div(prod0, denominator) } return result; } // Make sure the result is less than 2**256. // Also prevents denominator == 0 require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0] // Compute remainder using mulmod uint256 remainder; assembly { remainder := mulmod(a, b, denominator) } // Subtract 256 bit number from 512 bit number assembly { prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator // Compute largest power of two divisor of denominator. // Always >= 1. uint256 twos = -denominator & denominator; // Divide denominator by power of two assembly { denominator := div(denominator, twos) } // Divide [prod1 prod0] by the factors of two assembly { prod0 := div(prod0, twos) } // Imaginationft in bits from prod1 into prod0. For this we need // to flip `twos` such that it is 2**256 / twos. // If twos is zero, then it becomes one assembly { twos := add(div(sub(0, twos), twos), 1) } prod0 |= prod1 * twos; // Invert denominator mod 2**256 // Now that denominator is an odd number, it has an inverse // modulo 2**256 such that denominator * inv = 1 mod 2**256. // Compute the inverse by starting with a seed that is correct // correct for four bits. That is, denominator * inv = 1 mod 2**4 uint256 inv = (3 * denominator) ^ 2; // Now use Newton-Raphson iteration to improve the precision. // Thanks to Hensel's lifting lemma, this also works in modular // arithmetic, doubling the correct bits in each step. inv *= 2 - denominator * inv; // inverse mod 2**8 inv *= 2 - denominator * inv; // inverse mod 2**16 inv *= 2 - denominator * inv; // inverse mod 2**32 inv *= 2 - denominator * inv; // inverse mod 2**64 inv *= 2 - denominator * inv; // inverse mod 2**128 inv *= 2 - denominator * inv; // inverse mod 2**256 // Because the division is now exact we can divide by multiplying // with the modular inverse of denominator. This will give us the // correct result modulo 2**256. Since the precoditions guarantee // that the outcome is less than 2**256, this is the final result. // We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inv; return result; } /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 /// @param a The multiplicand /// @param b The multiplier /// @param denominator The divisor /// @return result The 256-bit result function mulDivRoundingUp( uint256 a, uint256 b, uint256 denominator ) internal pure returns (uint256 result) { result = mulDiv(a, b, denominator); if (mulmod(a, b, denominator) > 0) { require(result < type(uint256).max); result++; } } } // File @uniswap/v3-core/contracts/libraries/[email protected] pragma solidity >=0.7.0; /// @title Optimized overflow and underflow safe math operations /// @notice Contains methods for doing math operations that revert on overflow or underflow for minimal gas cost library LowGasSafeMath { /// @notice Returns x + y, reverts if sum overflows uint256 /// @param x The augend /// @param y The addend /// @return z The sum of x and y function add(uint256 x, uint256 y) internal pure returns (uint256 z) { require((z = x + y) >= x); } /// @notice Returns x - y, reverts if underflows /// @param x The minuend /// @param y The subtrahend /// @return z The difference of x and y function sub(uint256 x, uint256 y) internal pure returns (uint256 z) { require((z = x - y) <= x); } /// @notice Returns x * y, reverts if overflows /// @param x The multiplicand /// @param y The multiplier /// @return z The product of x and y function mul(uint256 x, uint256 y) internal pure returns (uint256 z) { require(x == 0 || (z = x * y) / x == y); } /// @notice Returns x + y, reverts if overflows or underflows /// @param x The augend /// @param y The addend /// @return z The sum of x and y function add(int256 x, int256 y) internal pure returns (int256 z) { require((z = x + y) >= x == (y >= 0)); } /// @notice Returns x - y, reverts if overflows or underflows /// @param x The minuend /// @param y The subtrahend /// @return z The difference of x and y function sub(int256 x, int256 y) internal pure returns (int256 z) { require((z = x - y) <= x == (y >= 0)); } } // File contracts/Imagination.sol pragma solidity ^0.7.6; /** * @title Imagination ERC-20 token Contract */ contract Imagination is Ownable, ERC20, Pausable { using LowGasSafeMath for uint256; using FullMath for uint256; using SafeERC20 for IERC20; /// @notice Event emitted when tax rate changes event taxChanged(uint256 _taxRate); /// @notice Event emitted when bot tax rate changes event botTaxChanged(uint256 _botTaxRate); /// @notice Event emitted when add or remove size free account event sizeFreeChanged(address _sizeFreeAccount); /// @notice Event emitted when add or remove tax free account event taxFreeChanged(address _taxFreeAccount); /// @notice Event emitted when add or remove blacklistWallet event blacklistWalletChanged(address _blacklistWalletAccount); /// @notice Event emitted when add or remove botWallet event botWalletChanged(address _botWalletAccount); /// @notice Event emitted when burn address changes event burnAddressChanged(address _newBurnAddress); /// @notice Event emitted when transfer Imagination token with fee event transferWithTax( address _sender, address _recipient, uint256 amount, uint256 _burnAmount ); address public burnWallet = 0xd26Cc7C8D96F6Ca5291758d266447f6879A66E16; uint256 internal constant maxSupply = 10**33; mapping(address => bool) public taxFree; mapping(address => bool) public sizeFree; mapping(address => bool) public blacklistWallet; mapping(address => bool) public botWallet; uint256 public taxRate = 99; // basis points, 10000 is 100%; start high for anti-sniping uint256 public botTaxRate = 90; // 9% bot tax /** * @dev Constructor */ constructor() ERC20("TheImaginationOfTheFirstBONEToken", "$Imagination") { _mint(_msgSender(), 2 * 10**32); taxFree[_msgSender()] = true; sizeFree[_msgSender()] = true; } /** * @dev External function to set tax Rate * @param _taxRate New tax Rate in basis points */ function setTaxRate(uint256 _taxRate) external onlyOwner { require(_taxRate >= 0, "TaxRate above zero"); require(_taxRate <= 10000, "TaxRate below max"); taxRate = _taxRate; emit taxChanged(_taxRate); } /** * @dev External function to set bot tax Rate * @param _botTaxRate New tax Rate in basis points */ function setBotRate(uint256 _botTaxRate) external onlyOwner { require(_botTaxRate >= 0, "TaxRate above zero"); require(_botTaxRate <= 10000, "TaxRate below max"); botTaxRate = _botTaxRate; emit botTaxChanged(_botTaxRate); } /** * @dev Add or remove tax free accounts * @param _account target address to set or remove from the tax free account list */ function setTaxFree(address _account) external onlyOwner { if (taxFree[_account]) { delete taxFree[_account]; } else { taxFree[_account] = true; } emit taxFreeChanged(_account); } /** * @dev Add or remove size free accounts * @param _account target address to set or remove from the size free account list */ function setSizeFree(address _account) external onlyOwner { if (sizeFree[_account]) { delete sizeFree[_account]; } else { sizeFree[_account] = true; } emit sizeFreeChanged(_account); } /** * @dev Add or remove blacklist wallet accounts * @param _account target address to set or remove from the blacklist account list */ function setBlacklistWallet(address _account) external onlyOwner { if (blacklistWallet[_account]) { delete blacklistWallet[_account]; } else { blacklistWallet[_account] = true; } emit blacklistWalletChanged(_account); } /** * @dev Add or remove bot wallet accounts * @param _account target address to set or remove from the bot account list */ function setBotWallet(address _account) external onlyOwner { if (botWallet[_account]) { delete botWallet[_account]; } else { botWallet[_account] = true; } emit botWalletChanged(_account); } /** * @dev Custom transfer function * @param sender Sender address * @param recipient Recipient address * @param amount Amount to transfer */ function _transfer( address sender, address recipient, uint256 amount ) internal override whenNotPaused { require(balanceOf(sender) >= amount, "Not enough tokens"); //black listed wallets are not welcome, sorry! require( !blacklistWallet[sender] && !blacklistWallet[recipient], "Not welcome!" ); if (!sizeFree[recipient]) { require( balanceOf(recipient).add(amount) <= 3 * 10**31, "Transfer exceeds max wallet" ); //3% max } //bots pay higher tax, sorry! uint256 _taxApplied = (botWallet[sender] || botWallet[recipient]) ? botTaxRate : taxRate; //Divide by 20000 for the 50-50% split uint256 _burnAmount = (taxFree[sender] || taxFree[recipient]) ? 0 : FullMath.mulDiv(amount, _taxApplied, 20000); if (_burnAmount > 0) { _burn(sender, _burnAmount); //burn Imagination ERC20._transfer(sender, burnWallet, _burnAmount); //burn Civ to dedicated wallet } ERC20._transfer(sender, recipient, amount - (_burnAmount.mul(2))); //then transfer emit transferWithTax(sender, recipient, amount, _burnAmount); } /** * @dev Set burn address * @param _burnAddress New burn address */ function setBurnAddress(address _burnAddress) external onlyOwner { burnWallet = _burnAddress; emit burnAddressChanged(burnWallet); } /** * @dev Mint new Imagination tokens * @param count Amount to mint */ function mintToken(uint256 count) external onlyOwner { require(totalSupply() + count <= maxSupply, "Mint above maxSupply"); _mint(_msgSender(), count); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } /* Just in case anyone sends tokens by accident to this contract */ /// @notice Transfers ETH to the recipient address /// @dev Fails with `STE` /// @param to The destination of the transfer /// @param value The value to be transferred function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); require(success, "STE"); } function withdrawETH() external payable onlyOwner { safeTransferETH(_msgSender(), address(this).balance); } function withdrawERC20(IERC20 _tokenContract) external onlyOwner { _tokenContract.safeTransfer( _msgSender(), _tokenContract.balanceOf(address(this)) ); } /** * @dev allow the contract to receive ETH * without payable fallback and receive, it would fail */ fallback() external payable {} receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerImaginationpTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_blacklistWalletAccount","type":"address"}],"name":"blacklistWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_botTaxRate","type":"uint256"}],"name":"botTaxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_botWalletAccount","type":"address"}],"name":"botWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newBurnAddress","type":"address"}],"name":"burnAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_sizeFreeAccount","type":"address"}],"name":"sizeFreeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"taxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxFreeAccount","type":"address"}],"name":"taxFreeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_sender","type":"address"},{"indexed":false,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_burnAmount","type":"uint256"}],"name":"transferWithTax","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"botWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnerImaginationp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setBlacklistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_botTaxRate","type":"uint256"}],"name":"setBotRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_burnAddress","type":"address"}],"name":"setBurnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setSizeFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setTaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sizeFree","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":"address","name":"","type":"address"}],"name":"taxFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnerImaginationp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_tokenContract","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526006805462010000600160b01b03191675d26cc7c8d96f6ca5291758d266447f6879a66e1600001790556063600b55605a600c553480156200004557600080fd5b5060405180606001604052806021815260200162002b526021913960408051808201909152600c81526b1224b6b0b3b4b730ba34b7b760a11b602082015260006200008f620001b7565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f4f7050c9885b4244eada99e1375fef3c1988b6849bec7c19481243539d6ca070908290a3508151620000ee90600490602085019062000335565b5080516200010490600590602084019062000335565b50506006805461ff001960ff19909116601217169055506200013e62000129620001b7565b6d09dc5ada82b70b59df0200000000620001bb565b6001600760006200014e620001b7565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560019060089062000189620001b7565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620003e1565b3390565b6001600160a01b03821662000217576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200022560008383620002ce565b6200024181600354620002d360201b620016eb1790919060201c565b6003556001600160a01b03821660009081526001602090815260409091205462000276918390620016eb620002d3821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200032e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200036d5760008555620003b8565b82601f106200038857805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b85782518255916020019190600101906200039b565b50620003c6929150620003ca565b5090565b5b80821115620003c65760008155600101620003cb565b61276180620003f16000396000f3fe6080604052600436106101fc5760003560e01c80636fb3793f1161010d578063a457c2d7116100a0578063dd62ed3e1161006f578063dd62ed3e1461073e578063e086e5ec14610779578063f2b9aa1114610781578063f4f3b200146107b4578063f5dc097a146107e757610203565b8063a457c2d714610678578063a9059cbb146106b1578063c634d032146106ea578063c6d69a301461071457610203565b80638da5cb5b116100dc5780638da5cb5b1461060657806395d89b411461061b5780639cbc1ad6146106305780639fe733641461066357610203565b80636fb3793f1461057657806370a08231146105a9578063771a3a1d146105dc5780638456cb59146105f157610203565b8063313ce56711610190578063564544941161015f57806356454494146104bc5780635c975abb146104ef5780635cc213b71461050457806362441bf6146105195780636e70a3911461054c57610203565b8063313ce56714610410578063395093511461043b5780633f4ba83a146104745780634b0e72161461048957610203565b8063095ea7b3116101cc578063095ea7b31461033a578063118130071461037357806318160ddd146103a657806323b872dd146103cd57610203565b80627d3a4d1461020557806304dc3c7f14610238578063062287491461027f57806306fdde03146102b057610203565b3661020357005b005b34801561021157600080fd5b506102036004803603602081101561022857600080fd5b50356001600160a01b031661081a565b34801561024457600080fd5b5061026b6004803603602081101561025b57600080fd5b50356001600160a01b031661091c565b604080519115158252519081900360200190f35b34801561028b57600080fd5b50610294610931565b604080516001600160a01b039092168252519081900360200190f35b3480156102bc57600080fd5b506102c5610946565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ff5781810151838201526020016102e7565b50505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034657600080fd5b5061026b6004803603604081101561035d57600080fd5b506001600160a01b0381351690602001356109dc565b34801561037f57600080fd5b506102036004803603602081101561039657600080fd5b50356001600160a01b03166109fa565b3480156103b257600080fd5b506103bb610b05565b60408051918252519081900360200190f35b3480156103d957600080fd5b5061026b600480360360608110156103f057600080fd5b506001600160a01b03813581169160208101359091169060400135610b0b565b34801561041c57600080fd5b50610425610b93565b6040805160ff9092168252519081900360200190f35b34801561044757600080fd5b5061026b6004803603604081101561045e57600080fd5b506001600160a01b038135169060200135610b9c565b34801561048057600080fd5b50610203610bea565b34801561049557600080fd5b50610203600480360360208110156104ac57600080fd5b50356001600160a01b0316610c56565b3480156104c857600080fd5b50610203600480360360208110156104df57600080fd5b50356001600160a01b0316610d1e565b3480156104fb57600080fd5b5061026b610e28565b34801561051057600080fd5b50610203610e36565b34801561052557600080fd5b5061026b6004803603602081101561053c57600080fd5b50356001600160a01b0316610ee2565b34801561055857600080fd5b506102036004803603602081101561056f57600080fd5b5035610ef7565b34801561058257600080fd5b506102036004803603602081101561059957600080fd5b50356001600160a01b0316610fdf565b3480156105b557600080fd5b506103bb600480360360208110156105cc57600080fd5b50356001600160a01b03166110ea565b3480156105e857600080fd5b506103bb611105565b3480156105fd57600080fd5b5061020361110b565b34801561061257600080fd5b50610294611175565b34801561062757600080fd5b506102c5611184565b34801561063c57600080fd5b5061026b6004803603602081101561065357600080fd5b50356001600160a01b03166111e5565b34801561066f57600080fd5b506103bb6111fa565b34801561068457600080fd5b5061026b6004803603604081101561069b57600080fd5b506001600160a01b038135169060200135611200565b3480156106bd57600080fd5b5061026b600480360360408110156106d457600080fd5b506001600160a01b038135169060200135611268565b3480156106f657600080fd5b506102036004803603602081101561070d57600080fd5b503561127c565b34801561072057600080fd5b506102036004803603602081101561073757600080fd5b5035611355565b34801561074a57600080fd5b506103bb6004803603604081101561076157600080fd5b506001600160a01b038135811691602001351661143d565b610203611468565b34801561078d57600080fd5b5061026b600480360360208110156107a457600080fd5b50356001600160a01b03166114db565b3480156107c057600080fd5b50610203600480360360208110156107d757600080fd5b50356001600160a01b03166114f0565b3480156107f357600080fd5b506102036004803603602081101561080a57600080fd5b50356001600160a01b03166115e0565b610822611745565b6001600160a01b0316610833611175565b6001600160a01b03161461087c576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b0381166108c15760405162461bcd60e51b81526004018080602001828103825260268152602001806125976026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f4f7050c9885b4244eada99e1375fef3c1988b6849bec7c19481243539d6ca07091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205460ff1681565b6006546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109d25780601f106109a7576101008083540402835291602001916109d2565b820191906000526020600020905b8154815290600101906020018083116109b557829003601f168201915b5050505050905090565b60006109f06109e9611745565b8484611749565b5060015b92915050565b610a02611745565b6001600160a01b0316610a13611175565b6001600160a01b031614610a5c576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1615610aa2576001600160a01b0381166000908152600960205260409020805460ff19169055610ac6565b6001600160a01b0381166000908152600960205260409020805460ff191660011790555b604080516001600160a01b038316815290517f2553178028497e8f15dc736724f7130d3e851abddf3ca73d4577ec68bad3421d9181900360200190a150565b60035490565b6000610b18848484611835565b610b8884610b24611745565b610b838560405180606001604052806028815260200161262b602891396001600160a01b038a16600090815260026020526040812090610b62611745565b6001600160a01b031681526020810191909152604001600020549190611b34565b611749565b5060015b9392505050565b60065460ff1690565b60006109f0610ba9611745565b84610b838560026000610bba611745565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906116eb565b610bf2611745565b6001600160a01b0316610c03611175565b6001600160a01b031614610c4c576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b610c54611bcb565b565b610c5e611745565b6001600160a01b0316610c6f611175565b6001600160a01b031614610cb8576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b600680546001600160a01b038084166201000090810262010000600160b01b03199093169290921792839055604080519290930416815290517f9e32b4c40dca0b28c17140371d7265dbdb8cd035570155289d304519701026a29181900360200190a150565b610d26611745565b6001600160a01b0316610d37611175565b6001600160a01b031614610d80576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610dc6576001600160a01b0381166000908152600760205260409020805460ff19169055610dea565b6001600160a01b0381166000908152600760205260409020805460ff191660011790555b604080516001600160a01b038316815290517ec7ce2789cea79843f35fd3ceef7d293f0bda6665368ddb5bab44ac088f747e9181900360200190a150565b600654610100900460ff1690565b610e3e611745565b6001600160a01b0316610e4f611175565b6001600160a01b031614610e98576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f4f7050c9885b4244eada99e1375fef3c1988b6849bec7c19481243539d6ca070908390a3600080546001600160a01b0319169055565b60096020526000908152604090205460ff1681565b610eff611745565b6001600160a01b0316610f10611175565b6001600160a01b031614610f59576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b612710811115610fa4576040805162461bcd60e51b81526020600482015260116024820152700a8c2f0a4c2e8ca40c4cad8deee40dac2f607b1b604482015290519081900360640190fd5b600c8190556040805182815290517f7c8d3de91e8bac701f976dd5900640956f37d4f26799f84a7817dacddaec5b779181900360200190a150565b610fe7611745565b6001600160a01b0316610ff8611175565b6001600160a01b031614611041576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1615611087576001600160a01b0381166000908152600860205260409020805460ff191690556110ab565b6001600160a01b0381166000908152600860205260409020805460ff191660011790555b604080516001600160a01b038316815290517f654748d37c6a091d2a3b5a78cc1ff361ebad61ff28bbee1add5af032ba0ddf2b9181900360200190a150565b6001600160a01b031660009081526001602052604090205490565b600b5481565b611113611745565b6001600160a01b0316611124611175565b6001600160a01b03161461116d576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b610c54611c6c565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109d25780601f106109a7576101008083540402835291602001916109d2565b600a6020526000908152604090205460ff1681565b600c5481565b60006109f061120d611745565b84610b83856040518060600160405280602581526020016127076025913960026000611237611745565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b34565b60006109f0611275611745565b8484611835565b611284611745565b6001600160a01b0316611295611175565b6001600160a01b0316146112de576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6d314dc6448d9338c15b0a00000000816112f6610b05565b011115611341576040805162461bcd60e51b81526020600482015260146024820152734d696e742061626f7665206d6178537570706c7960601b604482015290519081900360640190fd5b61135261134c611745565b82611cf1565b50565b61135d611745565b6001600160a01b031661136e611175565b6001600160a01b0316146113b7576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b612710811115611402576040805162461bcd60e51b81526020600482015260116024820152700a8c2f0a4c2e8ca40c4cad8deee40dac2f607b1b604482015290519081900360640190fd5b600b8190556040805182815290517f9ae027aa81ddce6169039395a048d6f9e2ad4dc0eeaeeac580527f08f35e6f8e9181900360200190a150565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611470611745565b6001600160a01b0316611481611175565b6001600160a01b0316146114ca576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b610c546114d5611745565b47611de3565b60076020526000908152604090205460ff1681565b6114f8611745565b6001600160a01b0316611509611175565b6001600160a01b031614611552576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b61135261155d611745565b604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156115a357600080fd5b505afa1580156115b7573d6000803e3d6000fd5b505050506040513d60208110156115cd57600080fd5b50516001600160a01b0384169190611ed7565b6115e8611745565b6001600160a01b03166115f9611175565b6001600160a01b031614611642576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611688576001600160a01b0381166000908152600a60205260409020805460ff191690556116ac565b6001600160a01b0381166000908152600a60205260409020805460ff191660011790555b604080516001600160a01b038316815290517fcfd3a75fb583511b8400cdde6a27635dbf2b8cca8dd51e017bd97a751b4bea5b9181900360200190a150565b600082820183811015610b8c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b03831661178e5760405162461bcd60e51b81526004018080602001828103825260248152602001806126b96024913960400191505060405180910390fd5b6001600160a01b0382166117d35760405162461bcd60e51b81526004018080602001828103825260228152602001806125bd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b61183d610e28565b15611882576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b8061188c846110ea565b10156118d3576040805162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820746f6b656e7360781b604482015290519081900360640190fd5b6001600160a01b03831660009081526009602052604090205460ff1615801561191557506001600160a01b03821660009081526009602052604090205460ff16155b611955576040805162461bcd60e51b815260206004820152600c60248201526b4e6f742077656c636f6d652160a01b604482015290519081900360640190fd5b6001600160a01b03821660009081526008602052604090205460ff166119ea576d017aa73a606841b3e1738000000061199782611991856110ea565b90611f29565b11156119ea576040805162461bcd60e51b815260206004820152601b60248201527f5472616e736665722065786365656473206d61782077616c6c65740000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604081205460ff1680611a2957506001600160a01b0383166000908152600a602052604090205460ff165b611a3557600b54611a39565b600c545b6001600160a01b0385166000908152600760205260408120549192509060ff1680611a7c57506001600160a01b03841660009081526007602052604090205460ff165b611a9257611a8d8383614e20611f39565b611a95565b60005b90508015611ac557611aa78582611fe8565b600654611ac59086906201000090046001600160a01b0316836120e4565b611adc8585611ad5846002612241565b86036120e4565b604080516001600160a01b038088168252861660208201528082018590526060810183905290517f0b0a49c8d042a49a5fa9f59858363cafadba1d4e36cd681f0e240a40e4cf765a9181900360800190a15050505050565b60008184841115611bc35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b88578181015183820152602001611b70565b50505050905090810190601f168015611bb55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611bd3610e28565b611c1b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c4f611745565b604080516001600160a01b039092168252519081900360200190a1565b611c74610e28565b15611cb9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c4f611745565b6001600160a01b038216611d4c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611d5860008383611ed2565b600354611d6590826116eb565b6003556001600160a01b038216600090815260016020526040902054611d8b90826116eb565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b60208310611e2f5780518252601f199092019160209182019101611e10565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611e91576040519150601f19603f3d011682016040523d82523d6000602084013e611e96565b606091505b5050905080611ed2576040805162461bcd60e51b815260206004820152600360248201526253544560e81b604482015290519081900360640190fd5b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611ed2908490612265565b808201828110156109f457600080fd5b6000808060001985870986860292508281109083900303905080611f6f5760008411611f6457600080fd5b508290049050610b8c565b808411611f7b57600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6001600160a01b03821661202d5760405162461bcd60e51b81526004018080602001828103825260218152602001806126736021913960400191505060405180910390fd5b61203982600083611ed2565b61207681604051806060016040528060228152602001612575602291396001600160a01b0385166000908152600160205260409020549190611b34565b6001600160a01b03831660009081526001602052604090205560035461209c9082612316565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0383166121295760405162461bcd60e51b81526004018080602001828103825260258152602001806126946025913960400191505060405180910390fd5b6001600160a01b03821661216e5760405162461bcd60e51b81526004018080602001828103825260238152602001806125526023913960400191505060405180910390fd5b612179838383611ed2565b6121b6816040518060600160405280602681526020016125df602691396001600160a01b0386166000908152600160205260409020549190611b34565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546121e590826116eb565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082158061225c5750508181028183828161225957fe5b04145b6109f457600080fd5b60006122ba826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123739092919063ffffffff16565b805190915015611ed2578080602001905160208110156122d957600080fd5b5051611ed25760405162461bcd60e51b815260040180806020018281038252602a8152602001806126dd602a913960400191505060405180910390fd5b60008282111561236d576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6060612382848460008561238a565b949350505050565b6060824710156123cb5760405162461bcd60e51b81526004018080602001828103825260268152602001806126056026913960400191505060405180910390fd5b6123d4856124e5565b612425576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106124635780518252601f199092019160209182019101612444565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146124c5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ca565b606091505b50915091506124da8282866124eb565b979650505050505050565b3b151590565b606083156124fa575081610b8c565b82511561250a5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611b88578181015183820152602001611b7056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204c9f73300b3d475c07333558b461494f4f1965b091801cd175537d9b81ffff9964736f6c63430007060033546865496d6167696e6174696f6e4f665468654669727374424f4e45546f6b656e
Deployed Bytecode
0x6080604052600436106101fc5760003560e01c80636fb3793f1161010d578063a457c2d7116100a0578063dd62ed3e1161006f578063dd62ed3e1461073e578063e086e5ec14610779578063f2b9aa1114610781578063f4f3b200146107b4578063f5dc097a146107e757610203565b8063a457c2d714610678578063a9059cbb146106b1578063c634d032146106ea578063c6d69a301461071457610203565b80638da5cb5b116100dc5780638da5cb5b1461060657806395d89b411461061b5780639cbc1ad6146106305780639fe733641461066357610203565b80636fb3793f1461057657806370a08231146105a9578063771a3a1d146105dc5780638456cb59146105f157610203565b8063313ce56711610190578063564544941161015f57806356454494146104bc5780635c975abb146104ef5780635cc213b71461050457806362441bf6146105195780636e70a3911461054c57610203565b8063313ce56714610410578063395093511461043b5780633f4ba83a146104745780634b0e72161461048957610203565b8063095ea7b3116101cc578063095ea7b31461033a578063118130071461037357806318160ddd146103a657806323b872dd146103cd57610203565b80627d3a4d1461020557806304dc3c7f14610238578063062287491461027f57806306fdde03146102b057610203565b3661020357005b005b34801561021157600080fd5b506102036004803603602081101561022857600080fd5b50356001600160a01b031661081a565b34801561024457600080fd5b5061026b6004803603602081101561025b57600080fd5b50356001600160a01b031661091c565b604080519115158252519081900360200190f35b34801561028b57600080fd5b50610294610931565b604080516001600160a01b039092168252519081900360200190f35b3480156102bc57600080fd5b506102c5610946565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ff5781810151838201526020016102e7565b50505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034657600080fd5b5061026b6004803603604081101561035d57600080fd5b506001600160a01b0381351690602001356109dc565b34801561037f57600080fd5b506102036004803603602081101561039657600080fd5b50356001600160a01b03166109fa565b3480156103b257600080fd5b506103bb610b05565b60408051918252519081900360200190f35b3480156103d957600080fd5b5061026b600480360360608110156103f057600080fd5b506001600160a01b03813581169160208101359091169060400135610b0b565b34801561041c57600080fd5b50610425610b93565b6040805160ff9092168252519081900360200190f35b34801561044757600080fd5b5061026b6004803603604081101561045e57600080fd5b506001600160a01b038135169060200135610b9c565b34801561048057600080fd5b50610203610bea565b34801561049557600080fd5b50610203600480360360208110156104ac57600080fd5b50356001600160a01b0316610c56565b3480156104c857600080fd5b50610203600480360360208110156104df57600080fd5b50356001600160a01b0316610d1e565b3480156104fb57600080fd5b5061026b610e28565b34801561051057600080fd5b50610203610e36565b34801561052557600080fd5b5061026b6004803603602081101561053c57600080fd5b50356001600160a01b0316610ee2565b34801561055857600080fd5b506102036004803603602081101561056f57600080fd5b5035610ef7565b34801561058257600080fd5b506102036004803603602081101561059957600080fd5b50356001600160a01b0316610fdf565b3480156105b557600080fd5b506103bb600480360360208110156105cc57600080fd5b50356001600160a01b03166110ea565b3480156105e857600080fd5b506103bb611105565b3480156105fd57600080fd5b5061020361110b565b34801561061257600080fd5b50610294611175565b34801561062757600080fd5b506102c5611184565b34801561063c57600080fd5b5061026b6004803603602081101561065357600080fd5b50356001600160a01b03166111e5565b34801561066f57600080fd5b506103bb6111fa565b34801561068457600080fd5b5061026b6004803603604081101561069b57600080fd5b506001600160a01b038135169060200135611200565b3480156106bd57600080fd5b5061026b600480360360408110156106d457600080fd5b506001600160a01b038135169060200135611268565b3480156106f657600080fd5b506102036004803603602081101561070d57600080fd5b503561127c565b34801561072057600080fd5b506102036004803603602081101561073757600080fd5b5035611355565b34801561074a57600080fd5b506103bb6004803603604081101561076157600080fd5b506001600160a01b038135811691602001351661143d565b610203611468565b34801561078d57600080fd5b5061026b600480360360208110156107a457600080fd5b50356001600160a01b03166114db565b3480156107c057600080fd5b50610203600480360360208110156107d757600080fd5b50356001600160a01b03166114f0565b3480156107f357600080fd5b506102036004803603602081101561080a57600080fd5b50356001600160a01b03166115e0565b610822611745565b6001600160a01b0316610833611175565b6001600160a01b03161461087c576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b0381166108c15760405162461bcd60e51b81526004018080602001828103825260268152602001806125976026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f4f7050c9885b4244eada99e1375fef3c1988b6849bec7c19481243539d6ca07091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205460ff1681565b6006546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109d25780601f106109a7576101008083540402835291602001916109d2565b820191906000526020600020905b8154815290600101906020018083116109b557829003601f168201915b5050505050905090565b60006109f06109e9611745565b8484611749565b5060015b92915050565b610a02611745565b6001600160a01b0316610a13611175565b6001600160a01b031614610a5c576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1615610aa2576001600160a01b0381166000908152600960205260409020805460ff19169055610ac6565b6001600160a01b0381166000908152600960205260409020805460ff191660011790555b604080516001600160a01b038316815290517f2553178028497e8f15dc736724f7130d3e851abddf3ca73d4577ec68bad3421d9181900360200190a150565b60035490565b6000610b18848484611835565b610b8884610b24611745565b610b838560405180606001604052806028815260200161262b602891396001600160a01b038a16600090815260026020526040812090610b62611745565b6001600160a01b031681526020810191909152604001600020549190611b34565b611749565b5060015b9392505050565b60065460ff1690565b60006109f0610ba9611745565b84610b838560026000610bba611745565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906116eb565b610bf2611745565b6001600160a01b0316610c03611175565b6001600160a01b031614610c4c576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b610c54611bcb565b565b610c5e611745565b6001600160a01b0316610c6f611175565b6001600160a01b031614610cb8576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b600680546001600160a01b038084166201000090810262010000600160b01b03199093169290921792839055604080519290930416815290517f9e32b4c40dca0b28c17140371d7265dbdb8cd035570155289d304519701026a29181900360200190a150565b610d26611745565b6001600160a01b0316610d37611175565b6001600160a01b031614610d80576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610dc6576001600160a01b0381166000908152600760205260409020805460ff19169055610dea565b6001600160a01b0381166000908152600760205260409020805460ff191660011790555b604080516001600160a01b038316815290517ec7ce2789cea79843f35fd3ceef7d293f0bda6665368ddb5bab44ac088f747e9181900360200190a150565b600654610100900460ff1690565b610e3e611745565b6001600160a01b0316610e4f611175565b6001600160a01b031614610e98576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f4f7050c9885b4244eada99e1375fef3c1988b6849bec7c19481243539d6ca070908390a3600080546001600160a01b0319169055565b60096020526000908152604090205460ff1681565b610eff611745565b6001600160a01b0316610f10611175565b6001600160a01b031614610f59576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b612710811115610fa4576040805162461bcd60e51b81526020600482015260116024820152700a8c2f0a4c2e8ca40c4cad8deee40dac2f607b1b604482015290519081900360640190fd5b600c8190556040805182815290517f7c8d3de91e8bac701f976dd5900640956f37d4f26799f84a7817dacddaec5b779181900360200190a150565b610fe7611745565b6001600160a01b0316610ff8611175565b6001600160a01b031614611041576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1615611087576001600160a01b0381166000908152600860205260409020805460ff191690556110ab565b6001600160a01b0381166000908152600860205260409020805460ff191660011790555b604080516001600160a01b038316815290517f654748d37c6a091d2a3b5a78cc1ff361ebad61ff28bbee1add5af032ba0ddf2b9181900360200190a150565b6001600160a01b031660009081526001602052604090205490565b600b5481565b611113611745565b6001600160a01b0316611124611175565b6001600160a01b03161461116d576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b610c54611c6c565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109d25780601f106109a7576101008083540402835291602001916109d2565b600a6020526000908152604090205460ff1681565b600c5481565b60006109f061120d611745565b84610b83856040518060600160405280602581526020016127076025913960026000611237611745565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b34565b60006109f0611275611745565b8484611835565b611284611745565b6001600160a01b0316611295611175565b6001600160a01b0316146112de576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6d314dc6448d9338c15b0a00000000816112f6610b05565b011115611341576040805162461bcd60e51b81526020600482015260146024820152734d696e742061626f7665206d6178537570706c7960601b604482015290519081900360640190fd5b61135261134c611745565b82611cf1565b50565b61135d611745565b6001600160a01b031661136e611175565b6001600160a01b0316146113b7576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b612710811115611402576040805162461bcd60e51b81526020600482015260116024820152700a8c2f0a4c2e8ca40c4cad8deee40dac2f607b1b604482015290519081900360640190fd5b600b8190556040805182815290517f9ae027aa81ddce6169039395a048d6f9e2ad4dc0eeaeeac580527f08f35e6f8e9181900360200190a150565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611470611745565b6001600160a01b0316611481611175565b6001600160a01b0316146114ca576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b610c546114d5611745565b47611de3565b60076020526000908152604090205460ff1681565b6114f8611745565b6001600160a01b0316611509611175565b6001600160a01b031614611552576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b61135261155d611745565b604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156115a357600080fd5b505afa1580156115b7573d6000803e3d6000fd5b505050506040513d60208110156115cd57600080fd5b50516001600160a01b0384169190611ed7565b6115e8611745565b6001600160a01b03166115f9611175565b6001600160a01b031614611642576040805162461bcd60e51b81526020600482018190526024820152600080516020612653833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611688576001600160a01b0381166000908152600a60205260409020805460ff191690556116ac565b6001600160a01b0381166000908152600a60205260409020805460ff191660011790555b604080516001600160a01b038316815290517fcfd3a75fb583511b8400cdde6a27635dbf2b8cca8dd51e017bd97a751b4bea5b9181900360200190a150565b600082820183811015610b8c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b03831661178e5760405162461bcd60e51b81526004018080602001828103825260248152602001806126b96024913960400191505060405180910390fd5b6001600160a01b0382166117d35760405162461bcd60e51b81526004018080602001828103825260228152602001806125bd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b61183d610e28565b15611882576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b8061188c846110ea565b10156118d3576040805162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820746f6b656e7360781b604482015290519081900360640190fd5b6001600160a01b03831660009081526009602052604090205460ff1615801561191557506001600160a01b03821660009081526009602052604090205460ff16155b611955576040805162461bcd60e51b815260206004820152600c60248201526b4e6f742077656c636f6d652160a01b604482015290519081900360640190fd5b6001600160a01b03821660009081526008602052604090205460ff166119ea576d017aa73a606841b3e1738000000061199782611991856110ea565b90611f29565b11156119ea576040805162461bcd60e51b815260206004820152601b60248201527f5472616e736665722065786365656473206d61782077616c6c65740000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604081205460ff1680611a2957506001600160a01b0383166000908152600a602052604090205460ff165b611a3557600b54611a39565b600c545b6001600160a01b0385166000908152600760205260408120549192509060ff1680611a7c57506001600160a01b03841660009081526007602052604090205460ff165b611a9257611a8d8383614e20611f39565b611a95565b60005b90508015611ac557611aa78582611fe8565b600654611ac59086906201000090046001600160a01b0316836120e4565b611adc8585611ad5846002612241565b86036120e4565b604080516001600160a01b038088168252861660208201528082018590526060810183905290517f0b0a49c8d042a49a5fa9f59858363cafadba1d4e36cd681f0e240a40e4cf765a9181900360800190a15050505050565b60008184841115611bc35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b88578181015183820152602001611b70565b50505050905090810190601f168015611bb55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611bd3610e28565b611c1b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c4f611745565b604080516001600160a01b039092168252519081900360200190a1565b611c74610e28565b15611cb9576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c4f611745565b6001600160a01b038216611d4c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611d5860008383611ed2565b600354611d6590826116eb565b6003556001600160a01b038216600090815260016020526040902054611d8b90826116eb565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b60208310611e2f5780518252601f199092019160209182019101611e10565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611e91576040519150601f19603f3d011682016040523d82523d6000602084013e611e96565b606091505b5050905080611ed2576040805162461bcd60e51b815260206004820152600360248201526253544560e81b604482015290519081900360640190fd5b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611ed2908490612265565b808201828110156109f457600080fd5b6000808060001985870986860292508281109083900303905080611f6f5760008411611f6457600080fd5b508290049050610b8c565b808411611f7b57600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6001600160a01b03821661202d5760405162461bcd60e51b81526004018080602001828103825260218152602001806126736021913960400191505060405180910390fd5b61203982600083611ed2565b61207681604051806060016040528060228152602001612575602291396001600160a01b0385166000908152600160205260409020549190611b34565b6001600160a01b03831660009081526001602052604090205560035461209c9082612316565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0383166121295760405162461bcd60e51b81526004018080602001828103825260258152602001806126946025913960400191505060405180910390fd5b6001600160a01b03821661216e5760405162461bcd60e51b81526004018080602001828103825260238152602001806125526023913960400191505060405180910390fd5b612179838383611ed2565b6121b6816040518060600160405280602681526020016125df602691396001600160a01b0386166000908152600160205260409020549190611b34565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546121e590826116eb565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082158061225c5750508181028183828161225957fe5b04145b6109f457600080fd5b60006122ba826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166123739092919063ffffffff16565b805190915015611ed2578080602001905160208110156122d957600080fd5b5051611ed25760405162461bcd60e51b815260040180806020018281038252602a8152602001806126dd602a913960400191505060405180910390fd5b60008282111561236d576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6060612382848460008561238a565b949350505050565b6060824710156123cb5760405162461bcd60e51b81526004018080602001828103825260268152602001806126056026913960400191505060405180910390fd5b6123d4856124e5565b612425576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106124635780518252601f199092019160209182019101612444565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146124c5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ca565b606091505b50915091506124da8282866124eb565b979650505050505050565b3b151590565b606083156124fa575081610b8c565b82511561250a5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611b88578181015183820152602001611b7056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204c9f73300b3d475c07333558b461494f4f1965b091801cd175537d9b81ffff9964736f6c63430007060033
Deployed Bytecode Sourcemap
46293:7555:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3424:260;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3424:260:0;-1:-1:-1;;;;;3424:260:0;;:::i;47665:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47665:40:0;-1:-1:-1;;;;;47665:40:0;;:::i;:::-;;;;;;;;;;;;;;;;;;47491:70;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;47491:70:0;;;;;;;;;;;;;;16146:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18300:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18300:169:0;;;;;;;;:::i;49962:288::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49962:288:0;-1:-1:-1;;;;;49962:288:0;;:::i;17253:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18951:321;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18951:321:0;;;;;;;;;;;;;;;;;:::i;17097:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19681:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19681:218:0;;;;;;;;:::i;52799:67::-;;;;;;;;;;;;;:::i;52286:155::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52286:155:0;-1:-1:-1;;;;;52286:155:0;;:::i;49134:248::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49134:248:0;-1:-1:-1;;;;;49134:248:0;;:::i;37904:86::-;;;;;;;;;;;;;:::i;3097:164::-;;;;;;;;;;;;;:::i;47712:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47712:47:0;-1:-1:-1;;;;;47712:47:0;;:::i;48710:266::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48710:266:0;;:::i;49542:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49542:253:0;-1:-1:-1;;;;;49542:253:0;;:::i;17424:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17424:127:0;-1:-1:-1;;;;;17424:127:0;;:::i;47814:27::-;;;;;;;;;;;;;:::i;52728:63::-;;;;;;;;;;;;;:::i;2438:87::-;;;;;;;;;;;;;:::i;16356:95::-;;;;;;;;;;;;;:::i;47766:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47766:41:0;-1:-1:-1;;;;;47766:41:0;;:::i;47908:30::-;;;;;;;;;;;;;:::i;20402:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20402:269:0;;;;;;;;:::i;17764:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17764:175:0;;;;;;;;:::i;52544:176::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52544:176:0;;:::i;48332:245::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48332:245:0;;:::i;18002:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18002:151:0;;;;;;;;;;:::i;53313:121::-;;;:::i;47619:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47619:39:0;-1:-1:-1;;;;;47619:39:0;;:::i;53442:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53442:203:0;-1:-1:-1;;;;;53442:203:0;;:::i;50405:258::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50405:258:0;-1:-1:-1;;;;;50405:258:0;;:::i;3424:260::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3521:22:0;::::1;3513:73;;;;-1:-1:-1::0;;;3513:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3631:6;::::0;;3602:46:::1;::::0;-1:-1:-1;;;;;3602:46:0;;::::1;::::0;3631:6;::::1;::::0;3602:46:::1;::::0;::::1;3659:6;:17:::0;;-1:-1:-1;;;;;;3659:17:0::1;-1:-1:-1::0;;;;;3659:17:0;;;::::1;::::0;;;::::1;::::0;;3424:260::o;47665:40::-;;;;;;;;;;;;;;;:::o;47491:70::-;;;;;;-1:-1:-1;;;;;47491:70:0;;:::o;16146:91::-;16224:5;16217:12;;;;;;;;-1:-1:-1;;16217:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16191:13;;16217:12;;16224:5;;16217:12;;16224:5;16217:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16146:91;:::o;18300:169::-;18383:4;18400:39;18409:12;:10;:12::i;:::-;18423:7;18432:6;18400:8;:39::i;:::-;-1:-1:-1;18457:4:0;18300:169;;;;;:::o;49962:288::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50042:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;;::::1;;50038:155;;;-1:-1:-1::0;;;;;50091:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;50084:32;;-1:-1:-1;;50084:32:0::1;::::0;;50038:155:::1;;;-1:-1:-1::0;;;;;50149:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;:32;;-1:-1:-1;;50149:32:0::1;50177:4;50149:32;::::0;;50038:155:::1;50210:32;::::0;;-1:-1:-1;;;;;50210:32:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;49962:288:::0;:::o;17253:108::-;17341:12;;17253:108;:::o;18951:321::-;19057:4;19074:36;19084:6;19092:9;19103:6;19074:9;:36::i;:::-;19121:121;19130:6;19138:12;:10;:12::i;:::-;19152:89;19190:6;19152:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19152:19:0;;;;;;:11;:19;;;;;;19172:12;:10;:12::i;:::-;-1:-1:-1;;;;;19152:33:0;;;;;;;;;;;;-1:-1:-1;19152:33:0;;;:89;:37;:89::i;:::-;19121:8;:121::i;:::-;-1:-1:-1;19260:4:0;18951:321;;;;;;:::o;17097:91::-;17171:9;;;;17097:91;:::o;19681:218::-;19769:4;19786:83;19795:12;:10;:12::i;:::-;19809:7;19818:50;19857:10;19818:11;:25;19830:12;:10;:12::i;:::-;-1:-1:-1;;;;;19818:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19818:25:0;;;:34;;;;;;;;;;;:38;:50::i;52799:67::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;52848:10:::1;:8;:10::i;:::-;52799:67::o:0;52286:155::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;52362:10:::1;:25:::0;;-1:-1:-1;;;;;52362:25:0;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;;52362:25:0;;::::1;::::0;;;::::1;::::0;;;;52403:30:::1;::::0;;52422:10;;;::::1;;52403:30:::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;52286:155:::0;:::o;49134:248::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49206:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;::::1;;49202:131;;;-1:-1:-1::0;;;;;49247:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;49240:24;;-1:-1:-1;;49240:24:0::1;::::0;;49202:131:::1;;;-1:-1:-1::0;;;;;49297:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;:24;;-1:-1:-1;;49297:24:0::1;49317:4;49297:24;::::0;;49202:131:::1;49350:24;::::0;;-1:-1:-1;;;;;49350:24:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;49134:248:::0;:::o;37904:86::-;37975:7;;;;;;;;37904:86::o;3097:164::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;3220:1:::1;3204:6:::0;;3175:48:::1;::::0;-1:-1:-1;;;;;3204:6:0;;::::1;::::0;3175:48:::1;::::0;3220:1;;3175:48:::1;3251:1;3234:19:::0;;-1:-1:-1;;;;;;3234:19:0::1;::::0;;3097:164::o;47712:47::-;;;;;;;;;;;;;;;:::o;48710:266::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;48862:5:::1;48847:11;:20;;48839:50;;;::::0;;-1:-1:-1;;;48839:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;48839:50:0;;;;;;;;;;;;;::::1;;48902:10;:24:::0;;;48942:26:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48710:266:::0;:::o;49542:253::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49615:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;;::::1;;49611:134;;;-1:-1:-1::0;;;;;49657:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;49650:25;;-1:-1:-1;;49650:25:0::1;::::0;;49611:134:::1;;;-1:-1:-1::0;;;;;49708:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;49708:25:0::1;49729:4;49708:25;::::0;;49611:134:::1;49762:25;::::0;;-1:-1:-1;;;;;49762:25:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;49542:253:::0;:::o;17424:127::-;-1:-1:-1;;;;;17525:18:0;17498:7;17525:18;;;:9;:18;;;;;;;17424:127::o;47814:27::-;;;;:::o;52728:63::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;52775:8:::1;:6;:8::i;2438:87::-:0;2484:7;2511:6;-1:-1:-1;;;;;2511:6:0;2438:87;:::o;16356:95::-;16436:7;16429:14;;;;;;;;-1:-1:-1;;16429:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16403:13;;16429:14;;16436:7;;16429:14;;16436:7;16429:14;;;;;;;;;;;;;;;;;;;;;;;;47766:41;;;;;;;;;;;;;;;:::o;47908:30::-;;;;:::o;20402:269::-;20495:4;20512:129;20521:12;:10;:12::i;:::-;20535:7;20544:96;20583:15;20544:96;;;;;;;;;;;;;;;;;:11;:25;20556:12;:10;:12::i;:::-;-1:-1:-1;;;;;20544:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20544:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17764:175::-;17850:4;17867:42;17877:12;:10;:12::i;:::-;17891:9;17902:6;17867:9;:42::i;52544:176::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;47606:6:::1;52632:5;52616:13;:11;:13::i;:::-;:21;:34;;52608:67;;;::::0;;-1:-1:-1;;;52608:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;52608:67:0;;;;;;;;;;;;;::::1;;52686:26;52692:12;:10;:12::i;:::-;52706:5;52686;:26::i;:::-;52544:176:::0;:::o;48332:245::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;48475:5:::1;48463:8;:17;;48455:47;;;::::0;;-1:-1:-1;;;48455:47:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;48455:47:0;;;;;;;;;;;;;::::1;;48515:7;:18:::0;;;48549:20:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48332:245:::0;:::o;18002:151::-;-1:-1:-1;;;;;18118:18:0;;;18091:7;18118:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18002:151::o;53313:121::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;53374:52:::1;53390:12;:10;:12::i;:::-;53404:21;53374:15;:52::i;47619:39::-:0;;;;;;;;;;;;;;;:::o;53442:203::-;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;53518:119:::1;53560:12;:10;:12::i;:::-;53587:39;::::0;;-1:-1:-1;;;53587:39:0;;53620:4:::1;53587:39;::::0;::::1;::::0;;;-1:-1:-1;;;;;53587:24:0;::::1;::::0;::::1;::::0;:39;;;;;::::1;::::0;;;;;;;;:24;:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53587:39:0;-1:-1:-1;;;;;53518:27:0;::::1;::::0;:119;:27:::1;:119::i;50405:258::-:0;2669:12;:10;:12::i;:::-;-1:-1:-1;;;;;2658:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2658:23:0;;2650:68;;;;;-1:-1:-1;;;2650:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2650:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50479:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;::::1;;50475:137;;;-1:-1:-1::0;;;;;50522:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;50515:26;;-1:-1:-1;;50515:26:0::1;::::0;;50475:137:::1;;;-1:-1:-1::0;;;;;50574:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;:26;;-1:-1:-1;;50574:26:0::1;50596:4;50574:26;::::0;;50475:137:::1;50629:26;::::0;;-1:-1:-1;;;;;50629:26:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;50405:258:::0;:::o;9313:179::-;9371:7;9403:5;;;9427:6;;;;9419:46;;;;;-1:-1:-1;;;9419:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;951:106;1039:10;951:106;:::o;23557:346::-;-1:-1:-1;;;;;23659:19:0;;23651:68;;;;-1:-1:-1;;;23651:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23738:21:0;;23730:68;;;;-1:-1:-1;;;23730:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23811:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23863:32;;;;;;;;;;;;;;;;;23557:346;;;:::o;50848:1337::-;38230:8;:6;:8::i;:::-;38229:9;38221:38;;;;;-1:-1:-1;;;38221:38:0;;;;;;;;;;;;-1:-1:-1;;;38221:38:0;;;;;;;;;;;;;;;51024:6:::1;51003:17;51013:6;51003:9;:17::i;:::-;:27;;50995:57;;;::::0;;-1:-1:-1;;;50995:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;50995:57:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;51144:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;::::1;;51143:24;:55:::0;::::1;;;-1:-1:-1::0;;;;;;51172:26:0;::::1;;::::0;;;:15:::1;:26;::::0;;;;;::::1;;51171:27;51143:55;51121:117;;;::::0;;-1:-1:-1;;;51121:117:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;51121:117:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;51256:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;;::::1;;51251:197;;51354:10;51318:32;51343:6;51318:20;51328:9;51318;:20::i;:::-;:24:::0;::::1;:32::i;:::-;:46;;51292:135;;;::::0;;-1:-1:-1;;;51292:135:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;51522:17:0;::::1;51499:19;51522:17:::0;;;:9:::1;:17;::::0;;;;;::::1;;::::0;:41:::1;;-1:-1:-1::0;;;;;;51543:20:0;::::1;;::::0;;;:9:::1;:20;::::0;;;;;::::1;;51522:41;51521:92;;51606:7;;51521:92;;;51580:10;;51521:92;-1:-1:-1::0;;;;;51697:15:0;::::1;51674:19;51697:15:::0;;;:7:::1;:15;::::0;;;;;51499:114;;-1:-1:-1;51674:19:0;51697:15:::1;;::::0;:37:::1;;-1:-1:-1::0;;;;;;51716:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;;::::1;;51697:37;51696:115;;51768:43;51784:6;51792:11;51805:5;51768:15;:43::i;:::-;51696:115;;;51751:1;51696:115;51674:137:::0;-1:-1:-1;51828:15:0;;51824:187:::1;;51860:26;51866:6;51874:11;51860:5;:26::i;:::-;51944:10;::::0;51920:48:::1;::::0;51936:6;;51944:10;;::::1;-1:-1:-1::0;;;;;51944:10:0::1;51956:11:::0;51920:15:::1;:48::i;:::-;52023:65;52039:6:::0;52047:9;52068:18:::1;:11:::0;52084:1:::1;52068:15;:18::i;:::-;52058:6;:29;52023:15;:65::i;:::-;52122:55;::::0;;-1:-1:-1;;;;;52122:55:0;;::::1;::::0;;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;::::1;::::0;;;;;;;::::1;38270:1;;50848:1337:::0;;;:::o;12140:166::-;12226:7;12262:12;12254:6;;;;12246:29;;;;-1:-1:-1;;;12246:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12293:5:0;;;12140:166::o;38963:120::-;38507:8;:6;:8::i;:::-;38499:41;;;;;-1:-1:-1;;;38499:41:0;;;;;;;;;;;;-1:-1:-1;;;38499:41:0;;;;;;;;;;;;;;;39022:7:::1;:15:::0;;-1:-1:-1;;39022:15:0::1;::::0;;39053:22:::1;39062:12;:10;:12::i;:::-;39053:22;::::0;;-1:-1:-1;;;;;39053:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;38963:120::o:0;38704:118::-;38230:8;:6;:8::i;:::-;38229:9;38221:38;;;;;-1:-1:-1;;;38221:38:0;;;;;;;;;;;;-1:-1:-1;;;38221:38:0;;;;;;;;;;;;;;;38764:7:::1;:14:::0;;-1:-1:-1;;38764:14:0::1;;;::::0;;38794:20:::1;38801:12;:10;:12::i;21990:378::-:0;-1:-1:-1;;;;;22074:21:0;;22066:65;;;;;-1:-1:-1;;;22066:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22144:49;22173:1;22177:7;22186:6;22144:20;:49::i;:::-;22221:12;;:24;;22238:6;22221:16;:24::i;:::-;22206:12;:39;-1:-1:-1;;;;;22277:18:0;;;;;;:9;:18;;;;;;:30;;22300:6;22277:22;:30::i;:::-;-1:-1:-1;;;;;22256:18:0;;;;;;:9;:18;;;;;;;;:51;;;;22323:37;;;;;;;22256:18;;;;22323:37;;;;;;;;;;21990:378;;:::o;53137:168::-;53250:12;;;53210;53250;;;;;;;;;-1:-1:-1;;;;;53228:7:0;;;53243:5;;53228:35;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53228:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53209:54;;;53282:7;53274:23;;;;;-1:-1:-1;;;53274:23:0;;;;;;;;;;;;-1:-1:-1;;;53274:23:0;;;;;;;;;;;;;;;53137:168;;;:::o;33746:177::-;33856:58;;;-1:-1:-1;;;;;33856:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33856:58:0;-1:-1:-1;;;33856:58:0;;;33829:86;;33849:5;;33829:19;:86::i;44861:113::-;44954:5;;;44949:16;;;;44941:25;;;;;39889:3876;40005:14;;;-1:-1:-1;;40521:1:0;40518;40511:20;40554:9;;;;-1:-1:-1;40606:13:0;;;40590:14;;;;40586:34;;-1:-1:-1;40706:10:0;40702:185;;40755:1;40741:11;:15;40733:24;;;;;;-1:-1:-1;40810:23:0;;;;-1:-1:-1;40862:13:0;;40702:185;41018:5;41004:11;:19;40996:28;;;;;;41309:17;41387:11;41384:1;41381;41374:25;41750:12;41765;;;:26;;41888:22;;;;;42719:1;42700;:15;;42699:21;;42950:17;;;42946:21;;42939:28;43009:17;;;43005:21;;42998:28;43069:17;;;43065:21;;43058:28;43129:17;;;43125:21;;43118:28;43189:17;;;43185:21;;43178:28;43250:17;;;43246:21;;;43239:28;42279:12;;;;42275:23;;;42300:1;42271:31;41520:20;;;41509:32;;;42332:12;;;;41564:21;;;;42021:16;;;;42323:21;;;;43722:11;;;;;-1:-1:-1;;39889:3876:0;;;;;:::o;22701:418::-;-1:-1:-1;;;;;22785:21:0;;22777:67;;;;-1:-1:-1;;;22777:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22857:49;22878:7;22895:1;22899:6;22857:20;:49::i;:::-;22940:68;22963:6;22940:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22940:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;22919:18:0;;;;;;:9;:18;;;;;:89;23034:12;;:24;;23051:6;23034:16;:24::i;:::-;23019:12;:39;23074:37;;;;;;;;23100:1;;-1:-1:-1;;;;;23074:37:0;;;;;;;;;;;;22701:418;;:::o;21169:539::-;-1:-1:-1;;;;;21275:20:0;;21267:70;;;;-1:-1:-1;;;21267:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21356:23:0;;21348:71;;;;-1:-1:-1;;;21348:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21432:47;21453:6;21461:9;21472:6;21432:20;:47::i;:::-;21512:71;21534:6;21512:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21512:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;21492:17:0;;;;;;;:9;:17;;;;;;:91;;;;21617:20;;;;;;;:32;;21642:6;21617:24;:32::i;:::-;-1:-1:-1;;;;;21594:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;21665:35;;;;;;;21594:20;;21665:35;;;;;;;;;;;;;21169:539;;;:::o;45428:127::-;45486:9;45516:6;;;:30;;-1:-1:-1;;45531:5:0;;;45545:1;45540;45531:5;45540:1;45526:15;;;;;:20;45516:30;45508:39;;;;;36051:761;36475:23;36501:69;36529:4;36501:69;;;;;;;;;;;;;;;;;36509:5;-1:-1:-1;;;;;36501:27:0;;;:69;;;;;:::i;:::-;36585:17;;36475:95;;-1:-1:-1;36585:21:0;36581:224;;36727:10;36716:30;;;;;;;;;;;;;;;-1:-1:-1;36716:30:0;36708:85;;;;-1:-1:-1;;;36708:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9775:158;9833:7;9866:1;9861;:6;;9853:49;;;;;-1:-1:-1;;;9853:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9920:5:0;;;9775:158::o;28734:195::-;28837:12;28869:52;28891:6;28899:4;28905:1;28908:12;28869:21;:52::i;:::-;28862:59;28734:195;-1:-1:-1;;;;28734:195:0:o;29786:530::-;29913:12;29971:5;29946:21;:30;;29938:81;;;;-1:-1:-1;;;29938:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30038:18;30049:6;30038:10;:18::i;:::-;30030:60;;;;;-1:-1:-1;;;30030:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30164:12;30178:23;30205:6;-1:-1:-1;;;;;30205:11:0;30225:5;30233:4;30205:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30205:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30163:75;;;;30256:52;30274:7;30283:10;30295:12;30256:17;:52::i;:::-;30249:59;29786:530;-1:-1:-1;;;;;;;29786:530:0:o;25816:422::-;26183:20;26222:8;;;25816:422::o;32326:742::-;32441:12;32470:7;32466:595;;;-1:-1:-1;32501:10:0;32494:17;;32466:595;32615:17;;:21;32611:439;;32878:10;32872:17;32939:15;32926:10;32922:2;32918:19;32911:44;32826:148;33014:20;;-1:-1:-1;;;33014:20:0;;;;;;;;;;;;;;;;;33021:12;;33014:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://4c9f73300b3d475c07333558b461494f4f1965b091801cd175537d9b81ffff99
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.