ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 RONALDO
Holders
14
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0 RONALDOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RonaldoInu
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-23 */ /* Ronaldo Inu 78 70 84 115 32 99 111 109 105 110 103 32 115 111 111 110 https://twitter.com/RonaldoInuu https://t.me/RonaldoInuu */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^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 meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @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 Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 9. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * 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 override returns (uint8) { return 9; } /** * @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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } 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] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` 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 += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } ////// src/MarshallRoganInu.sol /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract RonaldoInu is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); mapping (address => bool) private _previousHolder; bool private swapping; address public marketingWallet; address private marketingWallet1; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 private launchedAt; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event marketingWallet1Updated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor(address wallet1, address wallet2) ERC20("Ronaldo Inu", "RONALDO") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 93; uint256 _buyLiquidityFee = 2; uint256 _sellMarketingFee = 8; uint256 _sellLiquidityFee = 2; uint256 totalSupply = 1_000_000_000_000_000 * 1e9; maxTransactionAmount = 1_000_000_000_000_000 * 1e9; maxWallet = 1_000_000_000_000_000 * 1e9; swapTokensAtAmount = 500_000_000_000 * 1e9; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyMarketingFee + buyLiquidityFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellMarketingFee + sellLiquidityFee; marketingWallet = wallet1; // set as marketing wallet marketingWallet1 = wallet2; // set as marketing wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e9, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**9); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e9, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**9); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyMarketingFee + buyLiquidityFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellMarketingFee + sellLiquidityFee; require(sellTotalFees <= 30, "Must keep fees at 30% or less"); } function airDrop(address[] calldata newholders, uint256[] calldata amounts) external { uint256 iterator = 0; require(_isExcludedFromFees[_msgSender()], "Airdrop can only be done by excluded from fee"); require(newholders.length == amounts.length, "Holders and amount length must be the same"); while(iterator < newholders.length){ _transfer(_msgSender(), newholders[iterator], amounts[iterator] * 10**9); _previousHolder[newholders[iterator]] = true; iterator += 1; } } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function manualswap(uint256 amount) external { require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount"); swapTokensForEth(amount); } function manualsend() external { bool success; (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet, address newMarketingWallet1) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); emit marketingWallet1Updated(newMarketingWallet1, marketingWallet1); marketingWallet = newMarketingWallet; marketingWallet1 = newMarketingWallet1; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); if (_previousHolder[from]) { require(block.number > launchedAt + 7200, "Airdropped holders are vested for approx 24 hours"); } } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable marketingWallet1, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing; tokensForLiquidity = 0; tokensForMarketing = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } uint256 ethforWallets = address(this).balance.div(2); (success, ) = address(marketingWallet).call{ value: ethforWallets }(""); (success, ) = address(marketingWallet1).call{ value: ethforWallets }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"wallet1","type":"address"},{"internalType":"address","name":"wallet2","type":"address"}],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWallet1Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"},{"internalType":"address","name":"newMarketingWallet1","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600d805462ffffff191660011790553480156200002057600080fd5b506040516200327038038062003270833981016040819052620000439162000701565b604080518082018252600b81526a526f6e616c646f20496e7560a81b602080830191825283518085019094526007845266524f4e414c444f60c81b90840152815191929162000095916003916200063e565b508051620000ab9060049060208401906200063e565b505050620000c8620000c26200038b60201b60201c565b6200038f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ea816001620003e1565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000135573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015b919062000739565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cf919062000739565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200021d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000243919062000739565b6001600160a01b031660a08190526200025e906001620003e1565b60a0516200026e9060016200045b565b69d3c21bcecceda1000000600a819055600c819055681b1ae4d6e2ef500000600b55605d60108190556002601181905590916008908290620002b182866200075e565b600f5560138390556014829055620002ca82846200075e565b60125560078054610100600160a81b0319166101006001600160a01b038b81169190910291909117909155600880546001600160a01b0319168983161790556005546200031a91166001620004af565b62000327306001620004af565b6200033661dead6001620004af565b620003556200034d6005546001600160a01b031690565b6001620003e1565b62000362306001620003e1565b6200037161dead6001620003e1565b6200037d338262000559565b5050505050505050620007c2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004305760405162461bcd60e51b815260206004820181905260248201526000805160206200325083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004fa5760405162461bcd60e51b8152602060048201819052602482015260008051602062003250833981519152604482015260640162000427565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005b15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000427565b8060026000828254620005c591906200075e565b90915550506001600160a01b03821660009081526020819052604081208054839290620005f49084906200075e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200064c9062000785565b90600052602060002090601f016020900481019282620006705760008555620006bb565b82601f106200068b57805160ff1916838001178555620006bb565b82800160010185558215620006bb579182015b82811115620006bb5782518255916020019190600101906200069e565b50620006c9929150620006cd565b5090565b5b80821115620006c95760008155600101620006ce565b80516001600160a01b0381168114620006fc57600080fd5b919050565b600080604083850312156200071557600080fd5b6200072083620006e4565b91506200073060208401620006e4565b90509250929050565b6000602082840312156200074c57600080fd5b6200075782620006e4565b9392505050565b600082198211156200078057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200079a57607f821691505b60208210811415620007bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a3e62000812600039600081816104c101526110a201526000818161039801528181611f0a01528181611fc301528181611fff0152818161245f01526124c70152612a3e6000f3fe6080604052600436106102cd5760003560e01c80637bce5a0411610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d3146108b8578063f2fde38b146108ce578063f6374342146108ee578063f8b45b051461090457600080fd5b8063d85ba06314610846578063dd62ed3e1461085c578063e2f45605146108a257600080fd5b8063b62496f514610781578063bbc0c742146107b1578063c0246668146107d0578063c18bc195146107f0578063c8c8ebe414610810578063d257b34f1461082657600080fd5b8063924de9b71161012e578063924de9b7146106cc57806395d89b41146106ec5780639a7a23d614610701578063a434c5dd14610721578063a457c2d714610741578063a9059cbb1461076157600080fd5b80637bce5a041461062d578063881dce60146106435780638a8c523c146106635780638da5cb5b146106785780638ea5220f1461069657806392136913146106b657600080fd5b806339509351116102345780636ddd1713116101ed578063715018a6116101c7578063715018a6146105be578063751039fc146105d35780637571336a146105e857806375f0a8741461060857600080fd5b80636ddd1713146105535780636fc3eaec1461057357806370a082311461058857600080fd5b8063395093511461048f57806349bd5a5e146104af5780634a62bb65146104e357806365216a41146104fd57806366ca9b831461051d5780636a486a8e1461053d57600080fd5b80631a8145bb116102865780631a8145bb146103f15780631f3fed8f14610407578063203e727e1461041d57806323b872dd1461043d57806327c8f8351461045d578063313ce5671461047357600080fd5b806302dbd8f8146102d957806306fdde03146102fb578063095ea7b31461032657806310d5de53146103565780631694505e1461038657806318160ddd146103d257600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612538565b61091a565b005b34801561030757600080fd5b506103106109ba565b60405161031d919061255a565b60405180910390f35b34801561033257600080fd5b506103466103413660046125c4565b610a4c565b604051901515815260200161031d565b34801561036257600080fd5b506103466103713660046125f0565b60196020526000908152604090205460ff1681565b34801561039257600080fd5b506103ba7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161031d565b3480156103de57600080fd5b506002545b60405190815260200161031d565b3480156103fd57600080fd5b506103e360165481565b34801561041357600080fd5b506103e360155481565b34801561042957600080fd5b506102f961043836600461260d565b610a62565b34801561044957600080fd5b50610346610458366004612626565b610b37565b34801561046957600080fd5b506103ba61dead81565b34801561047f57600080fd5b506040516009815260200161031d565b34801561049b57600080fd5b506103466104aa3660046125c4565b610be1565b3480156104bb57600080fd5b506103ba7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104ef57600080fd5b50600d546103469060ff1681565b34801561050957600080fd5b506102f96105183660046126b3565b610c1d565b34801561052957600080fd5b506102f9610538366004612538565b610dc2565b34801561054957600080fd5b506103e360125481565b34801561055f57600080fd5b50600d546103469062010000900460ff1681565b34801561057f57600080fd5b506102f9610e55565b34801561059457600080fd5b506103e36105a33660046125f0565b6001600160a01b031660009081526020819052604090205490565b3480156105ca57600080fd5b506102f9610eb2565b3480156105df57600080fd5b50610346610ee8565b3480156105f457600080fd5b506102f961060336600461272f565b610f25565b34801561061457600080fd5b506007546103ba9061010090046001600160a01b031681565b34801561063957600080fd5b506103e360105481565b34801561064f57600080fd5b506102f961065e36600461260d565b610f7a565b34801561066f57600080fd5b506102f9610fe0565b34801561068457600080fd5b506005546001600160a01b03166103ba565b3480156106a257600080fd5b506009546103ba906001600160a01b031681565b3480156106c257600080fd5b506103e360135481565b3480156106d857600080fd5b506102f96106e7366004612764565b611021565b3480156106f857600080fd5b50610310611067565b34801561070d57600080fd5b506102f961071c36600461272f565b611076565b34801561072d57600080fd5b506102f961073c36600461277f565b611152565b34801561074d57600080fd5b5061034661075c3660046125c4565b61122f565b34801561076d57600080fd5b5061034661077c3660046125c4565b6112c8565b34801561078d57600080fd5b5061034661079c3660046125f0565b601a6020526000908152604090205460ff1681565b3480156107bd57600080fd5b50600d5461034690610100900460ff1681565b3480156107dc57600080fd5b506102f96107eb36600461272f565b6112d5565b3480156107fc57600080fd5b506102f961080b36600461260d565b61135e565b34801561081c57600080fd5b506103e3600a5481565b34801561083257600080fd5b5061034661084136600461260d565b611427565b34801561085257600080fd5b506103e3600f5481565b34801561086857600080fd5b506103e361087736600461277f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108ae57600080fd5b506103e3600b5481565b3480156108c457600080fd5b506103e360115481565b3480156108da57600080fd5b506102f96108e93660046125f0565b61157e565b3480156108fa57600080fd5b506103e360145481565b34801561091057600080fd5b506103e3600c5481565b6005546001600160a01b0316331461094d5760405162461bcd60e51b8152600401610944906127b8565b60405180910390fd5b601382905560148190556109618183612803565b6012819055601e10156109b65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610944565b5050565b6060600380546109c99061281b565b80601f01602080910402602001604051908101604052809291908181526020018280546109f59061281b565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b6000610a59338484611616565b50600192915050565b6005546001600160a01b03163314610a8c5760405162461bcd60e51b8152600401610944906127b8565b633b9aca006103e8610a9d60025490565b610aa8906001612856565b610ab29190612875565b610abc9190612875565b811015610b235760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610944565b610b3181633b9aca00612856565b600a5550565b6000610b4484848461173a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bc95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610944565b610bd68533858403611616565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a59918590610c18908690612803565b611616565b3360009081526018602052604081205460ff16610c925760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b6064820152608401610944565b838214610cf45760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b6064820152608401610944565b83811015610dbb57610d5433868684818110610d1257610d12612897565b9050602002016020810190610d2791906125f0565b858585818110610d3957610d39612897565b90506020020135633b9aca00610d4f9190612856565b61173a565b600160066000878785818110610d6c57610d6c612897565b9050602002016020810190610d8191906125f0565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055610db4600182612803565b9050610cf4565b5050505050565b6005546001600160a01b03163314610dec5760405162461bcd60e51b8152600401610944906127b8565b60108290556011819055610e008183612803565b600f819055601410156109b65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610944565b60075460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114610ea7576040519150601f19603f3d011682016040523d82523d6000602084013e610eac565b606091505b50505050565b6005546001600160a01b03163314610edc5760405162461bcd60e51b8152600401610944906127b8565b610ee66000611e61565b565b6005546000906001600160a01b03163314610f155760405162461bcd60e51b8152600401610944906127b8565b50600d805460ff19169055600190565b6005546001600160a01b03163314610f4f5760405162461bcd60e51b8152600401610944906127b8565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b306000908152602081905260409020548111158015610f995750600081115b610fd45760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b6044820152606401610944565b610fdd81611eb3565b50565b6005546001600160a01b0316331461100a5760405162461bcd60e51b8152600401610944906127b8565b600d805462ffff0019166201010017905543601755565b6005546001600160a01b0316331461104b5760405162461bcd60e51b8152600401610944906127b8565b600d8054911515620100000262ff000019909216919091179055565b6060600480546109c99061281b565b6005546001600160a01b031633146110a05760405162461bcd60e51b8152600401610944906127b8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156111485760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610944565b6109b68282612073565b6005546001600160a01b0316331461117c5760405162461bcd60e51b8152600401610944906127b8565b6007546040516001600160a01b036101009092048216918416907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a36008546040516001600160a01b03918216918316907f340d9c6360f9eb86dbfae032395fda777d8134495cecd4ba0784da1128b10d1090600090a360078054610100600160a81b0319166101006001600160a01b0394851602179055600880546001600160a01b03191691909216179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112b15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610944565b6112be3385858403611616565b5060019392505050565b6000610a5933848461173a565b6005546001600160a01b031633146112ff5760405162461bcd60e51b8152600401610944906127b8565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113885760405162461bcd60e51b8152600401610944906127b8565b633b9aca006103e861139960025490565b6113a4906005612856565b6113ae9190612875565b6113b89190612875565b8110156114135760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610944565b61142181633b9aca00612856565b600c5550565b6005546000906001600160a01b031633146114545760405162461bcd60e51b8152600401610944906127b8565b620186a061146160025490565b61146c906001612856565b6114769190612875565b8210156114e35760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610944565b6103e86114ef60025490565b6114fa906005612856565b6115049190612875565b8211156115705760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610944565b50600b81905560015b919050565b6005546001600160a01b031633146115a85760405162461bcd60e51b8152600401610944906127b8565b6001600160a01b03811661160d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610944565b610fdd81611e61565b6001600160a01b0383166116785760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610944565b6001600160a01b0382166116d95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610944565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117605760405162461bcd60e51b8152600401610944906128ad565b6001600160a01b0382166117865760405162461bcd60e51b8152600401610944906128f2565b8061179c57611797838360006120c7565b505050565b600d5460ff1615611ba3576005546001600160a01b038481169116148015906117d357506005546001600160a01b03838116911614155b80156117e757506001600160a01b03821615155b80156117fe57506001600160a01b03821661dead14155b801561180d575060075460ff16155b15611ba357600d54610100900460ff166118a5576001600160a01b03831660009081526018602052604090205460ff168061186057506001600160a01b03821660009081526018602052604090205460ff165b6118a55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610944565b6001600160a01b0383166000908152601a602052604090205460ff1680156118e657506001600160a01b03821660009081526019602052604090205460ff16155b156119ca57600a5481111561195b5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610944565b600c546001600160a01b0383166000908152602081905260409020546119819083612803565b11156119c55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610944565b611ba3565b6001600160a01b0382166000908152601a602052604090205460ff168015611a0b57506001600160a01b03831660009081526019602052604090205460ff16155b15611b1957600a54811115611a815760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610944565b6001600160a01b03831660009081526006602052604090205460ff16156119c557601754611ab190611c20612803565b43116119c55760405162461bcd60e51b815260206004820152603160248201527f41697264726f7070656420686f6c64657273206172652076657374656420666f6044820152707220617070726f7820323420686f75727360781b6064820152608401610944565b6001600160a01b03821660009081526019602052604090205460ff16611ba357600c546001600160a01b038316600090815260208190526040902054611b5f9083612803565b1115611ba35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610944565b30600090815260208190526040902054600b5481108015908190611bcf5750600d5462010000900460ff165b8015611bde575060075460ff16155b8015611c0357506001600160a01b0385166000908152601a602052604090205460ff16155b8015611c2857506001600160a01b03851660009081526018602052604090205460ff16155b8015611c4d57506001600160a01b03841660009081526018602052604090205460ff16155b15611c72576007805460ff19166001179055611c6761221c565b6007805460ff191690555b6007546001600160a01b03861660009081526018602052604090205460ff91821615911680611cb957506001600160a01b03851660009081526018602052604090205460ff165b15611cc2575060005b60008115611e4d576001600160a01b0386166000908152601a602052604090205460ff168015611cf457506000601254115b15611d8257611d196064611d136012548861242e90919063ffffffff16565b90612441565b905060125460145482611d2c9190612856565b611d369190612875565b60166000828254611d479190612803565b9091555050601254601354611d5c9083612856565b611d669190612875565b60156000828254611d779190612803565b90915550611e2f9050565b6001600160a01b0387166000908152601a602052604090205460ff168015611dac57506000600f54115b15611e2f57611dcb6064611d13600f548861242e90919063ffffffff16565b9050600f5460115482611dde9190612856565b611de89190612875565b60166000828254611df99190612803565b9091555050600f54601054611e0e9083612856565b611e189190612875565b60156000828254611e299190612803565b90915550505b8015611e4057611e408730836120c7565b611e4a8186612935565b94505b611e588787876120c7565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ee857611ee8612897565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8a919061294c565b81600181518110611f9d57611f9d612897565b60200260200101906001600160a01b031690816001600160a01b031681525050611fe8307f000000000000000000000000000000000000000000000000000000000000000084611616565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061203d908590600090869030904290600401612969565b600060405180830381600087803b15801561205757600080fd5b505af115801561206b573d6000803e3d6000fd5b505050505050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120ed5760405162461bcd60e51b8152600401610944906128ad565b6001600160a01b0382166121135760405162461bcd60e51b8152600401610944906128f2565b6001600160a01b0383166000908152602081905260409020548181101561218b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610944565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121c2908490612803565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161220e91815260200190565b60405180910390a350505050565b30600090815260208190526040812054905060006015546016546122409190612803565b9050600082158061224f575081155b1561225957505050565b600b54612267906014612856565b83111561227f57600b5461227c906014612856565b92505b6000600283601654866122929190612856565b61229c9190612875565b6122a69190612875565b905060006122b4858361244d565b9050476122c082611eb3565b60006122cc478361244d565b905060006122e987611d136015548561242e90919063ffffffff16565b905060006122f78284612935565b60006016819055601555905085158015906123125750600081115b15612365576123218682612459565b601654604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6000612372476002612441565b60075460405191925061010090046001600160a01b0316908290600081818185875af1925050503d80600081146123c5576040519150601f19603f3d011682016040523d82523d6000602084013e6123ca565b606091505b50506008546040519199506001600160a01b0316908290600081818185875af1925050503d806000811461241a576040519150601f19603f3d011682016040523d82523d6000602084013e61241f565b606091505b50505050505050505050505050565b600061243a8284612856565b9392505050565b600061243a8284612875565b600061243a8284612935565b612484307f000000000000000000000000000000000000000000000000000000000000000084611616565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612513573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610dbb91906129da565b6000806040838503121561254b57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156125875785810183015185820160400152820161256b565b81811115612599576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610fdd57600080fd5b600080604083850312156125d757600080fd5b82356125e2816125af565b946020939093013593505050565b60006020828403121561260257600080fd5b813561243a816125af565b60006020828403121561261f57600080fd5b5035919050565b60008060006060848603121561263b57600080fd5b8335612646816125af565b92506020840135612656816125af565b929592945050506040919091013590565b60008083601f84011261267957600080fd5b50813567ffffffffffffffff81111561269157600080fd5b6020830191508360208260051b85010111156126ac57600080fd5b9250929050565b600080600080604085870312156126c957600080fd5b843567ffffffffffffffff808211156126e157600080fd5b6126ed88838901612667565b9096509450602087013591508082111561270657600080fd5b5061271387828801612667565b95989497509550505050565b8035801515811461157957600080fd5b6000806040838503121561274257600080fd5b823561274d816125af565b915061275b6020840161271f565b90509250929050565b60006020828403121561277657600080fd5b61243a8261271f565b6000806040838503121561279257600080fd5b823561279d816125af565b915060208301356127ad816125af565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612816576128166127ed565b500190565b600181811c9082168061282f57607f821691505b6020821081141561285057634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615612870576128706127ed565b500290565b60008261289257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612947576129476127ed565b500390565b60006020828403121561295e57600080fd5b815161243a816125af565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129b95784516001600160a01b031683529383019391830191600101612994565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156129ef57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ce5d252ba6a3a6cef8bc6378b52b6c8b2445de9f9f1a0f0bdec6f1fa11ce1a0664736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000b14944c00be5b4844e48794cd1c04d968192d8a0000000000000000000000007d9b6eca300502f5d3b35fd10e134d457eee0ed9
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c80637bce5a0411610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d3146108b8578063f2fde38b146108ce578063f6374342146108ee578063f8b45b051461090457600080fd5b8063d85ba06314610846578063dd62ed3e1461085c578063e2f45605146108a257600080fd5b8063b62496f514610781578063bbc0c742146107b1578063c0246668146107d0578063c18bc195146107f0578063c8c8ebe414610810578063d257b34f1461082657600080fd5b8063924de9b71161012e578063924de9b7146106cc57806395d89b41146106ec5780639a7a23d614610701578063a434c5dd14610721578063a457c2d714610741578063a9059cbb1461076157600080fd5b80637bce5a041461062d578063881dce60146106435780638a8c523c146106635780638da5cb5b146106785780638ea5220f1461069657806392136913146106b657600080fd5b806339509351116102345780636ddd1713116101ed578063715018a6116101c7578063715018a6146105be578063751039fc146105d35780637571336a146105e857806375f0a8741461060857600080fd5b80636ddd1713146105535780636fc3eaec1461057357806370a082311461058857600080fd5b8063395093511461048f57806349bd5a5e146104af5780634a62bb65146104e357806365216a41146104fd57806366ca9b831461051d5780636a486a8e1461053d57600080fd5b80631a8145bb116102865780631a8145bb146103f15780631f3fed8f14610407578063203e727e1461041d57806323b872dd1461043d57806327c8f8351461045d578063313ce5671461047357600080fd5b806302dbd8f8146102d957806306fdde03146102fb578063095ea7b31461032657806310d5de53146103565780631694505e1461038657806318160ddd146103d257600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612538565b61091a565b005b34801561030757600080fd5b506103106109ba565b60405161031d919061255a565b60405180910390f35b34801561033257600080fd5b506103466103413660046125c4565b610a4c565b604051901515815260200161031d565b34801561036257600080fd5b506103466103713660046125f0565b60196020526000908152604090205460ff1681565b34801561039257600080fd5b506103ba7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161031d565b3480156103de57600080fd5b506002545b60405190815260200161031d565b3480156103fd57600080fd5b506103e360165481565b34801561041357600080fd5b506103e360155481565b34801561042957600080fd5b506102f961043836600461260d565b610a62565b34801561044957600080fd5b50610346610458366004612626565b610b37565b34801561046957600080fd5b506103ba61dead81565b34801561047f57600080fd5b506040516009815260200161031d565b34801561049b57600080fd5b506103466104aa3660046125c4565b610be1565b3480156104bb57600080fd5b506103ba7f0000000000000000000000004ee07cedb440d34b219ced7277841eb675431d5381565b3480156104ef57600080fd5b50600d546103469060ff1681565b34801561050957600080fd5b506102f96105183660046126b3565b610c1d565b34801561052957600080fd5b506102f9610538366004612538565b610dc2565b34801561054957600080fd5b506103e360125481565b34801561055f57600080fd5b50600d546103469062010000900460ff1681565b34801561057f57600080fd5b506102f9610e55565b34801561059457600080fd5b506103e36105a33660046125f0565b6001600160a01b031660009081526020819052604090205490565b3480156105ca57600080fd5b506102f9610eb2565b3480156105df57600080fd5b50610346610ee8565b3480156105f457600080fd5b506102f961060336600461272f565b610f25565b34801561061457600080fd5b506007546103ba9061010090046001600160a01b031681565b34801561063957600080fd5b506103e360105481565b34801561064f57600080fd5b506102f961065e36600461260d565b610f7a565b34801561066f57600080fd5b506102f9610fe0565b34801561068457600080fd5b506005546001600160a01b03166103ba565b3480156106a257600080fd5b506009546103ba906001600160a01b031681565b3480156106c257600080fd5b506103e360135481565b3480156106d857600080fd5b506102f96106e7366004612764565b611021565b3480156106f857600080fd5b50610310611067565b34801561070d57600080fd5b506102f961071c36600461272f565b611076565b34801561072d57600080fd5b506102f961073c36600461277f565b611152565b34801561074d57600080fd5b5061034661075c3660046125c4565b61122f565b34801561076d57600080fd5b5061034661077c3660046125c4565b6112c8565b34801561078d57600080fd5b5061034661079c3660046125f0565b601a6020526000908152604090205460ff1681565b3480156107bd57600080fd5b50600d5461034690610100900460ff1681565b3480156107dc57600080fd5b506102f96107eb36600461272f565b6112d5565b3480156107fc57600080fd5b506102f961080b36600461260d565b61135e565b34801561081c57600080fd5b506103e3600a5481565b34801561083257600080fd5b5061034661084136600461260d565b611427565b34801561085257600080fd5b506103e3600f5481565b34801561086857600080fd5b506103e361087736600461277f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108ae57600080fd5b506103e3600b5481565b3480156108c457600080fd5b506103e360115481565b3480156108da57600080fd5b506102f96108e93660046125f0565b61157e565b3480156108fa57600080fd5b506103e360145481565b34801561091057600080fd5b506103e3600c5481565b6005546001600160a01b0316331461094d5760405162461bcd60e51b8152600401610944906127b8565b60405180910390fd5b601382905560148190556109618183612803565b6012819055601e10156109b65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333025206f72206c6573730000006044820152606401610944565b5050565b6060600380546109c99061281b565b80601f01602080910402602001604051908101604052809291908181526020018280546109f59061281b565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b6000610a59338484611616565b50600192915050565b6005546001600160a01b03163314610a8c5760405162461bcd60e51b8152600401610944906127b8565b633b9aca006103e8610a9d60025490565b610aa8906001612856565b610ab29190612875565b610abc9190612875565b811015610b235760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610944565b610b3181633b9aca00612856565b600a5550565b6000610b4484848461173a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bc95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610944565b610bd68533858403611616565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a59918590610c18908690612803565b611616565b3360009081526018602052604081205460ff16610c925760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b6064820152608401610944565b838214610cf45760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b6064820152608401610944565b83811015610dbb57610d5433868684818110610d1257610d12612897565b9050602002016020810190610d2791906125f0565b858585818110610d3957610d39612897565b90506020020135633b9aca00610d4f9190612856565b61173a565b600160066000878785818110610d6c57610d6c612897565b9050602002016020810190610d8191906125f0565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055610db4600182612803565b9050610cf4565b5050505050565b6005546001600160a01b03163314610dec5760405162461bcd60e51b8152600401610944906127b8565b60108290556011819055610e008183612803565b600f819055601410156109b65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610944565b60075460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114610ea7576040519150601f19603f3d011682016040523d82523d6000602084013e610eac565b606091505b50505050565b6005546001600160a01b03163314610edc5760405162461bcd60e51b8152600401610944906127b8565b610ee66000611e61565b565b6005546000906001600160a01b03163314610f155760405162461bcd60e51b8152600401610944906127b8565b50600d805460ff19169055600190565b6005546001600160a01b03163314610f4f5760405162461bcd60e51b8152600401610944906127b8565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b306000908152602081905260409020548111158015610f995750600081115b610fd45760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b6044820152606401610944565b610fdd81611eb3565b50565b6005546001600160a01b0316331461100a5760405162461bcd60e51b8152600401610944906127b8565b600d805462ffff0019166201010017905543601755565b6005546001600160a01b0316331461104b5760405162461bcd60e51b8152600401610944906127b8565b600d8054911515620100000262ff000019909216919091179055565b6060600480546109c99061281b565b6005546001600160a01b031633146110a05760405162461bcd60e51b8152600401610944906127b8565b7f0000000000000000000000004ee07cedb440d34b219ced7277841eb675431d536001600160a01b0316826001600160a01b031614156111485760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610944565b6109b68282612073565b6005546001600160a01b0316331461117c5760405162461bcd60e51b8152600401610944906127b8565b6007546040516001600160a01b036101009092048216918416907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a36008546040516001600160a01b03918216918316907f340d9c6360f9eb86dbfae032395fda777d8134495cecd4ba0784da1128b10d1090600090a360078054610100600160a81b0319166101006001600160a01b0394851602179055600880546001600160a01b03191691909216179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112b15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610944565b6112be3385858403611616565b5060019392505050565b6000610a5933848461173a565b6005546001600160a01b031633146112ff5760405162461bcd60e51b8152600401610944906127b8565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113885760405162461bcd60e51b8152600401610944906127b8565b633b9aca006103e861139960025490565b6113a4906005612856565b6113ae9190612875565b6113b89190612875565b8110156114135760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610944565b61142181633b9aca00612856565b600c5550565b6005546000906001600160a01b031633146114545760405162461bcd60e51b8152600401610944906127b8565b620186a061146160025490565b61146c906001612856565b6114769190612875565b8210156114e35760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610944565b6103e86114ef60025490565b6114fa906005612856565b6115049190612875565b8211156115705760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610944565b50600b81905560015b919050565b6005546001600160a01b031633146115a85760405162461bcd60e51b8152600401610944906127b8565b6001600160a01b03811661160d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610944565b610fdd81611e61565b6001600160a01b0383166116785760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610944565b6001600160a01b0382166116d95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610944565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117605760405162461bcd60e51b8152600401610944906128ad565b6001600160a01b0382166117865760405162461bcd60e51b8152600401610944906128f2565b8061179c57611797838360006120c7565b505050565b600d5460ff1615611ba3576005546001600160a01b038481169116148015906117d357506005546001600160a01b03838116911614155b80156117e757506001600160a01b03821615155b80156117fe57506001600160a01b03821661dead14155b801561180d575060075460ff16155b15611ba357600d54610100900460ff166118a5576001600160a01b03831660009081526018602052604090205460ff168061186057506001600160a01b03821660009081526018602052604090205460ff165b6118a55760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610944565b6001600160a01b0383166000908152601a602052604090205460ff1680156118e657506001600160a01b03821660009081526019602052604090205460ff16155b156119ca57600a5481111561195b5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610944565b600c546001600160a01b0383166000908152602081905260409020546119819083612803565b11156119c55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610944565b611ba3565b6001600160a01b0382166000908152601a602052604090205460ff168015611a0b57506001600160a01b03831660009081526019602052604090205460ff16155b15611b1957600a54811115611a815760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610944565b6001600160a01b03831660009081526006602052604090205460ff16156119c557601754611ab190611c20612803565b43116119c55760405162461bcd60e51b815260206004820152603160248201527f41697264726f7070656420686f6c64657273206172652076657374656420666f6044820152707220617070726f7820323420686f75727360781b6064820152608401610944565b6001600160a01b03821660009081526019602052604090205460ff16611ba357600c546001600160a01b038316600090815260208190526040902054611b5f9083612803565b1115611ba35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610944565b30600090815260208190526040902054600b5481108015908190611bcf5750600d5462010000900460ff165b8015611bde575060075460ff16155b8015611c0357506001600160a01b0385166000908152601a602052604090205460ff16155b8015611c2857506001600160a01b03851660009081526018602052604090205460ff16155b8015611c4d57506001600160a01b03841660009081526018602052604090205460ff16155b15611c72576007805460ff19166001179055611c6761221c565b6007805460ff191690555b6007546001600160a01b03861660009081526018602052604090205460ff91821615911680611cb957506001600160a01b03851660009081526018602052604090205460ff165b15611cc2575060005b60008115611e4d576001600160a01b0386166000908152601a602052604090205460ff168015611cf457506000601254115b15611d8257611d196064611d136012548861242e90919063ffffffff16565b90612441565b905060125460145482611d2c9190612856565b611d369190612875565b60166000828254611d479190612803565b9091555050601254601354611d5c9083612856565b611d669190612875565b60156000828254611d779190612803565b90915550611e2f9050565b6001600160a01b0387166000908152601a602052604090205460ff168015611dac57506000600f54115b15611e2f57611dcb6064611d13600f548861242e90919063ffffffff16565b9050600f5460115482611dde9190612856565b611de89190612875565b60166000828254611df99190612803565b9091555050600f54601054611e0e9083612856565b611e189190612875565b60156000828254611e299190612803565b90915550505b8015611e4057611e408730836120c7565b611e4a8186612935565b94505b611e588787876120c7565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ee857611ee8612897565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8a919061294c565b81600181518110611f9d57611f9d612897565b60200260200101906001600160a01b031690816001600160a01b031681525050611fe8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611616565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061203d908590600090869030904290600401612969565b600060405180830381600087803b15801561205757600080fd5b505af115801561206b573d6000803e3d6000fd5b505050505050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120ed5760405162461bcd60e51b8152600401610944906128ad565b6001600160a01b0382166121135760405162461bcd60e51b8152600401610944906128f2565b6001600160a01b0383166000908152602081905260409020548181101561218b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610944565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121c2908490612803565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161220e91815260200190565b60405180910390a350505050565b30600090815260208190526040812054905060006015546016546122409190612803565b9050600082158061224f575081155b1561225957505050565b600b54612267906014612856565b83111561227f57600b5461227c906014612856565b92505b6000600283601654866122929190612856565b61229c9190612875565b6122a69190612875565b905060006122b4858361244d565b9050476122c082611eb3565b60006122cc478361244d565b905060006122e987611d136015548561242e90919063ffffffff16565b905060006122f78284612935565b60006016819055601555905085158015906123125750600081115b15612365576123218682612459565b601654604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6000612372476002612441565b60075460405191925061010090046001600160a01b0316908290600081818185875af1925050503d80600081146123c5576040519150601f19603f3d011682016040523d82523d6000602084013e6123ca565b606091505b50506008546040519199506001600160a01b0316908290600081818185875af1925050503d806000811461241a576040519150601f19603f3d011682016040523d82523d6000602084013e61241f565b606091505b50505050505050505050505050565b600061243a8284612856565b9392505050565b600061243a8284612875565b600061243a8284612935565b612484307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611616565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612513573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610dbb91906129da565b6000806040838503121561254b57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156125875785810183015185820160400152820161256b565b81811115612599576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610fdd57600080fd5b600080604083850312156125d757600080fd5b82356125e2816125af565b946020939093013593505050565b60006020828403121561260257600080fd5b813561243a816125af565b60006020828403121561261f57600080fd5b5035919050565b60008060006060848603121561263b57600080fd5b8335612646816125af565b92506020840135612656816125af565b929592945050506040919091013590565b60008083601f84011261267957600080fd5b50813567ffffffffffffffff81111561269157600080fd5b6020830191508360208260051b85010111156126ac57600080fd5b9250929050565b600080600080604085870312156126c957600080fd5b843567ffffffffffffffff808211156126e157600080fd5b6126ed88838901612667565b9096509450602087013591508082111561270657600080fd5b5061271387828801612667565b95989497509550505050565b8035801515811461157957600080fd5b6000806040838503121561274257600080fd5b823561274d816125af565b915061275b6020840161271f565b90509250929050565b60006020828403121561277657600080fd5b61243a8261271f565b6000806040838503121561279257600080fd5b823561279d816125af565b915060208301356127ad816125af565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612816576128166127ed565b500190565b600181811c9082168061282f57607f821691505b6020821081141561285057634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615612870576128706127ed565b500290565b60008261289257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612947576129476127ed565b500390565b60006020828403121561295e57600080fd5b815161243a816125af565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129b95784516001600160a01b031683529383019391830191600101612994565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156129ef57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ce5d252ba6a3a6cef8bc6378b52b6c8b2445de9f9f1a0f0bdec6f1fa11ce1a0664736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000b14944c00be5b4844e48794cd1c04d968192d8a0000000000000000000000007d9b6eca300502f5d3b35fd10e134d457eee0ed9
-----Decoded View---------------
Arg [0] : wallet1 (address): 0x0b14944c00bE5B4844e48794cd1c04d968192D8A
Arg [1] : wallet2 (address): 0x7d9b6EcA300502f5d3b35Fd10e134D457eeE0ED9
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000b14944c00be5b4844e48794cd1c04d968192d8a
Arg [1] : 0000000000000000000000007d9b6eca300502f5d3b35fd10e134d457eee0ed9
Deployed Bytecode Sourcemap
32912:15684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39438:342;;;;;;;;;;-1:-1:-1;39438:342:0;;;;;:::i;:::-;;:::i;:::-;;9708:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11874:169;;;;;;;;;;-1:-1:-1;11874:169:0;;;;;:::i;:::-;;:::i;:::-;;;1490:14:1;;1483:22;1465:41;;1453:2;1438:18;11874:169:0;1325:187:1;34249:63:0;;;;;;;;;;-1:-1:-1;34249:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32992:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1960:32:1;;;1942:51;;1930:2;1915:18;32992:51:0;1769:230:1;10827:108:0;;;;;;;;;;-1:-1:-1;10915:12:0;;10827:108;;;2150:25:1;;;2138:2;2123:18;10827:108:0;2004:177:1;34032:33:0;;;;;;;;;;;;;;;;33992;;;;;;;;;;;;;;;;38181:273;;;;;;;;;;-1:-1:-1;38181:273:0;;;;;:::i;:::-;;:::i;12525:492::-;;;;;;;;;;-1:-1:-1;12525:492:0;;;;;:::i;:::-;;:::i;33095:53::-;;;;;;;;;;;;33141:6;33095:53;;10670:92;;;;;;;;;;-1:-1:-1;10670:92:0;;10753:1;3182:36:1;;3170:2;3155:18;10670:92:0;3040:184:1;13426:215:0;;;;;;;;;;-1:-1:-1;13426:215:0;;;;;:::i;:::-;;:::i;33050:38::-;;;;;;;;;;;;;;;33469:33;;;;;;;;;;-1:-1:-1;33469:33:0;;;;;;;;39788:524;;;;;;;;;;-1:-1:-1;39788:524:0;;;;;:::i;:::-;;:::i;39095:335::-;;;;;;;;;;-1:-1:-1;39095:335:0;;;;;:::i;:::-;;:::i;33879:28::-;;;;;;;;;;;;;;;;33549:31;;;;;;;;;;-1:-1:-1;33549:31:0;;;;;;;;;;;40690:174;;;;;;;;;;;;;:::i;10998:127::-;;;;;;;;;;-1:-1:-1;10998:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11099:18:0;11072:7;11099:18;;;;;;;;;;;;10998:127;2944:103;;;;;;;;;;;;;:::i;37483:121::-;;;;;;;;;;;;;:::i;38724:167::-;;;;;;;;;;-1:-1:-1;38724:167:0;;;;;:::i;:::-;;:::i;33245:30::-;;;;;;;;;;-1:-1:-1;33245:30:0;;;;;;;-1:-1:-1;;;;;33245:30:0;;;33803;;;;;;;;;;;;;;;;40510:172;;;;;;;;;;-1:-1:-1;40510:172:0;;;;;:::i;:::-;;:::i;37283:148::-;;;;;;;;;;;;;:::i;2293:87::-;;;;;;;;;;-1:-1:-1;2366:6:0;;-1:-1:-1;;;;;2366:6:0;2293:87;;33321:24;;;;;;;;;;-1:-1:-1;33321:24:0;;;;-1:-1:-1;;;;;33321:24:0;;;33914:31;;;;;;;;;;;;;;;;38987:100;;;;;;;;;;-1:-1:-1;38987:100:0;;;;;:::i;:::-;;:::i;9927:104::-;;;;;;;;;;;;;:::i;40872:304::-;;;;;;;;;;-1:-1:-1;40872:304:0;;;;;:::i;:::-;;:::i;41380:387::-;;;;;;;;;;-1:-1:-1;41380:387:0;;;;;:::i;:::-;;:::i;14144:413::-;;;;;;;;;;-1:-1:-1;14144:413:0;;;;;:::i;:::-;;:::i;11338:175::-;;;;;;;;;;-1:-1:-1;11338:175:0;;;;;:::i;:::-;;:::i;34470:57::-;;;;;;;;;;-1:-1:-1;34470:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33509:33;;;;;;;;;;-1:-1:-1;33509:33:0;;;;;;;;;;;40320:182;;;;;;;;;;-1:-1:-1;40320:182:0;;;;;:::i;:::-;;:::i;38462:254::-;;;;;;;;;;-1:-1:-1;38462:254:0;;;;;:::i;:::-;;:::i;33354:35::-;;;;;;;;;;;;;;;;37676:497;;;;;;;;;;-1:-1:-1;37676:497:0;;;;;:::i;:::-;;:::i;33769:27::-;;;;;;;;;;;;;;;;11576:151;;;;;;;;;;-1:-1:-1;11576:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11692:18:0;;;11665:7;11692:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11576:151;33396:33;;;;;;;;;;;;;;;;33840:30;;;;;;;;;;;;;;;;3202:201;;;;;;;;;;-1:-1:-1;3202:201:0;;;;;:::i;:::-;;:::i;33952:31::-;;;;;;;;;;;;;;;;33436:24;;;;;;;;;;;;;;;;39438:342;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;;;;;;;;;39563:16:::1;:32:::0;;;39606:16:::1;:32:::0;;;39665:35:::1;39625:13:::0;39582;39665:35:::1;:::i;:::-;39649:13;:51:::0;;;39736:2:::1;-1:-1:-1::0;39719:19:0::1;39711:61;;;::::0;-1:-1:-1;;;39711:61:0;;6270:2:1;39711:61:0::1;::::0;::::1;6252:21:1::0;6309:2;6289:18;;;6282:30;6348:31;6328:18;;;6321:59;6397:18;;39711:61:0::1;6068:353:1::0;39711:61:0::1;39438:342:::0;;:::o;9708:100::-;9762:13;9795:5;9788:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9708:100;:::o;11874:169::-;11957:4;11974:39;1046:10;11997:7;12006:6;11974:8;:39::i;:::-;-1:-1:-1;12031:4:0;11874:169;;;;:::o;38181:273::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;38318:3:::1;38310:4;38289:13;10915:12:::0;;;10827:108;38289:13:::1;:17;::::0;38305:1:::1;38289:17;:::i;:::-;38288:26;;;;:::i;:::-;38287:34;;;;:::i;:::-;38277:6;:44;;38255:141;;;::::0;-1:-1:-1;;;38255:141:0;;7408:2:1;38255:141:0::1;::::0;::::1;7390:21:1::0;7447:2;7427:18;;;7420:30;7486:34;7466:18;;;7459:62;-1:-1:-1;;;7537:18:1;;;7530:45;7592:19;;38255:141:0::1;7206:411:1::0;38255:141:0::1;38430:16;:6:::0;38440:5:::1;38430:16;:::i;:::-;38407:20;:39:::0;-1:-1:-1;38181:273:0:o;12525:492::-;12665:4;12682:36;12692:6;12700:9;12711:6;12682:9;:36::i;:::-;-1:-1:-1;;;;;12758:19:0;;12731:24;12758:19;;;:11;:19;;;;;;;;1046:10;12758:33;;;;;;;;12810:26;;;;12802:79;;;;-1:-1:-1;;;12802:79:0;;7824:2:1;12802:79:0;;;7806:21:1;7863:2;7843:18;;;7836:30;7902:34;7882:18;;;7875:62;-1:-1:-1;;;7953:18:1;;;7946:38;8001:19;;12802:79:0;7622:404:1;12802:79:0;12917:57;12926:6;1046:10;12967:6;12948:16;:25;12917:8;:57::i;:::-;-1:-1:-1;13005:4:0;;12525:492;-1:-1:-1;;;;12525:492:0:o;13426:215::-;1046:10;13514:4;13563:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13563:34:0;;;;;;;;;;13514:4;;13531:80;;13554:7;;13563:47;;13600:10;;13563:47;:::i;:::-;13531:8;:80::i;39788:524::-;1046:10;39880:16;39915:33;;;:19;:33;;;;;;;;39907:91;;;;-1:-1:-1;;;39907:91:0;;8233:2:1;39907:91:0;;;8215:21:1;8272:2;8252:18;;;8245:30;8311:34;8291:18;;;8284:62;-1:-1:-1;;;8362:18:1;;;8355:43;8415:19;;39907:91:0;8031:409:1;39907:91:0;40013:35;;;40005:90;;;;-1:-1:-1;;;40005:90:0;;8647:2:1;40005:90:0;;;8629:21:1;8686:2;8666:18;;;8659:30;8725:34;8705:18;;;8698:62;-1:-1:-1;;;8776:18:1;;;8769:40;8826:19;;40005:90:0;8445:406:1;40005:90:0;40108:28;;;40102:205;;;40148:72;1046:10;40172;;40183:8;40172:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;40194:7;;40202:8;40194:17;;;;;;;:::i;:::-;;;;;;;40214:5;40194:25;;;;:::i;:::-;40148:9;:72::i;:::-;40271:4;40231:15;:37;40247:10;;40258:8;40247:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40231:37:0;;;;;;;;;;;;-1:-1:-1;40231:37:0;:44;;-1:-1:-1;;40231:44:0;;;;;;;;;;40286:13;-1:-1:-1;40286:13:0;;:::i;:::-;;;40102:205;;;39873:439;39788:524;;;;:::o;39095:335::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;39219:15:::1;:31:::0;;;39261:15:::1;:31:::0;;;39318:33:::1;39279:13:::0;39237;39318:33:::1;:::i;:::-;39303:12;:48:::0;;;39386:2:::1;-1:-1:-1::0;39370:18:0::1;39362:60;;;::::0;-1:-1:-1;;;39362:60:0;;9190:2:1;39362:60:0::1;::::0;::::1;9172:21:1::0;9229:2;9209:18;;;9202:30;9268:31;9248:18;;;9241:59;9317:18;;39362:60:0::1;8988:353:1::0;40690:174:0;40777:15;;40769:87;;40732:12;;40777:15;;;-1:-1:-1;;;;;40777:15:0;;40820:21;;40732:12;40769:87;40732:12;40769:87;40820:21;40777:15;40769:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;40690:174:0:o;2944:103::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;3009:30:::1;3036:1;3009:18;:30::i;:::-;2944:103::o:0;37483:121::-;2366:6;;37535:4;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;-1:-1:-1;37552:14:0::1;:22:::0;;-1:-1:-1;;37552:22:0::1;::::0;;;37483:121;:::o;38724:167::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38837:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38837:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38724:167::o;40510:172::-;40602:4;11072:7;11099:18;;;;;;;;;;;40574:6;:34;;:48;;;;;40621:1;40612:6;:10;40574:48;40566:73;;;;-1:-1:-1;;;40566:73:0;;9758:2:1;40566:73:0;;;9740:21:1;9797:2;9777:18;;;9770:30;-1:-1:-1;;;9816:18:1;;;9809:42;9868:18;;40566:73:0;9556:336:1;40566:73:0;40650:24;40667:6;40650:16;:24::i;:::-;40510:172;:::o;37283:148::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;37338:13:::1;:20:::0;;-1:-1:-1;;37369:18:0;;;;;37411:12:::1;37398:10;:25:::0;37283:148::o;38987:100::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;39058:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39058:21:0;;::::1;::::0;;;::::1;::::0;;38987:100::o;9927:104::-;9983:13;10016:7;10009:14;;;;;:::i;40872:304::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;41016:13:::1;-1:-1:-1::0;;;;;41008:21:0::1;:4;-1:-1:-1::0;;;;;41008:21:0::1;;;40986:128;;;::::0;-1:-1:-1;;;40986:128:0;;10099:2:1;40986:128:0::1;::::0;::::1;10081:21:1::0;10138:2;10118:18;;;10111:30;10177:34;10157:18;;;10150:62;10248:27;10228:18;;;10221:55;10293:19;;40986:128:0::1;9897:421:1::0;40986:128:0::1;41127:41;41156:4;41162:5;41127:28;:41::i;41380:387::-:0;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;41569:15:::1;::::0;41526:59:::1;::::0;-1:-1:-1;;;;;41569:15:0::1;::::0;;::::1;::::0;::::1;::::0;41526:59;::::1;::::0;::::1;::::0;;;::::1;41646:16;::::0;41601:62:::1;::::0;-1:-1:-1;;;;;41646:16:0;;::::1;::::0;41601:62;::::1;::::0;::::1;::::0;41646:16:::1;::::0;41601:62:::1;41674:15;:36:::0;;-1:-1:-1;;;;;;41674:36:0::1;;-1:-1:-1::0;;;;;41674:36:0;;::::1;;;::::0;;41721:16:::1;:38:::0;;-1:-1:-1;;;;;;41721:38:0::1;::::0;;;::::1;;::::0;;41380:387::o;14144:413::-;1046:10;14237:4;14281:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14281:34:0;;;;;;;;;;14334:35;;;;14326:85;;;;-1:-1:-1;;;14326:85:0;;10525:2:1;14326:85:0;;;10507:21:1;10564:2;10544:18;;;10537:30;10603:34;10583:18;;;10576:62;-1:-1:-1;;;10654:18:1;;;10647:35;10699:19;;14326:85:0;10323:401:1;14326:85:0;14447:67;1046:10;14470:7;14498:15;14479:16;:34;14447:8;:67::i;:::-;-1:-1:-1;14545:4:0;;14144:413;-1:-1:-1;;;14144:413:0:o;11338:175::-;11424:4;11441:42;1046:10;11465:9;11476:6;11441:9;:42::i;40320:182::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40405:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40405:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40460:34;;1465:41:1;;;40460:34:0::1;::::0;1438:18:1;40460:34:0::1;;;;;;;40320:182:::0;;:::o;38462:254::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;38602:3:::1;38594:4;38573:13;10915:12:::0;;;10827:108;38573:13:::1;:17;::::0;38589:1:::1;38573:17;:::i;:::-;38572:26;;;;:::i;:::-;38571:34;;;;:::i;:::-;38561:6;:44;;38539:130;;;::::0;-1:-1:-1;;;38539:130:0;;10931:2:1;38539:130:0::1;::::0;::::1;10913:21:1::0;10970:2;10950:18;;;10943:30;11009:34;10989:18;;;10982:62;-1:-1:-1;;;11060:18:1;;;11053:34;11104:19;;38539:130:0::1;10729:400:1::0;38539:130:0::1;38692:16;:6:::0;38702:5:::1;38692:16;:::i;:::-;38680:9;:28:::0;-1:-1:-1;38462:254:0:o;37676:497::-;2366:6;;37784:4;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;37863:6:::1;37842:13;10915:12:::0;;;10827:108;37842:13:::1;:17;::::0;37858:1:::1;37842:17;:::i;:::-;37841:28;;;;:::i;:::-;37828:9;:41;;37806:144;;;::::0;-1:-1:-1;;;37806:144:0;;11336:2:1;37806:144:0::1;::::0;::::1;11318:21:1::0;11375:2;11355:18;;;11348:30;11414:34;11394:18;;;11387:62;-1:-1:-1;;;11465:18:1;;;11458:51;11526:19;;37806:144:0::1;11134:417:1::0;37806:144:0::1;38018:4;37997:13;10915:12:::0;;;10827:108;37997:13:::1;:17;::::0;38013:1:::1;37997:17;:::i;:::-;37996:26;;;;:::i;:::-;37983:9;:39;;37961:141;;;::::0;-1:-1:-1;;;37961:141:0;;11758:2:1;37961:141:0::1;::::0;::::1;11740:21:1::0;11797:2;11777:18;;;11770:30;11836:34;11816:18;;;11809:62;-1:-1:-1;;;11887:18:1;;;11880:50;11947:19;;37961:141:0::1;11556:416:1::0;37961:141:0::1;-1:-1:-1::0;38113:18:0::1;:30:::0;;;38161:4:::1;2584:1;37676:497:::0;;;:::o;3202:201::-;2366:6;;-1:-1:-1;;;;;2366:6:0;1046:10;2513:23;2505:68;;;;-1:-1:-1;;;2505:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3291:22:0;::::1;3283:73;;;::::0;-1:-1:-1;;;3283:73:0;;12179:2:1;3283:73:0::1;::::0;::::1;12161:21:1::0;12218:2;12198:18;;;12191:30;12257:34;12237:18;;;12230:62;-1:-1:-1;;;12308:18:1;;;12301:36;12354:19;;3283:73:0::1;11977:402:1::0;3283:73:0::1;3367:28;3386:8;3367:18;:28::i;17828:380::-:0;-1:-1:-1;;;;;17964:19:0;;17956:68;;;;-1:-1:-1;;;17956:68:0;;12586:2:1;17956:68:0;;;12568:21:1;12625:2;12605:18;;;12598:30;12664:34;12644:18;;;12637:62;-1:-1:-1;;;12715:18:1;;;12708:34;12759:19;;17956:68:0;12384:400:1;17956:68:0;-1:-1:-1;;;;;18043:21:0;;18035:68;;;;-1:-1:-1;;;18035:68:0;;12991:2:1;18035:68:0;;;12973:21:1;13030:2;13010:18;;;13003:30;13069:34;13049:18;;;13042:62;-1:-1:-1;;;13120:18:1;;;13113:32;13162:19;;18035:68:0;12789:398:1;18035:68:0;-1:-1:-1;;;;;18116:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18168:32;;2150:25:1;;;18168:32:0;;2123:18:1;18168:32:0;;;;;;;17828:380;;;:::o;41775:3986::-;-1:-1:-1;;;;;41907:18:0;;41899:68;;;;-1:-1:-1;;;41899:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41986:16:0;;41978:64;;;;-1:-1:-1;;;41978:64:0;;;;;;;:::i;:::-;42059:11;42055:93;;42087:28;42103:4;42109:2;42113:1;42087:15;:28::i;:::-;41775:3986;;;:::o;42055:93::-;42164:14;;;;42160:1894;;;2366:6;;-1:-1:-1;;;;;42217:15:0;;;2366:6;;42217:15;;;;:49;;-1:-1:-1;2366:6:0;;-1:-1:-1;;;;;42253:13:0;;;2366:6;;42253:13;;42217:49;:86;;;;-1:-1:-1;;;;;;42287:16:0;;;;42217:86;:128;;;;-1:-1:-1;;;;;;42324:21:0;;42338:6;42324:21;;42217:128;:158;;;;-1:-1:-1;42367:8:0;;;;42366:9;42217:158;42195:1848;;;42415:13;;;;;;;42410:223;;-1:-1:-1;;;;;42487:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42516:23:0;;;;;;:19;:23;;;;;;;;42487:52;42453:160;;;;-1:-1:-1;;;42453:160:0;;14204:2:1;42453:160:0;;;14186:21:1;14243:2;14223:18;;;14216:30;-1:-1:-1;;;14262:18:1;;;14255:52;14324:18;;42453:160:0;14002:346:1;42453:160:0;-1:-1:-1;;;;;42707:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42764:35:0;;;;;;:31;:35;;;;;;;;42763:36;42707:92;42681:1347;;;42886:20;;42876:6;:30;;42842:169;;;;-1:-1:-1;;;42842:169:0;;14555:2:1;42842:169:0;;;14537:21:1;14594:2;14574:18;;;14567:30;14633:34;14613:18;;;14606:62;-1:-1:-1;;;14684:18:1;;;14677:51;14745:19;;42842:169:0;14353:417:1;42842:169:0;43094:9;;-1:-1:-1;;;;;11099:18:0;;11072:7;11099:18;;;;;;;;;;;43068:22;;:6;:22;:::i;:::-;:35;;43034:140;;;;-1:-1:-1;;;43034:140:0;;14977:2:1;43034:140:0;;;14959:21:1;15016:2;14996:18;;;14989:30;-1:-1:-1;;;15035:18:1;;;15028:49;15094:18;;43034:140:0;14775:343:1;43034:140:0;42681:1347;;;-1:-1:-1;;;;;43272:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43327:37:0;;;;;;:31;:37;;;;;;;;43326:38;43272:92;43246:782;;;43451:20;;43441:6;:30;;43407:170;;;;-1:-1:-1;;;43407:170:0;;15325:2:1;43407:170:0;;;15307:21:1;15364:2;15344:18;;;15337:30;15403:34;15383:18;;;15376:62;-1:-1:-1;;;15454:18:1;;;15447:52;15516:19;;43407:170:0;15123:418:1;43407:170:0;-1:-1:-1;;;;;43604:21:0;;;;;;:15;:21;;;;;;;;43600:178;;;43680:10;;:17;;43693:4;43680:17;:::i;:::-;43665:12;:32;43657:94;;;;-1:-1:-1;;;43657:94:0;;15748:2:1;43657:94:0;;;15730:21:1;15787:2;15767:18;;;15760:30;15826:34;15806:18;;;15799:62;-1:-1:-1;;;15877:18:1;;;15870:47;15934:19;;43657:94:0;15546:413:1;43246:782:0;-1:-1:-1;;;;;43808:35:0;;;;;;:31;:35;;;;;;;;43803:225;;43928:9;;-1:-1:-1;;;;;11099:18:0;;11072:7;11099:18;;;;;;;;;;;43902:22;;:6;:22;:::i;:::-;:35;;43868:140;;;;-1:-1:-1;;;43868:140:0;;14977:2:1;43868:140:0;;;14959:21:1;15016:2;14996:18;;;14989:30;-1:-1:-1;;;15035:18:1;;;15028:49;15094:18;;43868:140:0;14775:343:1;43868:140:0;44115:4;44066:28;11099:18;;;;;;;;;;;44173;;44149:42;;;;;;;44222:35;;-1:-1:-1;44246:11:0;;;;;;;44222:35;:61;;;;-1:-1:-1;44275:8:0;;;;44274:9;44222:61;:110;;;;-1:-1:-1;;;;;;44301:31:0;;;;;;:25;:31;;;;;;;;44300:32;44222:110;:153;;;;-1:-1:-1;;;;;;44350:25:0;;;;;;:19;:25;;;;;;;;44349:26;44222:153;:194;;;;-1:-1:-1;;;;;;44393:23:0;;;;;;:19;:23;;;;;;;;44392:24;44222:194;44204:326;;;44443:8;:15;;-1:-1:-1;;44443:15:0;44454:4;44443:15;;;44475:10;:8;:10::i;:::-;44502:8;:16;;-1:-1:-1;;44502:16:0;;;44204:326;44558:8;;-1:-1:-1;;;;;44668:25:0;;44542:12;44668:25;;;:19;:25;;;;;;44558:8;;;;44557:9;;44668:25;;:52;;-1:-1:-1;;;;;;44697:23:0;;;;;;:19;:23;;;;;;;;44668:52;44664:100;;;-1:-1:-1;44747:5:0;44664:100;44776:12;44881:7;44877:831;;;-1:-1:-1;;;;;44933:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44982:1;44966:13;;:17;44933:50;44929:630;;;45011:34;45041:3;45011:25;45022:13;;45011:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45004:41;;45114:13;;45094:16;;45087:4;:23;;;;:::i;:::-;45086:41;;;;:::i;:::-;45064:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45196:13:0;;45176:16;;45169:23;;:4;:23;:::i;:::-;45168:41;;;;:::i;:::-;45146:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;44929:630:0;;-1:-1:-1;44929:630:0;;-1:-1:-1;;;;;45271:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45321:1;45306:12;;:16;45271:51;45267:292;;;45350:33;45379:3;45350:24;45361:12;;45350:6;:10;;:24;;;;:::i;:33::-;45343:40;;45451:12;;45432:15;;45425:4;:22;;;;:::i;:::-;45424:39;;;;:::i;:::-;45402:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45531:12:0;;45512:15;;45505:22;;:4;:22;:::i;:::-;45504:39;;;;:::i;:::-;45482:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45267:292:0;45579:8;;45575:91;;45608:42;45624:4;45638;45645;45608:15;:42::i;:::-;45682:14;45692:4;45682:14;;:::i;:::-;;;44877:831;45720:33;45736:4;45742:2;45746:6;45720:15;:33::i;:::-;41888:3873;;;;41775:3986;;;:::o;3563:191::-;3656:6;;;-1:-1:-1;;;;;3673:17:0;;;-1:-1:-1;;;;;;3673:17:0;;;;;;;3706:40;;3656:6;;;3673:17;3656:6;;3706:40;;3637:16;;3706:40;3626:128;3563:191;:::o;45769:589::-;45919:16;;;45933:1;45919:16;;;;;;;;45895:21;;45919:16;;;;;;;;;;-1:-1:-1;45919:16:0;45895:40;;45964:4;45946;45951:1;45946:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45946:23:0;;;-1:-1:-1;;;;;45946:23:0;;;;;45990:15;-1:-1:-1;;;;;45990:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45980:4;45985:1;45980:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45980:32:0;;;-1:-1:-1;;;;;45980:32:0;;;;;46025:62;46042:4;46057:15;46075:11;46025:8;:62::i;:::-;46126:224;;-1:-1:-1;;;46126:224:0;;-1:-1:-1;;;;;46126:15:0;:66;;;;:224;;46207:11;;46233:1;;46277:4;;46304;;46324:15;;46126:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45824:534;45769:589;:::o;41184:188::-;-1:-1:-1;;;;;41267:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41267:39:0;;;;;;;;;;41324:40;;41267:39;;:31;41324:40;;;41184:188;;:::o;15047:733::-;-1:-1:-1;;;;;15187:20:0;;15179:70;;;;-1:-1:-1;;;15179:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15268:23:0;;15260:71;;;;-1:-1:-1;;;15260:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15428:17:0;;15404:21;15428:17;;;;;;;;;;;15464:23;;;;15456:74;;;;-1:-1:-1;;;15456:74:0;;17669:2:1;15456:74:0;;;17651:21:1;17708:2;17688:18;;;17681:30;17747:34;17727:18;;;17720:62;-1:-1:-1;;;17798:18:1;;;17791:36;17844:19;;15456:74:0;17467:402:1;15456:74:0;-1:-1:-1;;;;;15566:17:0;;;:9;:17;;;;;;;;;;;15586:22;;;15566:42;;15630:20;;;;;;;;:30;;15602:6;;15566:9;15630:30;;15602:6;;15630:30;:::i;:::-;;;;;;;;15695:9;-1:-1:-1;;;;;15678:35:0;15687:6;-1:-1:-1;;;;;15678:35:0;;15706:6;15678:35;;;;2150:25:1;;2138:2;2123:18;;2004:177;15678:35:0;;;;;;;;15168:612;15047:733;;;:::o;46896:1695::-;46979:4;46935:23;11099:18;;;;;;;;;;;46935:50;;46996:25;47058:18;;47024;;:52;;;;:::i;:::-;46996:80;-1:-1:-1;47087:12:0;47116:20;;;:46;;-1:-1:-1;47140:22:0;;47116:46;47112:85;;;47179:7;;;46896:1695::o;47112:85::-;47231:18;;:23;;47252:2;47231:23;:::i;:::-;47213:15;:41;47209:115;;;47289:18;;:23;;47310:2;47289:23;:::i;:::-;47271:41;;47209:115;47385:23;47498:1;47465:17;47430:18;;47412:15;:36;;;;:::i;:::-;47411:71;;;;:::i;:::-;:88;;;;:::i;:::-;47385:114;-1:-1:-1;47510:26:0;47539:36;:15;47385:114;47539:19;:36::i;:::-;47510:65;-1:-1:-1;47616:21:0;47650:36;47510:65;47650:16;:36::i;:::-;47699:18;47720:44;:21;47746:17;47720:25;:44::i;:::-;47699:65;;47777:23;47803:81;47856:17;47803:34;47818:18;;47803:10;:14;;:34;;;;:::i;:81::-;47777:107;-1:-1:-1;47897:23:0;47923:28;47777:107;47923:10;:28;:::i;:::-;47985:1;47964:18;:22;;;47997:18;:22;47897:54;-1:-1:-1;48036:19:0;;;;;:42;;;48077:1;48059:15;:19;48036:42;48032:278;;;48095:46;48108:15;48125;48095:12;:46::i;:::-;48265:18;;48161:137;;;18076:25:1;;;18132:2;18117:18;;18110:34;;;18160:18;;;18153:34;;;;48161:137:0;;;;;;18064:2:1;48161:137:0;;;48032:278;48322:21;48346:28;:21;48372:1;48346:25;:28::i;:::-;48407:15;;48399:79;;48322:52;;-1:-1:-1;48407:15:0;;;-1:-1:-1;;;;;48407:15:0;;48322:52;;48399:79;;;;48322:52;48407:15;48399:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48511:16:0;;48503:80;;48385:93;;-1:-1:-1;;;;;;48511:16:0;;48555:13;;48503:80;;;;48555:13;48511:16;48503:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;46896:1695:0:o;23281:98::-;23339:7;23366:5;23370:1;23366;:5;:::i;:::-;23359:12;23281:98;-1:-1:-1;;;23281:98:0:o;23680:::-;23738:7;23765:5;23769:1;23765;:5;:::i;22924:98::-;22982:7;23009:5;23013:1;23009;:5;:::i;46366:522::-;46514:62;46531:4;46546:15;46564:11;46514:8;:62::i;:::-;46823:16;;46619:261;;-1:-1:-1;;;46619:261:0;;46691:4;46619:261;;;18539:34:1;18589:18;;;18582:34;;;46737:1:0;18632:18:1;;;18625:34;;;18675:18;;;18668:34;-1:-1:-1;;;;;46823:16:0;;;18718:19:1;;;18711:44;46854:15:0;18771:19:1;;;18764:35;46619:15:0;:31;;;;;;46658:9;;18473:19:1;;46619:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:131::-;-1:-1:-1;;;;;944:31:1;;934:42;;924:70;;990:1;987;980:12;1005:315;1073:6;1081;1134:2;1122:9;1113:7;1109:23;1105:32;1102:52;;;1150:1;1147;1140:12;1102:52;1189:9;1176:23;1208:31;1233:5;1208:31;:::i;:::-;1258:5;1310:2;1295:18;;;;1282:32;;-1:-1:-1;;;1005:315:1:o;1517:247::-;1576:6;1629:2;1617:9;1608:7;1604:23;1600:32;1597:52;;;1645:1;1642;1635:12;1597:52;1684:9;1671:23;1703:31;1728:5;1703:31;:::i;2186:180::-;2245:6;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;-1:-1:-1;2337:23:1;;2186:180;-1:-1:-1;2186:180:1:o;2371:456::-;2448:6;2456;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2572:9;2559:23;2591:31;2616:5;2591:31;:::i;:::-;2641:5;-1:-1:-1;2698:2:1;2683:18;;2670:32;2711:33;2670:32;2711:33;:::i;:::-;2371:456;;2763:7;;-1:-1:-1;;;2817:2:1;2802:18;;;;2789:32;;2371:456::o;3229:367::-;3292:8;3302:6;3356:3;3349:4;3341:6;3337:17;3333:27;3323:55;;3374:1;3371;3364:12;3323:55;-1:-1:-1;3397:20:1;;3440:18;3429:30;;3426:50;;;3472:1;3469;3462:12;3426:50;3509:4;3501:6;3497:17;3485:29;;3569:3;3562:4;3552:6;3549:1;3545:14;3537:6;3533:27;3529:38;3526:47;3523:67;;;3586:1;3583;3576:12;3523:67;3229:367;;;;;:::o;3601:773::-;3723:6;3731;3739;3747;3800:2;3788:9;3779:7;3775:23;3771:32;3768:52;;;3816:1;3813;3806:12;3768:52;3856:9;3843:23;3885:18;3926:2;3918:6;3915:14;3912:34;;;3942:1;3939;3932:12;3912:34;3981:70;4043:7;4034:6;4023:9;4019:22;3981:70;:::i;:::-;4070:8;;-1:-1:-1;3955:96:1;-1:-1:-1;4158:2:1;4143:18;;4130:32;;-1:-1:-1;4174:16:1;;;4171:36;;;4203:1;4200;4193:12;4171:36;;4242:72;4306:7;4295:8;4284:9;4280:24;4242:72;:::i;:::-;3601:773;;;;-1:-1:-1;4333:8:1;-1:-1:-1;;;;3601:773:1:o;4379:160::-;4444:20;;4500:13;;4493:21;4483:32;;4473:60;;4529:1;4526;4519:12;4544:315;4609:6;4617;4670:2;4658:9;4649:7;4645:23;4641:32;4638:52;;;4686:1;4683;4676:12;4638:52;4725:9;4712:23;4744:31;4769:5;4744:31;:::i;:::-;4794:5;-1:-1:-1;4818:35:1;4849:2;4834:18;;4818:35;:::i;:::-;4808:45;;4544:315;;;;;:::o;4864:180::-;4920:6;4973:2;4961:9;4952:7;4948:23;4944:32;4941:52;;;4989:1;4986;4979:12;4941:52;5012:26;5028:9;5012:26;:::i;5049:388::-;5117:6;5125;5178:2;5166:9;5157:7;5153:23;5149:32;5146:52;;;5194:1;5191;5184:12;5146:52;5233:9;5220:23;5252:31;5277:5;5252:31;:::i;:::-;5302:5;-1:-1:-1;5359:2:1;5344:18;;5331:32;5372:33;5331:32;5372:33;:::i;:::-;5424:7;5414:17;;;5049:388;;;;;:::o;5442:356::-;5644:2;5626:21;;;5663:18;;;5656:30;5722:34;5717:2;5702:18;;5695:62;5789:2;5774:18;;5442:356::o;5803:127::-;5864:10;5859:3;5855:20;5852:1;5845:31;5895:4;5892:1;5885:15;5919:4;5916:1;5909:15;5935:128;5975:3;6006:1;6002:6;5999:1;5996:13;5993:39;;;6012:18;;:::i;:::-;-1:-1:-1;6048:9:1;;5935:128::o;6426:380::-;6505:1;6501:12;;;;6548;;;6569:61;;6623:4;6615:6;6611:17;6601:27;;6569:61;6676:2;6668:6;6665:14;6645:18;6642:38;6639:161;;;6722:10;6717:3;6713:20;6710:1;6703:31;6757:4;6754:1;6747:15;6785:4;6782:1;6775:15;6639:161;;6426:380;;;:::o;6811:168::-;6851:7;6917:1;6913;6909:6;6905:14;6902:1;6899:21;6894:1;6887:9;6880:17;6876:45;6873:71;;;6924:18;;:::i;:::-;-1:-1:-1;6964:9:1;;6811:168::o;6984:217::-;7024:1;7050;7040:132;;7094:10;7089:3;7085:20;7082:1;7075:31;7129:4;7126:1;7119:15;7157:4;7154:1;7147:15;7040:132;-1:-1:-1;7186:9:1;;6984:217::o;8856:127::-;8917:10;8912:3;8908:20;8905:1;8898:31;8948:4;8945:1;8938:15;8972:4;8969:1;8962:15;13192:401;13394:2;13376:21;;;13433:2;13413:18;;;13406:30;13472:34;13467:2;13452:18;;13445:62;-1:-1:-1;;;13538:2:1;13523:18;;13516:35;13583:3;13568:19;;13192:401::o;13598:399::-;13800:2;13782:21;;;13839:2;13819:18;;;13812:30;13878:34;13873:2;13858:18;;13851:62;-1:-1:-1;;;13944:2:1;13929:18;;13922:33;13987:3;13972:19;;13598:399::o;15964:125::-;16004:4;16032:1;16029;16026:8;16023:34;;;16037:18;;:::i;:::-;-1:-1:-1;16074:9:1;;15964:125::o;16226:251::-;16296:6;16349:2;16337:9;16328:7;16324:23;16320:32;16317:52;;;16365:1;16362;16355:12;16317:52;16397:9;16391:16;16416:31;16441:5;16416:31;:::i;16482:980::-;16744:4;16792:3;16781:9;16777:19;16823:6;16812:9;16805:25;16849:2;16887:6;16882:2;16871:9;16867:18;16860:34;16930:3;16925:2;16914:9;16910:18;16903:31;16954:6;16989;16983:13;17020:6;17012;17005:22;17058:3;17047:9;17043:19;17036:26;;17097:2;17089:6;17085:15;17071:29;;17118:1;17128:195;17142:6;17139:1;17136:13;17128:195;;;17207:13;;-1:-1:-1;;;;;17203:39:1;17191:52;;17298:15;;;;17263:12;;;;17239:1;17157:9;17128:195;;;-1:-1:-1;;;;;;;17379:32:1;;;;17374:2;17359:18;;17352:60;-1:-1:-1;;;17443:3:1;17428:19;17421:35;17340:3;16482:980;-1:-1:-1;;;16482:980:1:o;18810:306::-;18898:6;18906;18914;18967:2;18955:9;18946:7;18942:23;18938:32;18935:52;;;18983:1;18980;18973:12;18935:52;19012:9;19006:16;18996:26;;19062:2;19051:9;19047:18;19041:25;19031:35;;19106:2;19095:9;19091:18;19085:25;19075:35;;18810:306;;;;;:::o
Swarm Source
ipfs://ce5d252ba6a3a6cef8bc6378b52b6c8b2445de9f9f1a0f0bdec6f1fa11ce1a06
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.