ERC-20
Overview
Max Total Supply
690,420,000,000 BRETTxAI
Holders
47
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,400,000,000 BRETTxAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BRETTxAI
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-16 */ /** //https://t.me/BRETTxAI //https://brettxai.com //https://twitter.com/BRETTxAI **/ // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint 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 (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint 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 (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); 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 (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } 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); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. 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 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract BRETTxAI is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address private devWallet; address private marketingWallet; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public swapTokensAtAmount; bool private limitsInEffect = true; bool private swapEnabled = false; bool private tradingActive = false; bool private swapping; uint256 private buyTotalFees; uint256 private buyMarketingFee; uint256 private buyLiquidityFee; uint256 private buyDevFee; uint256 private sellTotalFees; uint256 private sellMarketingFee; uint256 private sellLiquidityFee; uint256 private sellDevFee; uint256 private tokensForMarketing; uint256 private tokensForLiquidity; uint256 private tokensForDev; uint256 launchedAt; mapping (address => bool) private _blacklist; mapping (address => bool) public _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; mapping (address => bool) private 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 SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived,uint256 tokensIntoLiquidity); constructor( string memory name, string memory ticker, uint256 _buyMarketingFee, uint256 _buyLiquidityFee, uint256 _buyDevFee, uint256 _sellDevFee, uint256 _sellMarketingFee, uint256 _sellLiquidityFee, uint256 _totalSupply ) ERC20(name, ticker) { uint256 totalSupply = _totalSupply * 1e18; maxTransactionAmount = totalSupply * 20 / 1000; maxWallet = totalSupply * 20 / 1000; swapTokensAtAmount = totalSupply * 10 / 10000; address _dexRouter; if(block.chainid == 1){ _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH: Uniswap V2 } else if(block.chainid == 56){ _dexRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // BNB Chain: PCS V2 } else if(block.chainid == 97){ _dexRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // BNB Chain Testnet: PCS V2 } else if(block.chainid == 42161){ _dexRouter = 0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506; // Arbitrum: SushiSwap } else { revert("Chain not configured"); } IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_dexRouter); excludeFromLimits(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromLimits(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x84021BdaDd55B83C893724f073ca8004596d9d1c); //xxx marketing Wallet devWallet = address(owner()); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromLimits(owner(), true); excludeFromLimits(address(this), true); excludeFromLimits(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(address(owner()), totalSupply); } function enableTrade() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } receive() external payable {} 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"); require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens"); 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."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } bool logic = true; // if any account belongs to _isExcludedFromFee account then remove logic if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { logic = false; } if(logic) { // anti bot logic if (block.number <= (launchedAt + 1) && to != uniswapV2Pair && to != address(uniswapV2Router) ) { _blacklist[to] = true; } 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; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / 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 devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; 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 devFees = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - devFees; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: devFees}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } function excludeFromLimits(address wallet, bool excluded) public onlyOwner { _isExcludedMaxTransactionAmount[wallet] = excluded; } function excludeFromFees(address wallet, bool excluded) public onlyOwner { _isExcludedFromFees[wallet] = excluded; emit ExcludeFromFees(wallet, excluded); } function excludeFromList(address wallet, bool excluded) public onlyOwner { _blacklist[wallet] = excluded; } function updateSettings( uint256 _maxTransactionAmount, uint256 _maxWallet, uint256 _swapTokensAtAmount) external onlyOwner { maxTransactionAmount = _maxTransactionAmount; maxWallet = _maxWallet; swapTokensAtAmount = _swapTokensAtAmount; } function restore(address token) external onlyOwner { if (token == 0x0000000000000000000000000000000000000000) { payable(msg.sender).call{value: address(this).balance}(""); } else { IERC20 Token = IERC20(token); Token.transfer(msg.sender, Token.balanceOf(address(this))); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"ticker","type":"string"},{"internalType":"uint256","name":"_buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"enableTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromList","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"token","type":"address"}],"name":"restore","outputs":[],"stateMutability":"nonpayable","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"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"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"}],"name":"updateSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600d805462ffffff191660011790553480156200001f575f80fd5b5060405162002dbe38038062002dbe833981016040819052620000429162000893565b88886003620000528382620009c4565b506004620000618282620009c4565b5050505f620000756200051060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3505f620000d782670de0b6b3a764000062000aa0565b90506103e8620000e982601462000aa0565b620000f5919062000aba565b600a556103e86200010882601462000aa0565b62000114919062000aba565b600b556127106200012782600a62000aa0565b62000133919062000aba565b600c555f466001036200015c5750737a250d5630b4cf539739df2c5dacb4c659f2488d62000219565b466038036200018157507310ed43c718714eb63d5aa57b78b54704e256024e62000219565b46606103620001a6575073d99d1c33f9fc3444f8101754abc46c52416550d162000219565b4661a4b103620001cc5750731b02da8cb0d097eb8d57a175b88c7d8b4799750662000219565b60405162461bcd60e51b815260206004820152601460248201527f436861696e206e6f7420636f6e6669677572656400000000000000000000000060448201526064015b60405180910390fd5b806200022781600162000514565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200027f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a5919062000ada565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002f1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000317919062000ada565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000362573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000388919062000ada565b600780546001600160a01b0319166001600160a01b03929092169182179055620003b490600162000514565b600754620003cd906001600160a01b0316600162000588565b600f8a90556010899055601188905587620003e98a8c62000b02565b620003f5919062000b02565b600e556013869055601485905560158790558662000414868862000b02565b62000420919062000b02565b601255600980546001600160a01b0319167384021bdadd55b83c893724f073ca8004596d9d1c1790556200045c6005546001600160a01b031690565b600880546001600160a01b0319166001600160a01b039283161790556005546200048991166001620005db565b62000496306001620005db565b620004a561dead6001620005db565b620004c4620004bc6005546001600160a01b031690565b600162000514565b620004d130600162000514565b620004e061dead600162000514565b620004fe620004f76005546001600160a01b031690565b8462000683565b50505050505050505050505062000b18565b3390565b6005546001600160a01b031633146200055e5760405162461bcd60e51b815260206004820181905260248201525f8051602062002d9e833981519152604482015260640162000210565b6001600160a01b03919091165f908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620006255760405162461bcd60e51b815260206004820181905260248201525f8051602062002d9e833981519152604482015260640162000210565b6001600160a01b0382165f818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006db5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000210565b600254620006ea90826200076a565b6002556001600160a01b0382165f908152602081905260409020546200071190826200076a565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b5f8062000778838562000b02565b905083811015620007cc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000210565b90505b92915050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620007f9575f80fd5b81516001600160401b0380821115620008165762000816620007d5565b604051601f8301601f19908116603f01168101908282118183101715620008415762000841620007d5565b816040528381526020925086838588010111156200085d575f80fd5b5f91505b8382101562000880578582018301518183018401529082019062000861565b5f93810190920192909252949350505050565b5f805f805f805f805f6101208a8c031215620008ad575f80fd5b89516001600160401b0380821115620008c4575f80fd5b620008d28d838e01620007e9565b9a5060208c0151915080821115620008e8575f80fd5b50620008f78c828d01620007e9565b98505060408a0151965060608a0151955060808a0151945060a08a0151935060c08a0151925060e08a015191506101008a015190509295985092959850929598565b600181811c908216806200094e57607f821691505b6020821081036200096d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000765575f81815260208120601f850160051c810160208610156200099b5750805b601f850160051c820191505b81811015620009bc57828155600101620009a7565b505050505050565b81516001600160401b03811115620009e057620009e0620007d5565b620009f881620009f1845462000939565b8462000973565b602080601f83116001811462000a2e575f841562000a165750858301515b5f19600386901b1c1916600185901b178555620009bc565b5f85815260208120601f198616915b8281101562000a5e5788860151825594840194600190910190840162000a3d565b508582101562000a7c57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007cf57620007cf62000a8c565b5f8262000ad557634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121562000aeb575f80fd5b81516001600160a01b0381168114620007cc575f80fd5b80820180821115620007cf57620007cf62000a8c565b6122788062000b265f395ff3fe6080604052600436106101dd575f3560e01c8063751039fc116100fd578063c0a904a211610092578063e0bf7fd111610062578063e0bf7fd1146105a5578063e2f45605146105d3578063f2fde38b146105e8578063f8b45b0514610607575f80fd5b8063c0a904a21461050e578063c17b5b8c1461052d578063c8c8ebe41461054c578063dd62ed3e14610561575f80fd5b806395d89b41116100cd57806395d89b411461049d578063a457c2d7146104b1578063a9059cbb146104d0578063c0246668146104ef575f80fd5b8063751039fc1461042e5780638095d564146104425780638da5cb5b14610461578063924de9b71461047e575f80fd5b806323b872dd116101735780634fbee193116101435780634fbee1931461039057806365165227146103c757806370a08231146103e6578063715018a61461041a575f80fd5b806323b872dd14610318578063313ce56714610337578063395093511461035257806349bd5a5e14610371575f80fd5b8063095ea7b3116101ae578063095ea7b31461026657806310d5de53146102955780631694505e146102c357806318160ddd146102fa575f80fd5b806299d386146101e85780630465c563146101fe57806306fdde031461021d578063080d2c7514610247575f80fd5b366101e457005b5f80fd5b3480156101f3575f80fd5b506101fc61061c565b005b348015610209575f80fd5b506101fc610218366004611dd9565b610666565b348015610228575f80fd5b5061023161069e565b60405161023e9190611e02565b60405180910390f35b348015610252575f80fd5b506101fc610261366004611e61565b61072e565b348015610271575f80fd5b50610285610280366004611e7c565b610894565b604051901515815260200161023e565b3480156102a0575f80fd5b506102856102af366004611e61565b601c6020525f908152604090205460ff1681565b3480156102ce575f80fd5b506006546102e2906001600160a01b031681565b6040516001600160a01b03909116815260200161023e565b348015610305575f80fd5b506002545b60405190815260200161023e565b348015610323575f80fd5b50610285610332366004611ea6565b6108aa565b348015610342575f80fd5b506040516012815260200161023e565b34801561035d575f80fd5b5061028561036c366004611e7c565b610911565b34801561037c575f80fd5b506007546102e2906001600160a01b031681565b34801561039b575f80fd5b506102856103aa366004611e61565b6001600160a01b03165f908152601b602052604090205460ff1690565b3480156103d2575f80fd5b506101fc6103e1366004611ef1565b610946565b3480156103f1575f80fd5b5061030a610400366004611e61565b6001600160a01b03165f9081526020819052604090205490565b348015610425575f80fd5b506101fc61099a565b348015610439575f80fd5b50610285610a0d565b34801561044d575f80fd5b506101fc61045c366004611dd9565b610a49565b34801561046c575f80fd5b506005546001600160a01b03166102e2565b348015610489575f80fd5b506101fc610498366004611f28565b610a9f565b3480156104a8575f80fd5b50610231610ae3565b3480156104bc575f80fd5b506102856104cb366004611e7c565b610af2565b3480156104db575f80fd5b506102856104ea366004611e7c565b610b3f565b3480156104fa575f80fd5b506101fc610509366004611ef1565b610b4b565b348015610519575f80fd5b506101fc610528366004611ef1565b610bd3565b348015610538575f80fd5b506101fc610547366004611dd9565b610c27565b348015610557575f80fd5b5061030a600a5481565b34801561056c575f80fd5b5061030a61057b366004611f43565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156105b0575f80fd5b506102856105bf366004611e61565b601b6020525f908152604090205460ff1681565b3480156105de575f80fd5b5061030a600c5481565b3480156105f3575f80fd5b506101fc610602366004611e61565b610c7d565b348015610612575f80fd5b5061030a600b5481565b6005546001600160a01b0316331461064f5760405162461bcd60e51b815260040161064690611f6f565b60405180910390fd5b600d805462ffff0019166201010017905543601955565b6005546001600160a01b031633146106905760405162461bcd60e51b815260040161064690611f6f565b600a92909255600b55600c55565b6060600380546106ad90611fa4565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990611fa4565b80156107245780601f106106fb57610100808354040283529160200191610724565b820191905f5260205f20905b81548152906001019060200180831161070757829003601f168201915b5050505050905090565b6005546001600160a01b031633146107585760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b0381165f036107b057604051339047905f81818185875af1925050503d805f81146107a5576040519150601f19603f3d011682016040523d82523d5f602084013e6107aa565b606091505b50505050565b6040516370a0823160e01b815230600482015281906001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156107fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108229190611fdc565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af115801561086a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061088e9190611ff3565b50505b50565b5f6108a0338484610d67565b5060015b92915050565b5f6108b6848484610e8b565b6109078433610902856040518060600160405280602881526020016121f6602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906116dc565b610d67565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108a09185906109029086611714565b6005546001600160a01b031633146109705760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109c45760405162461bcd60e51b815260040161064690611f6f565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005545f906001600160a01b03163314610a395760405162461bcd60e51b815260040161064690611f6f565b50600d805460ff19169055600190565b6005546001600160a01b03163314610a735760405162461bcd60e51b815260040161064690611f6f565b600f8390556010829055601181905580610a8d8385612022565b610a979190612022565b600e55505050565b6005546001600160a01b03163314610ac95760405162461bcd60e51b815260040161064690611f6f565b600d80549115156101000261ff0019909216919091179055565b6060600480546106ad90611fa4565b5f6108a033846109028560405180606001604052806025815260200161221e60259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906116dc565b5f6108a0338484610e8b565b6005546001600160a01b03163314610b755760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b0382165f818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610bfd5760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b03919091165f908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c515760405162461bcd60e51b815260040161064690611f6f565b60138390556014829055601581905580610c6b8385612022565b610c759190612022565b601255505050565b6005546001600160a01b03163314610ca75760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b038116610d0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610646565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610dc95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610646565b6001600160a01b038216610e2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610646565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610eb15760405162461bcd60e51b815260040161064690612035565b6001600160a01b038216610ed75760405162461bcd60e51b81526004016106469061207a565b6001600160a01b0382165f908152601a602052604090205460ff16158015610f1757506001600160a01b0383165f908152601a602052604090205460ff16155b610f7d5760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610646565b805f03610f8f5761088e83835f611779565b600d5460ff16156112fd576005546001600160a01b03848116911614801590610fc657506005546001600160a01b03838116911614155b8015610fda57506001600160a01b03821615155b8015610ff157506001600160a01b03821661dead14155b80156110075750600d546301000000900460ff16155b156112fd57600d5462010000900460ff1661109e576001600160a01b0383165f908152601b602052604090205460ff168061105957506001600160a01b0382165f908152601b602052604090205460ff165b61109e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610646565b6001600160a01b0383165f908152601d602052604090205460ff1680156110dd57506001600160a01b0382165f908152601c602052604090205460ff16155b156111c057600a548111156111525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610646565b600b546001600160a01b0383165f908152602081905260409020546111779083612022565b11156111bb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610646565b6112fd565b6001600160a01b0382165f908152601d602052604090205460ff1680156111ff57506001600160a01b0383165f908152601c602052604090205460ff16155b1561127557600a548111156111bb5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610646565b6001600160a01b0382165f908152601c602052604090205460ff166112fd57600b546001600160a01b0383165f908152602081905260409020546112b99083612022565b11156112fd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610646565b6001600160a01b0383165f908152601b602052604090205460019060ff168061133d57506001600160a01b0383165f908152601b602052604090205460ff165b1561134557505f5b801561149557601954611359906001612022565b431115801561137657506007546001600160a01b03848116911614155b801561139057506006546001600160a01b03848116911614155b156113b8576001600160a01b0383165f908152601a60205260409020805460ff191660011790555b305f90815260208190526040902054600c54811080159081906113e25750600d54610100900460ff165b80156113f85750600d546301000000900460ff16155b801561141c57506001600160a01b0386165f908152601d602052604090205460ff16155b801561144057506001600160a01b0386165f908152601b602052604090205460ff16155b801561146457506001600160a01b0385165f908152601b602052604090205460ff16155b1561149257600d805463ff0000001916630100000017905561148461188a565b600d805463ff000000191690555b50505b600d546001600160a01b0385165f908152601b602052604090205460ff63010000009092048216159116806114e157506001600160a01b0384165f908152601b602052604090205460ff165b156114e957505f5b5f81156116c9576001600160a01b0385165f908152601d602052604090205460ff16801561151857505f601254115b156115d35761153d606461153760125487611ab490919063ffffffff16565b90611b32565b90506012546014548261155091906120bd565b61155a91906120d4565b60175f82825461156a9190612022565b909155505060125460155461157f90836120bd565b61158991906120d4565b60185f8282546115999190612022565b90915550506012546013546115ae90836120bd565b6115b891906120d4565b60165f8282546115c89190612022565b909155506116ab9050565b6001600160a01b0386165f908152601d602052604090205460ff1680156115fb57505f600e54115b156116ab5761161a6064611537600e5487611ab490919063ffffffff16565b9050600e546010548261162d91906120bd565b61163791906120d4565b60175f8282546116479190612022565b9091555050600e5460115461165c90836120bd565b61166691906120d4565b60185f8282546116769190612022565b9091555050600e54600f5461168b90836120bd565b61169591906120d4565b60165f8282546116a59190612022565b90915550505b80156116bc576116bc863083611779565b6116c681856120f3565b93505b6116d4868686611779565b505050505050565b5f81848411156116ff5760405162461bcd60e51b81526004016106469190611e02565b505f61170b84866120f3565b95945050505050565b5f806117208385612022565b9050838110156117725760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610646565b9392505050565b6001600160a01b03831661179f5760405162461bcd60e51b815260040161064690612035565b6001600160a01b0382166117c55760405162461bcd60e51b81526004016106469061207a565b6117d083838361088e565b61180c816040518060600160405280602681526020016121d0602691396001600160a01b0386165f9081526020819052604090205491906116dc565b6001600160a01b038085165f90815260208190526040808220939093559084168152205461183a9082611714565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e7e565b305f9081526020819052604081205490505f6018546016546017546118af9190612022565b6118b99190612022565b90505f8215806118c7575081155b156118d157505050565b600c546118df9060146120bd565b8311156118f757600c546118f49060146120bd565b92505b5f6002836017548661190991906120bd565b61191391906120d4565b61191d91906120d4565b90505f61192a8583611b73565b90504761193682611bb4565b5f6119414783611b73565b90505f61195d8761153760165485611ab490919063ffffffff16565b90505f6119798861153760185486611ab490919063ffffffff16565b90505f8161198784866120f3565b61199191906120f3565b5f6017819055601681905560188190556008546040519293506001600160a01b031691849181818185875af1925050503d805f81146119eb576040519150601f19603f3d011682016040523d82523d5f602084013e6119f0565b606091505b50909850508615801590611a0357505f81115b15611a5657611a128782611cfc565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6009546040516001600160a01b039091169047905f81818185875af1925050503d805f8114611aa0576040519150601f19603f3d011682016040523d82523d5f602084013e611aa5565b606091505b50505050505050505050505050565b5f825f03611ac357505f6108a4565b5f611ace83856120bd565b905082611adb85836120d4565b146117725760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610646565b5f61177283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611dad565b5f61177283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116dc565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611be757611be7612106565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611c3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c62919061211a565b81600181518110611c7557611c75612106565b6001600160a01b039283166020918202929092010152600654611c9b9130911684610d67565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611cd39085905f90869030904290600401612135565b5f604051808303815f87803b158015611cea575f80fd5b505af11580156116d4573d5f803e3d5ffd5b600654611d149030906001600160a01b031684610d67565b60065460085460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611d81573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611da691906121a4565b5050505050565b5f8183611dcd5760405162461bcd60e51b81526004016106469190611e02565b505f61170b84866120d4565b5f805f60608486031215611deb575f80fd5b505081359360208301359350604090920135919050565b5f6020808352835180828501525f5b81811015611e2d57858101830151858201604001528201611e11565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610891575f80fd5b5f60208284031215611e71575f80fd5b813561177281611e4d565b5f8060408385031215611e8d575f80fd5b8235611e9881611e4d565b946020939093013593505050565b5f805f60608486031215611eb8575f80fd5b8335611ec381611e4d565b92506020840135611ed381611e4d565b929592945050506040919091013590565b8015158114610891575f80fd5b5f8060408385031215611f02575f80fd5b8235611f0d81611e4d565b91506020830135611f1d81611ee4565b809150509250929050565b5f60208284031215611f38575f80fd5b813561177281611ee4565b5f8060408385031215611f54575f80fd5b8235611f5f81611e4d565b91506020830135611f1d81611e4d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611fb857607f821691505b602082108103611fd657634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611fec575f80fd5b5051919050565b5f60208284031215612003575f80fd5b815161177281611ee4565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108a4576108a461200e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108a4576108a461200e565b5f826120ee57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108a4576108a461200e565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561212a575f80fd5b815161177281611e4d565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156121835784516001600160a01b03168352938301939183019160010161215e565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156121b6575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202600f89003ed351b912460d65894e2008745a663cc57f167f9e2dc8662cfe58764736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0c03d25000000000000000000000000000000000000000000000000000000000000000008425245545478414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084252455454784149000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101dd575f3560e01c8063751039fc116100fd578063c0a904a211610092578063e0bf7fd111610062578063e0bf7fd1146105a5578063e2f45605146105d3578063f2fde38b146105e8578063f8b45b0514610607575f80fd5b8063c0a904a21461050e578063c17b5b8c1461052d578063c8c8ebe41461054c578063dd62ed3e14610561575f80fd5b806395d89b41116100cd57806395d89b411461049d578063a457c2d7146104b1578063a9059cbb146104d0578063c0246668146104ef575f80fd5b8063751039fc1461042e5780638095d564146104425780638da5cb5b14610461578063924de9b71461047e575f80fd5b806323b872dd116101735780634fbee193116101435780634fbee1931461039057806365165227146103c757806370a08231146103e6578063715018a61461041a575f80fd5b806323b872dd14610318578063313ce56714610337578063395093511461035257806349bd5a5e14610371575f80fd5b8063095ea7b3116101ae578063095ea7b31461026657806310d5de53146102955780631694505e146102c357806318160ddd146102fa575f80fd5b806299d386146101e85780630465c563146101fe57806306fdde031461021d578063080d2c7514610247575f80fd5b366101e457005b5f80fd5b3480156101f3575f80fd5b506101fc61061c565b005b348015610209575f80fd5b506101fc610218366004611dd9565b610666565b348015610228575f80fd5b5061023161069e565b60405161023e9190611e02565b60405180910390f35b348015610252575f80fd5b506101fc610261366004611e61565b61072e565b348015610271575f80fd5b50610285610280366004611e7c565b610894565b604051901515815260200161023e565b3480156102a0575f80fd5b506102856102af366004611e61565b601c6020525f908152604090205460ff1681565b3480156102ce575f80fd5b506006546102e2906001600160a01b031681565b6040516001600160a01b03909116815260200161023e565b348015610305575f80fd5b506002545b60405190815260200161023e565b348015610323575f80fd5b50610285610332366004611ea6565b6108aa565b348015610342575f80fd5b506040516012815260200161023e565b34801561035d575f80fd5b5061028561036c366004611e7c565b610911565b34801561037c575f80fd5b506007546102e2906001600160a01b031681565b34801561039b575f80fd5b506102856103aa366004611e61565b6001600160a01b03165f908152601b602052604090205460ff1690565b3480156103d2575f80fd5b506101fc6103e1366004611ef1565b610946565b3480156103f1575f80fd5b5061030a610400366004611e61565b6001600160a01b03165f9081526020819052604090205490565b348015610425575f80fd5b506101fc61099a565b348015610439575f80fd5b50610285610a0d565b34801561044d575f80fd5b506101fc61045c366004611dd9565b610a49565b34801561046c575f80fd5b506005546001600160a01b03166102e2565b348015610489575f80fd5b506101fc610498366004611f28565b610a9f565b3480156104a8575f80fd5b50610231610ae3565b3480156104bc575f80fd5b506102856104cb366004611e7c565b610af2565b3480156104db575f80fd5b506102856104ea366004611e7c565b610b3f565b3480156104fa575f80fd5b506101fc610509366004611ef1565b610b4b565b348015610519575f80fd5b506101fc610528366004611ef1565b610bd3565b348015610538575f80fd5b506101fc610547366004611dd9565b610c27565b348015610557575f80fd5b5061030a600a5481565b34801561056c575f80fd5b5061030a61057b366004611f43565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156105b0575f80fd5b506102856105bf366004611e61565b601b6020525f908152604090205460ff1681565b3480156105de575f80fd5b5061030a600c5481565b3480156105f3575f80fd5b506101fc610602366004611e61565b610c7d565b348015610612575f80fd5b5061030a600b5481565b6005546001600160a01b0316331461064f5760405162461bcd60e51b815260040161064690611f6f565b60405180910390fd5b600d805462ffff0019166201010017905543601955565b6005546001600160a01b031633146106905760405162461bcd60e51b815260040161064690611f6f565b600a92909255600b55600c55565b6060600380546106ad90611fa4565b80601f01602080910402602001604051908101604052809291908181526020018280546106d990611fa4565b80156107245780601f106106fb57610100808354040283529160200191610724565b820191905f5260205f20905b81548152906001019060200180831161070757829003601f168201915b5050505050905090565b6005546001600160a01b031633146107585760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b0381165f036107b057604051339047905f81818185875af1925050503d805f81146107a5576040519150601f19603f3d011682016040523d82523d5f602084013e6107aa565b606091505b50505050565b6040516370a0823160e01b815230600482015281906001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156107fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108229190611fdc565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af115801561086a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061088e9190611ff3565b50505b50565b5f6108a0338484610d67565b5060015b92915050565b5f6108b6848484610e8b565b6109078433610902856040518060600160405280602881526020016121f6602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906116dc565b610d67565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108a09185906109029086611714565b6005546001600160a01b031633146109705760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109c45760405162461bcd60e51b815260040161064690611f6f565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005545f906001600160a01b03163314610a395760405162461bcd60e51b815260040161064690611f6f565b50600d805460ff19169055600190565b6005546001600160a01b03163314610a735760405162461bcd60e51b815260040161064690611f6f565b600f8390556010829055601181905580610a8d8385612022565b610a979190612022565b600e55505050565b6005546001600160a01b03163314610ac95760405162461bcd60e51b815260040161064690611f6f565b600d80549115156101000261ff0019909216919091179055565b6060600480546106ad90611fa4565b5f6108a033846109028560405180606001604052806025815260200161221e60259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906116dc565b5f6108a0338484610e8b565b6005546001600160a01b03163314610b755760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b0382165f818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610bfd5760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b03919091165f908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c515760405162461bcd60e51b815260040161064690611f6f565b60138390556014829055601581905580610c6b8385612022565b610c759190612022565b601255505050565b6005546001600160a01b03163314610ca75760405162461bcd60e51b815260040161064690611f6f565b6001600160a01b038116610d0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610646565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610dc95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610646565b6001600160a01b038216610e2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610646565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610eb15760405162461bcd60e51b815260040161064690612035565b6001600160a01b038216610ed75760405162461bcd60e51b81526004016106469061207a565b6001600160a01b0382165f908152601a602052604090205460ff16158015610f1757506001600160a01b0383165f908152601a602052604090205460ff16155b610f7d5760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401610646565b805f03610f8f5761088e83835f611779565b600d5460ff16156112fd576005546001600160a01b03848116911614801590610fc657506005546001600160a01b03838116911614155b8015610fda57506001600160a01b03821615155b8015610ff157506001600160a01b03821661dead14155b80156110075750600d546301000000900460ff16155b156112fd57600d5462010000900460ff1661109e576001600160a01b0383165f908152601b602052604090205460ff168061105957506001600160a01b0382165f908152601b602052604090205460ff165b61109e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610646565b6001600160a01b0383165f908152601d602052604090205460ff1680156110dd57506001600160a01b0382165f908152601c602052604090205460ff16155b156111c057600a548111156111525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610646565b600b546001600160a01b0383165f908152602081905260409020546111779083612022565b11156111bb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610646565b6112fd565b6001600160a01b0382165f908152601d602052604090205460ff1680156111ff57506001600160a01b0383165f908152601c602052604090205460ff16155b1561127557600a548111156111bb5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610646565b6001600160a01b0382165f908152601c602052604090205460ff166112fd57600b546001600160a01b0383165f908152602081905260409020546112b99083612022565b11156112fd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610646565b6001600160a01b0383165f908152601b602052604090205460019060ff168061133d57506001600160a01b0383165f908152601b602052604090205460ff165b1561134557505f5b801561149557601954611359906001612022565b431115801561137657506007546001600160a01b03848116911614155b801561139057506006546001600160a01b03848116911614155b156113b8576001600160a01b0383165f908152601a60205260409020805460ff191660011790555b305f90815260208190526040902054600c54811080159081906113e25750600d54610100900460ff165b80156113f85750600d546301000000900460ff16155b801561141c57506001600160a01b0386165f908152601d602052604090205460ff16155b801561144057506001600160a01b0386165f908152601b602052604090205460ff16155b801561146457506001600160a01b0385165f908152601b602052604090205460ff16155b1561149257600d805463ff0000001916630100000017905561148461188a565b600d805463ff000000191690555b50505b600d546001600160a01b0385165f908152601b602052604090205460ff63010000009092048216159116806114e157506001600160a01b0384165f908152601b602052604090205460ff165b156114e957505f5b5f81156116c9576001600160a01b0385165f908152601d602052604090205460ff16801561151857505f601254115b156115d35761153d606461153760125487611ab490919063ffffffff16565b90611b32565b90506012546014548261155091906120bd565b61155a91906120d4565b60175f82825461156a9190612022565b909155505060125460155461157f90836120bd565b61158991906120d4565b60185f8282546115999190612022565b90915550506012546013546115ae90836120bd565b6115b891906120d4565b60165f8282546115c89190612022565b909155506116ab9050565b6001600160a01b0386165f908152601d602052604090205460ff1680156115fb57505f600e54115b156116ab5761161a6064611537600e5487611ab490919063ffffffff16565b9050600e546010548261162d91906120bd565b61163791906120d4565b60175f8282546116479190612022565b9091555050600e5460115461165c90836120bd565b61166691906120d4565b60185f8282546116769190612022565b9091555050600e54600f5461168b90836120bd565b61169591906120d4565b60165f8282546116a59190612022565b90915550505b80156116bc576116bc863083611779565b6116c681856120f3565b93505b6116d4868686611779565b505050505050565b5f81848411156116ff5760405162461bcd60e51b81526004016106469190611e02565b505f61170b84866120f3565b95945050505050565b5f806117208385612022565b9050838110156117725760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610646565b9392505050565b6001600160a01b03831661179f5760405162461bcd60e51b815260040161064690612035565b6001600160a01b0382166117c55760405162461bcd60e51b81526004016106469061207a565b6117d083838361088e565b61180c816040518060600160405280602681526020016121d0602691396001600160a01b0386165f9081526020819052604090205491906116dc565b6001600160a01b038085165f90815260208190526040808220939093559084168152205461183a9082611714565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e7e565b305f9081526020819052604081205490505f6018546016546017546118af9190612022565b6118b99190612022565b90505f8215806118c7575081155b156118d157505050565b600c546118df9060146120bd565b8311156118f757600c546118f49060146120bd565b92505b5f6002836017548661190991906120bd565b61191391906120d4565b61191d91906120d4565b90505f61192a8583611b73565b90504761193682611bb4565b5f6119414783611b73565b90505f61195d8761153760165485611ab490919063ffffffff16565b90505f6119798861153760185486611ab490919063ffffffff16565b90505f8161198784866120f3565b61199191906120f3565b5f6017819055601681905560188190556008546040519293506001600160a01b031691849181818185875af1925050503d805f81146119eb576040519150601f19603f3d011682016040523d82523d5f602084013e6119f0565b606091505b50909850508615801590611a0357505f81115b15611a5657611a128782611cfc565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6009546040516001600160a01b039091169047905f81818185875af1925050503d805f8114611aa0576040519150601f19603f3d011682016040523d82523d5f602084013e611aa5565b606091505b50505050505050505050505050565b5f825f03611ac357505f6108a4565b5f611ace83856120bd565b905082611adb85836120d4565b146117725760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610646565b5f61177283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611dad565b5f61177283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116dc565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611be757611be7612106565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611c3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c62919061211a565b81600181518110611c7557611c75612106565b6001600160a01b039283166020918202929092010152600654611c9b9130911684610d67565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611cd39085905f90869030904290600401612135565b5f604051808303815f87803b158015611cea575f80fd5b505af11580156116d4573d5f803e3d5ffd5b600654611d149030906001600160a01b031684610d67565b60065460085460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611d81573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611da691906121a4565b5050505050565b5f8183611dcd5760405162461bcd60e51b81526004016106469190611e02565b505f61170b84866120d4565b5f805f60608486031215611deb575f80fd5b505081359360208301359350604090920135919050565b5f6020808352835180828501525f5b81811015611e2d57858101830151858201604001528201611e11565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610891575f80fd5b5f60208284031215611e71575f80fd5b813561177281611e4d565b5f8060408385031215611e8d575f80fd5b8235611e9881611e4d565b946020939093013593505050565b5f805f60608486031215611eb8575f80fd5b8335611ec381611e4d565b92506020840135611ed381611e4d565b929592945050506040919091013590565b8015158114610891575f80fd5b5f8060408385031215611f02575f80fd5b8235611f0d81611e4d565b91506020830135611f1d81611ee4565b809150509250929050565b5f60208284031215611f38575f80fd5b813561177281611ee4565b5f8060408385031215611f54575f80fd5b8235611f5f81611e4d565b91506020830135611f1d81611e4d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611fb857607f821691505b602082108103611fd657634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611fec575f80fd5b5051919050565b5f60208284031215612003575f80fd5b815161177281611ee4565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108a4576108a461200e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108a4576108a461200e565b5f826120ee57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108a4576108a461200e565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561212a575f80fd5b815161177281611e4d565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156121835784516001600160a01b03168352938301939183019160010161215e565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156121b6575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202600f89003ed351b912460d65894e2008745a663cc57f167f9e2dc8662cfe58764736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0c03d25000000000000000000000000000000000000000000000000000000000000000008425245545478414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084252455454784149000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): BRETTxAI
Arg [1] : ticker (string): BRETTxAI
Arg [2] : _buyMarketingFee (uint256): 15
Arg [3] : _buyLiquidityFee (uint256): 0
Arg [4] : _buyDevFee (uint256): 1
Arg [5] : _sellDevFee (uint256): 21
Arg [6] : _sellMarketingFee (uint256): 1
Arg [7] : _sellLiquidityFee (uint256): 0
Arg [8] : _totalSupply (uint256): 690420000000
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000a0c03d2500
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [10] : 4252455454784149000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [12] : 4252455454784149000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
29487:13635:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33728:146;;;;;;;;;;;;;:::i;:::-;;42453:310;;;;;;;;;;-1:-1:-1;42453:310:0;;;;;:::i;:::-;;:::i;7594:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42772:345;;;;;;;;;;-1:-1:-1;42772:345:0;;;;;:::i;:::-;;:::i;9768:169::-;;;;;;;;;;-1:-1:-1;9768:169:0;;;;;:::i;:::-;;:::i;:::-;;;1761:14:1;;1754:22;1736:41;;1724:2;1709:18;9768:169:0;1596:187:1;30550:64:0;;;;;;;;;;-1:-1:-1;30550:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29566:41;;;;;;;;;;-1:-1:-1;29566:41:0;;;;-1:-1:-1;;;;;29566:41:0;;;;;;-1:-1:-1;;;;;1979:32:1;;;1961:51;;1949:2;1934:18;29566:41:0;1788:230:1;8717:108:0;;;;;;;;;;-1:-1:-1;8805:12:0;;8717:108;;;2169:25:1;;;2157:2;2142:18;8717:108:0;2023:177:1;10420:355:0;;;;;;;;;;-1:-1:-1;10420:355:0;;;;;:::i;:::-;;:::i;8558:93::-;;;;;;;;;;-1:-1:-1;8558:93:0;;8641:2;2808:36:1;;2796:2;2781:18;8558:93:0;2666:184:1;11185:218:0;;;;;;;;;;-1:-1:-1;11185:218:0;;;;;:::i;:::-;;:::i;29614:28::-;;;;;;;;;;-1:-1:-1;29614:28:0;;;;-1:-1:-1;;;;;29614:28:0;;;40992:125;;;;;;;;;;-1:-1:-1;40992:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;41081:28:0;41057:4;41081:28;;;:19;:28;;;;;;;;;40992:125;42324:121;;;;;;;;;;-1:-1:-1;42324:121:0;;;;;:::i;:::-;;:::i;8889:127::-;;;;;;;;;;-1:-1:-1;8889:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8990:18:0;8963:7;8990:18;;;;;;;;;;;;8889:127;22096:148;;;;;;;;;;;;;:::i;41125:120::-;;;;;;;;;;;;;:::i;41363:298::-;;;;;;;;;;-1:-1:-1;41363:298:0;;;;;:::i;:::-;;:::i;21452:79::-;;;;;;;;;;-1:-1:-1;21517:6:0;;-1:-1:-1;;;;;21517:6:0;21452:79;;41254:100;;;;;;;;;;-1:-1:-1;41254:100:0;;;;;:::i;:::-;;:::i;7814:104::-;;;;;;;;;;;;;:::i;11907:269::-;;;;;;;;;;-1:-1:-1;11907:269:0;;;;;:::i;:::-;;:::i;9230:175::-;;;;;;;;;;-1:-1:-1;9230:175:0;;;;;:::i;:::-;;:::i;42137:179::-;;;;;;;;;;-1:-1:-1;42137:179:0;;;;;:::i;:::-;;:::i;41984:144::-;;;;;;;;;;-1:-1:-1;41984:144:0;;;;;:::i;:::-;;:::i;41670:306::-;;;;;;;;;;-1:-1:-1;41670:306:0;;;;;:::i;:::-;;:::i;29727:35::-;;;;;;;;;;;;;;;;9469:151;;;;;;;;;;-1:-1:-1;9469:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9585:18:0;;;9558:7;9585:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9469:151;30491:52;;;;;;;;;;-1:-1:-1;30491:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29800:33;;;;;;;;;;;;;;;;22400:244;;;;;;;;;;-1:-1:-1;22400:244:0;;;;;:::i;:::-;;:::i;29769:24::-;;;;;;;;;;;;;;;;33728:146;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;;;;;;;;;33781:13:::1;:20:::0;;-1:-1:-1;;33812:18:0;;;;;33854:12:::1;33841:10;:25:::0;33728:146::o;42453:310::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;42619:20:::1;:44:::0;;;;42678:9:::1;:22:::0;42715:18:::1;:40:::0;42453:310::o;7594:100::-;7648:13;7681:5;7674:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7594:100;:::o;42772:345::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42838:51:0;::::1;42847:42;42838:51:::0;42834:276:::1;;42906:58;::::0;42914:10:::1;::::0;42938:21:::1;::::0;42906:58:::1;::::0;;;42938:21;42914:10;42906:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42772:345:::0;:::o;42834:276::-:1;43067:30;::::0;-1:-1:-1;;;43067:30:0;;43091:4:::1;43067:30;::::0;::::1;1961:51:1::0;43019:5:0;;-1:-1:-1;;;;;43040:14:0;::::1;::::0;::::1;::::0;43055:10:::1;::::0;43040:14;;43067:15:::1;::::0;1934:18:1;;43067:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43040:58;::::0;-1:-1:-1;;;;;;43040:58:0::1;::::0;;;;;;-1:-1:-1;;;;;5549:32:1;;;43040:58:0::1;::::0;::::1;5531:51:1::0;5598:18;;;5591:34;5504:18;;43040:58:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42982:128;42834:276;42772:345:::0;:::o;9768:169::-;9851:4;9868:39;279:10;9891:7;9900:6;9868:8;:39::i;:::-;-1:-1:-1;9925:4:0;9768:169;;;;;:::o;10420:355::-;10560:4;10577:36;10587:6;10595:9;10606:6;10577:9;:36::i;:::-;10624:121;10633:6;279:10;10655:89;10693:6;10655:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10655:19:0;;;;;;:11;:19;;;;;;;;279:10;10655:33;;;;;;;;;;:37;:89::i;:::-;10624:8;:121::i;:::-;-1:-1:-1;10763:4:0;10420:355;;;;;:::o;11185:218::-;279:10;11273:4;11322:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11322:34:0;;;;;;;;;;11273:4;;11290:83;;11313:7;;11322:50;;11361:10;11322:38;:50::i;42324:121::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42408:18:0;;;::::1;;::::0;;;:10:::1;:18;::::0;;;;:29;;-1:-1:-1;;42408:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42324:121::o;22096:148::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;22187:6:::1;::::0;22166:40:::1;::::0;22203:1:::1;::::0;-1:-1:-1;;;;;22187:6:0::1;::::0;22166:40:::1;::::0;22203:1;;22166:40:::1;22217:6;:19:::0;;-1:-1:-1;;;;;;22217:19:0::1;::::0;;22096:148::o;41125:120::-;21665:6;;41177:4;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;-1:-1:-1;41193:14:0::1;:22:::0;;-1:-1:-1;;41193:22:0::1;::::0;;;41125:120;:::o;41363:298::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;41479:15:::1;:31:::0;;;41521:15:::1;:31:::0;;;41563:9:::1;:19:::0;;;41575:7;41608:33:::1;41539:13:::0;41497;41608:33:::1;:::i;:::-;:45;;;;:::i;:::-;41593:12;:60:::0;-1:-1:-1;;;41363:298:0:o;41254:100::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;41325:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;41325:21:0;;::::1;::::0;;;::::1;::::0;;41254:100::o;7814:104::-;7870:13;7903:7;7896:14;;;;;:::i;11907:269::-;12000:4;12017:129;279:10;12040:7;12049:96;12088:15;12049:96;;;;;;;;;;;;;;;;;279:10;12049:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12049:34:0;;;;;;;;;;;;:38;:96::i;9230:175::-;9316:4;9333:42;279:10;9357:9;9368:6;9333:9;:42::i;42137:179::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42221:27:0;::::1;;::::0;;;:19:::1;:27;::::0;;;;;;;;:38;;-1:-1:-1;;42221:38:0::1;::::0;::::1;;::::0;;::::1;::::0;;;42275:33;;1736:41:1;;;42275:33:0::1;::::0;1709:18:1;42275:33:0::1;;;;;;;42137:179:::0;;:::o;41984:144::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42070:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:50;;-1:-1:-1;;42070:50:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41984:144::o;41670:306::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;41787:16:::1;:32:::0;;;41830:16:::1;:32:::0;;;41873:10:::1;:20:::0;;;41886:7;41920:35:::1;41849:13:::0;41806;41920:35:::1;:::i;:::-;:48;;;;:::i;:::-;41904:13;:64:::0;-1:-1:-1;;;41670:306:0:o;22400:244::-;21665:6;;-1:-1:-1;;;;;21665:6:0;279:10;21665:22;21657:67;;;;-1:-1:-1;;;21657:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22489:22:0;::::1;22481:73;;;::::0;-1:-1:-1;;;22481:73:0;;6350:2:1;22481:73:0::1;::::0;::::1;6332:21:1::0;6389:2;6369:18;;;6362:30;6428:34;6408:18;;;6401:62;-1:-1:-1;;;6479:18:1;;;6472:36;6525:19;;22481:73:0::1;6148:402:1::0;22481:73:0::1;22591:6;::::0;22570:38:::1;::::0;-1:-1:-1;;;;;22570:38:0;;::::1;::::0;22591:6:::1;::::0;22570:38:::1;::::0;22591:6:::1;::::0;22570:38:::1;22619:6;:17:::0;;-1:-1:-1;;;;;;22619:17:0::1;-1:-1:-1::0;;;;;22619:17:0;;;::::1;::::0;;;::::1;::::0;;22400:244::o;15103:381::-;-1:-1:-1;;;;;15239:19:0;;15231:68;;;;-1:-1:-1;;;15231:68:0;;6757:2:1;15231:68:0;;;6739:21:1;6796:2;6776:18;;;6769:30;6835:34;6815:18;;;6808:62;-1:-1:-1;;;6886:18:1;;;6879:34;6930:19;;15231:68:0;6555:400:1;15231:68:0;-1:-1:-1;;;;;15318:21:0;;15310:68;;;;-1:-1:-1;;;15310:68:0;;7162:2:1;15310:68:0;;;7144:21:1;7201:2;7181:18;;;7174:30;7240:34;7220:18;;;7213:62;-1:-1:-1;;;7291:18:1;;;7284:32;7333:19;;15310:68:0;6960:398:1;15310:68:0;-1:-1:-1;;;;;15392:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15444:32;;2169:25:1;;;15444:32:0;;2142:18:1;15444:32:0;;;;;;;;15103:381;;;:::o;33922:4160::-;-1:-1:-1;;;;;34054:18:0;;34046:68;;;;-1:-1:-1;;;34046:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34133:16:0;;34125:64;;;;-1:-1:-1;;;34125:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34209:14:0;;;;;;:10;:14;;;;;;;;34208:15;:36;;;;-1:-1:-1;;;;;;34228:16:0;;;;;;:10;:16;;;;;;;;34227:17;34208:36;34200:98;;;;-1:-1:-1;;;34200:98:0;;8375:2:1;34200:98:0;;;8357:21:1;8414:2;8394:18;;;8387:30;8453:34;8433:18;;;8426:62;-1:-1:-1;;;8504:18:1;;;8497:47;8561:19;;34200:98:0;8173:413:1;34200:98:0;34322:6;34332:1;34322:11;34319:92;;34350:28;34366:4;34372:2;34376:1;34350:15;:28::i;34319:92::-;34427:14;;;;34424:1233;;;21517:6;;-1:-1:-1;;;;;34479:15:0;;;21517:6;;34479:15;;;;:49;;-1:-1:-1;21517:6:0;;-1:-1:-1;;;;;34515:13:0;;;21517:6;;34515:13;;34479:49;:86;;;;-1:-1:-1;;;;;;34549:16:0;;;;34479:86;:128;;;;-1:-1:-1;;;;;;34586:21:0;;34600:6;34586:21;;34479:128;:158;;;;-1:-1:-1;34629:8:0;;;;;;;34628:9;34479:158;34457:1189;;;34675:13;;;;;;;34671:148;;-1:-1:-1;;;;;34720:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;34749:23:0;;;;;;:19;:23;;;;;;;;34720:52;34712:87;;;;-1:-1:-1;;;34712:87:0;;8793:2:1;34712:87:0;;;8775:21:1;8832:2;8812:18;;;8805:30;-1:-1:-1;;;8851:18:1;;;8844:52;8913:18;;34712:87:0;8591:346:1;34712:87:0;-1:-1:-1;;;;;34872:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;34908:35:0;;;;;;:31;:35;;;;;;;;34907:36;34872:71;34868:763;;;34990:20;;34980:6;:30;;34972:96;;;;-1:-1:-1;;;34972:96:0;;9144:2:1;34972:96:0;;;9126:21:1;9183:2;9163:18;;;9156:30;9222:34;9202:18;;;9195:62;-1:-1:-1;;;9273:18:1;;;9266:51;9334:19;;34972:96:0;8942:417:1;34972:96:0;35129:9;;-1:-1:-1;;;;;8990:18:0;;8963:7;8990:18;;;;;;;;;;;35103:22;;:6;:22;:::i;:::-;:35;;35095:67;;;;-1:-1:-1;;;35095:67:0;;9566:2:1;35095:67:0;;;9548:21:1;9605:2;9585:18;;;9578:30;-1:-1:-1;;;9624:18:1;;;9617:49;9683:18;;35095:67:0;9364:343:1;35095:67:0;34868:763;;;-1:-1:-1;;;;;35241:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;35275:37:0;;;;;;:31;:37;;;;;;;;35274:38;35241:71;35237:394;;;35359:20;;35349:6;:30;;35341:97;;;;-1:-1:-1;;;35341:97:0;;9914:2:1;35341:97:0;;;9896:21:1;9953:2;9933:18;;;9926:30;9992:34;9972:18;;;9965:62;-1:-1:-1;;;10043:18:1;;;10036:52;10105:19;;35341:97:0;9712:418:1;35237:394:0;-1:-1:-1;;;;;35485:35:0;;;;;;:31;:35;;;;;;;;35481:150;;35578:9;;-1:-1:-1;;;;;8990:18:0;;8963:7;8990:18;;;;;;;;;;;35552:22;;:6;:22;:::i;:::-;:35;;35544:67;;;;-1:-1:-1;;;35544:67:0;;9566:2:1;35544:67:0;;;9548:21:1;9605:2;9585:18;;;9578:30;-1:-1:-1;;;9624:18:1;;;9617:49;9683:18;;35544:67:0;9364:343:1;35544:67:0;-1:-1:-1;;;;;35785:25:0;;35669:10;35785:25;;;:19;:25;;;;;;35682:4;;35785:25;;;:52;;-1:-1:-1;;;;;;35814:23:0;;;;;;:19;:23;;;;;;;;35785:52;35782:97;;;-1:-1:-1;35862:5:0;35782:97;35894:5;35891:838;;;35971:10;;:14;;35984:1;35971:14;:::i;:::-;35954:12;:32;;:77;;;;-1:-1:-1;36018:13:0;;-1:-1:-1;;;;;36012:19:0;;;36018:13;;36012:19;;35954:77;:133;;;;-1:-1:-1;36071:15:0;;-1:-1:-1;;;;;36057:30:0;;;36071:15;;36057:30;;35954:133;35950:214;;;-1:-1:-1;;;;;36127:14:0;;;;;;:10;:14;;;;;:21;;-1:-1:-1;;36127:21:0;36144:4;36127:21;;;35950:214;36233:4;36184:28;8990:18;;;;;;;;;;;36299;;36275:42;;;;;;;36360:39;;-1:-1:-1;36388:11:0;;;;;;;36360:39;:69;;;;-1:-1:-1;36421:8:0;;;;;;;36420:9;36360:69;:122;;;;-1:-1:-1;;;;;;36451:31:0;;;;;;:25;:31;;;;;;;;36450:32;36360:122;:169;;;;-1:-1:-1;;;;;;36504:25:0;;;;;;:19;:25;;;;;;;;36503:26;36360:169;:214;;;;-1:-1:-1;;;;;;36551:23:0;;;;;;:19;:23;;;;;;;;36550:24;36360:214;36338:378;;;36609:8;:15;;-1:-1:-1;;36609:15:0;;;;;36649:10;:8;:10::i;:::-;36684:8;:16;;-1:-1:-1;;36684:16:0;;;36338:378;35901:828;;35891:838;36758:8;;-1:-1:-1;;;;;36868:25:0;;36742:12;36868:25;;;:19;:25;;;;;;36758:8;;;;;;;36757:9;;36868:25;;:52;;-1:-1:-1;;;;;;36897:23:0;;;;;;:19;:23;;;;;;;;36868:52;36865:99;;;-1:-1:-1;36947:5:0;36865:99;36977:12;37081:7;37078:950;;;-1:-1:-1;;;;;37132:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;37181:1;37165:13;;:17;37132:50;37128:750;;;37209:34;37239:3;37209:25;37220:13;;37209:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;37202:41;;37310:13;;37291:16;;37284:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;37262:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;37378:13:0;;37365:10;;37358:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;37342:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;37458:13:0;;37439:16;;37432:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;37410:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;37128:750:0;;-1:-1:-1;37128:750:0;;-1:-1:-1;;;;;37532:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;37582:1;37567:12;;:16;37532:51;37529:349;;;37608:33;37637:3;37608:24;37619:12;;37608:6;:10;;:24;;;;:::i;:33::-;37601:40;;37704:12;;37686:15;;37679:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;37657:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;37770:12:0;;37758:9;;37751:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;37735:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;37848:12:0;;37830:15;;37823:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;37801:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;37529:349:0;37898:8;;37895:93;;37930:42;37946:4;37960;37967;37930:15;:42::i;:::-;38002:14;38012:4;38002:14;;:::i;:::-;;;37078:950;38041:33;38057:4;38063:2;38067:6;38041:15;:33::i;:::-;34035:4047;;;33922:4160;;;:::o;17390:193::-;17476:7;17512:12;17504:6;;;;17496:29;;;;-1:-1:-1;;;17496:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17536:9:0;17548:5;17552:1;17548;:5;:::i;:::-;17536:17;17390:193;-1:-1:-1;;;;;17390:193:0:o;16484:182::-;16542:7;;16574:5;16578:1;16574;:5;:::i;:::-;16562:17;;16603:1;16598;:6;;16590:46;;;;-1:-1:-1;;;16590:46:0;;10865:2:1;16590:46:0;;;10847:21:1;10904:2;10884:18;;;10877:30;10943:29;10923:18;;;10916:57;10990:18;;16590:46:0;10663:351:1;16590:46:0;16657:1;16484:182;-1:-1:-1;;;16484:182:0:o;12667:575::-;-1:-1:-1;;;;;12807:20:0;;12799:70;;;;-1:-1:-1;;;12799:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12888:23:0;;12880:71;;;;-1:-1:-1;;;12880:71:0;;;;;;;:::i;:::-;12965:47;12986:6;12994:9;13005:6;12965:20;:47::i;:::-;13046:71;13068:6;13046:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13046:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13026:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13151:20;;;;;;;:32;;13176:6;13151:24;:32::i;:::-;-1:-1:-1;;;;;13128:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13199:35;2169:25:1;;;13128:20:0;;13199:35;;;;;;2142:18:1;13199:35:0;2023:177:1;39222:1568:0;39305:4;39261:23;8990:18;;;;;;;;;;;39261:50;;39322:25;39392:12;;39371:18;;39350;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;39322:82;-1:-1:-1;39415:12:0;39444:20;;;:46;;-1:-1:-1;39468:22:0;;39444:46;39441:60;;;39493:7;;;39222:1568::o;39441:60::-;39535:18;;:23;;39556:2;39535:23;:::i;:::-;39517:15;:41;39514:111;;;39590:18;;:23;;39611:2;39590:23;:::i;:::-;39572:41;;39514:111;39687:23;39772:1;39752:17;39731:18;;39713:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;39687:86;-1:-1:-1;39784:26:0;39813:36;:15;39687:86;39813:19;:36::i;:::-;39784:65;-1:-1:-1;39891:21:0;39926:36;39784:65;39926:16;:36::i;:::-;39977:18;39998:44;:21;40024:17;39998:25;:44::i;:::-;39977:65;;40056:23;40082:57;40121:17;40082:34;40097:18;;40082:10;:14;;:34;;;;:::i;:57::-;40056:83;;40150:15;40168:51;40201:17;40168:28;40183:12;;40168:10;:14;;:28;;;;:::i;:51::-;40150:69;-1:-1:-1;40236:23:0;40150:69;40262:28;40275:15;40262:10;:28;:::i;:::-;:38;;;;:::i;:::-;40338:1;40317:18;:22;;;40350:18;:22;;;40383:12;:16;;;40434:9;;40426:43;;40236:64;;-1:-1:-1;;;;;;40434:9:0;;40457:7;;40426:43;40338:1;40426:43;40457:7;40434:9;40426:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40413:56:0;;-1:-1:-1;;40486:19:0;;;;;:42;;;40527:1;40509:15;:19;40486:42;40483:210;;;40544:46;40557:15;40574;40544:12;:46::i;:::-;40662:18;;40610:71;;;11221:25:1;;;11277:2;11262:18;;11255:34;;;11305:18;;;11298:34;;;;40610:71:0;;;;;;11209:2:1;40610:71:0;;;40483:210;40727:15;;40719:63;;-1:-1:-1;;;;;40727:15:0;;;;40756:21;;40719:63;;;;40756:21;40727:15;40719:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;39222:1568:0:o;17843:473::-;17901:7;18146:1;18151;18146:6;18142:47;;-1:-1:-1;18176:1:0;18169:8;;18142:47;18202:9;18214:5;18218:1;18214;:5;:::i;:::-;18202:17;-1:-1:-1;18247:1:0;18238:5;18242:1;18202:17;18238:5;:::i;:::-;:10;18230:56;;;;-1:-1:-1;;;18230:56:0;;11545:2:1;18230:56:0;;;11527:21:1;11584:2;11564:18;;;11557:30;11623:34;11603:18;;;11596:62;-1:-1:-1;;;11674:18:1;;;11667:31;11715:19;;18230:56:0;11343:397:1;18793:132:0;18851:7;18878:39;18882:1;18885;18878:39;;;;;;;;;;;;;;;;;:3;:39::i;16950:136::-;17008:7;17035:43;17039:1;17042;17035:43;;;;;;;;;;;;;;;;;:3;:43::i;38091:597::-;38244:16;;;38258:1;38244:16;;;;;;;;38220:21;;38244:16;;;;;;;;;;-1:-1:-1;38244:16:0;38220:40;;38289:4;38271;38276:1;38271:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38271:23:0;;;:7;;;;;;;;;;:23;;;;38315:15;;:22;;;-1:-1:-1;;;38315:22:0;;;;:15;;;;;:20;;:22;;;;;38271:7;;38315:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38305:4;38310:1;38305:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38305:32:0;;;:7;;;;;;;;;:32;38383:15;;38351:62;;38368:4;;38383:15;38401:11;38351:8;:62::i;:::-;38453:15;;:224;;-1:-1:-1;;;38453:224:0;;-1:-1:-1;;;;;38453:15:0;;;;:66;;:224;;38534:11;;38453:15;;38604:4;;38631;;38651:15;;38453:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38697:516;38877:15;;38845:62;;38862:4;;-1:-1:-1;;;;;38877:15:0;38895:11;38845:8;:62::i;:::-;38951:15;;39155:9;;38951:254;;-1:-1:-1;;;38951:254:0;;39023:4;38951:254;;;13591:34:1;13641:18;;;13634:34;;;38951:15:0;13684:18:1;;;13677:34;;;13727:18;;;13720:34;-1:-1:-1;;;;;39155:9:0;;;13770:19:1;;;13763:44;39179:15:0;13823:19:1;;;13816:35;38951:15:0;;;:31;;38990:9;;13525:19:1;;38951:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38697:516;;:::o;19422:279::-;19508:7;19543:12;19536:5;19528:28;;;;-1:-1:-1;;;19528:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19567:9:0;19579:5;19583:1;19579;:5;:::i;14:316:1:-;91:6;99;107;160:2;148:9;139:7;135:23;131:32;128:52;;;176:1;173;166:12;128:52;-1:-1:-1;;199:23:1;;;269:2;254:18;;241:32;;-1:-1:-1;320:2:1;305:18;;;292:32;;14:316;-1:-1:-1;14:316:1:o;335:548::-;447:4;476:2;505;494:9;487:21;537:6;531:13;580:6;575:2;564:9;560:18;553:34;605:1;615:140;629:6;626:1;623:13;615:140;;;724:14;;;720:23;;714:30;690:17;;;709:2;686:26;679:66;644:10;;615:140;;;619:3;804:1;799:2;790:6;779:9;775:22;771:31;764:42;874:2;867;863:7;858:2;850:6;846:15;842:29;831:9;827:45;823:54;815:62;;;;335:548;;;;:::o;888:131::-;-1:-1:-1;;;;;963:31:1;;953:42;;943:70;;1009:1;1006;999:12;1024:247;1083:6;1136:2;1124:9;1115:7;1111:23;1107:32;1104:52;;;1152:1;1149;1142:12;1104:52;1191:9;1178:23;1210:31;1235:5;1210:31;:::i;1276:315::-;1344:6;1352;1405:2;1393:9;1384:7;1380:23;1376:32;1373:52;;;1421:1;1418;1411:12;1373:52;1460:9;1447:23;1479:31;1504:5;1479:31;:::i;:::-;1529:5;1581:2;1566:18;;;;1553:32;;-1:-1:-1;;;1276:315:1:o;2205:456::-;2282:6;2290;2298;2351:2;2339:9;2330:7;2326:23;2322:32;2319:52;;;2367:1;2364;2357:12;2319:52;2406:9;2393:23;2425:31;2450:5;2425:31;:::i;:::-;2475:5;-1:-1:-1;2532:2:1;2517:18;;2504:32;2545:33;2504:32;2545:33;:::i;:::-;2205:456;;2597:7;;-1:-1:-1;;;2651:2:1;2636:18;;;;2623:32;;2205:456::o;3063:118::-;3149:5;3142:13;3135:21;3128:5;3125:32;3115:60;;3171:1;3168;3161:12;3186:382;3251:6;3259;3312:2;3300:9;3291:7;3287:23;3283:32;3280:52;;;3328:1;3325;3318:12;3280:52;3367:9;3354:23;3386:31;3411:5;3386:31;:::i;:::-;3436:5;-1:-1:-1;3493:2:1;3478:18;;3465:32;3506:30;3465:32;3506:30;:::i;:::-;3555:7;3545:17;;;3186:382;;;;;:::o;3573:241::-;3629:6;3682:2;3670:9;3661:7;3657:23;3653:32;3650:52;;;3698:1;3695;3688:12;3650:52;3737:9;3724:23;3756:28;3778:5;3756:28;:::i;3819:388::-;3887:6;3895;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;4003:9;3990:23;4022:31;4047:5;4022:31;:::i;:::-;4072:5;-1:-1:-1;4129:2:1;4114:18;;4101:32;4142:33;4101:32;4142:33;:::i;4212:356::-;4414:2;4396:21;;;4433:18;;;4426:30;4492:34;4487:2;4472:18;;4465:62;4559:2;4544:18;;4212:356::o;4573:380::-;4652:1;4648:12;;;;4695;;;4716:61;;4770:4;4762:6;4758:17;4748:27;;4716:61;4823:2;4815:6;4812:14;4792:18;4789:38;4786:161;;4869:10;4864:3;4860:20;4857:1;4850:31;4904:4;4901:1;4894:15;4932:4;4929:1;4922:15;4786:161;;4573:380;;;:::o;5168:184::-;5238:6;5291:2;5279:9;5270:7;5266:23;5262:32;5259:52;;;5307:1;5304;5297:12;5259:52;-1:-1:-1;5330:16:1;;5168:184;-1:-1:-1;5168:184:1:o;5636:245::-;5703:6;5756:2;5744:9;5735:7;5731:23;5727:32;5724:52;;;5772:1;5769;5762:12;5724:52;5804:9;5798:16;5823:28;5845:5;5823:28;:::i;5886:127::-;5947:10;5942:3;5938:20;5935:1;5928:31;5978:4;5975:1;5968:15;6002:4;5999:1;5992:15;6018:125;6083:9;;;6104:10;;;6101:36;;;6117:18;;:::i;7363:401::-;7565:2;7547:21;;;7604:2;7584:18;;;7577:30;7643:34;7638:2;7623:18;;7616:62;-1:-1:-1;;;7709:2:1;7694:18;;7687:35;7754:3;7739:19;;7363:401::o;7769:399::-;7971:2;7953:21;;;8010:2;7990:18;;;7983:30;8049:34;8044:2;8029:18;;8022:62;-1:-1:-1;;;8115:2:1;8100:18;;8093:33;8158:3;8143:19;;7769:399::o;10135:168::-;10208:9;;;10239;;10256:15;;;10250:22;;10236:37;10226:71;;10277:18;;:::i;10308:217::-;10348:1;10374;10364:132;;10418:10;10413:3;10409:20;10406:1;10399:31;10453:4;10450:1;10443:15;10481:4;10478:1;10471:15;10364:132;-1:-1:-1;10510:9:1;;10308:217::o;10530:128::-;10597:9;;;10618:11;;;10615:37;;;10632:18;;:::i;11877:127::-;11938:10;11933:3;11929:20;11926:1;11919:31;11969:4;11966:1;11959:15;11993:4;11990:1;11983:15;12009:251;12079:6;12132:2;12120:9;12111:7;12107:23;12103:32;12100:52;;;12148:1;12145;12138:12;12100:52;12180:9;12174:16;12199:31;12224:5;12199:31;:::i;12265:980::-;12527:4;12575:3;12564:9;12560:19;12606:6;12595:9;12588:25;12632:2;12670:6;12665:2;12654:9;12650:18;12643:34;12713:3;12708:2;12697:9;12693:18;12686:31;12737:6;12772;12766:13;12803:6;12795;12788:22;12841:3;12830:9;12826:19;12819:26;;12880:2;12872:6;12868:15;12854:29;;12901:1;12911:195;12925:6;12922:1;12919:13;12911:195;;;12990:13;;-1:-1:-1;;;;;12986:39:1;12974:52;;13081:15;;;;13046:12;;;;13022:1;12940:9;12911:195;;;-1:-1:-1;;;;;;;13162:32:1;;;;13157:2;13142:18;;13135:60;-1:-1:-1;;;13226:3:1;13211:19;13204:35;13123:3;12265:980;-1:-1:-1;;;12265:980:1:o;13862:306::-;13950:6;13958;13966;14019:2;14007:9;13998:7;13994:23;13990:32;13987:52;;;14035:1;14032;14025:12;13987:52;14064:9;14058:16;14048:26;;14114:2;14103:9;14099:18;14093:25;14083:35;;14158:2;14147:9;14143:18;14137:25;14127:35;;13862:306;;;;;:::o
Swarm Source
ipfs://2600f89003ed351b912460d65894e2008745a663cc57f167f9e2dc8662cfe587
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.