ERC-20
Overview
Max Total Supply
100,000,000 SBC
Holders
46
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000006035583 SBCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShibCoke
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-07 */ /* https://t.me/ShibCokeERC */ // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.9; 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 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 ShibCoke is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address public marketingWallet; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; uint256 public BuyInitialFees; uint256 public BuyTotalFees; uint256 public BuyLiquidityFee; uint256 public BuyTaxFee; uint256 public SellInitialFees; uint256 public SellTotalFees; uint256 public SellLiquidityFee; uint256 public SellTaxFee; uint256 public tokensForLiquidity; uint256 public tokensForTax; /******************/ // exclude from fees and max transaction amount mapping (address => bool) public _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxBuyTransactionAmount; mapping (address => bool) public _isExcludedMaxSellTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("ShibCoke", "SBC") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _isExcludedMaxBuyTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true; _isExcludedMaxSellTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true; uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); _isExcludedMaxBuyTransactionAmount[uniswapV2Pair] = true; _isExcludedMaxSellTransactionAmount[uniswapV2Pair] = true; _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); // fees 4/4 uint256 _BuyLiquidityFee = 0; uint256 _BuyTaxFee = 6; uint256 _SellLiquidityFee = 0; uint256 _SellTaxFee = 6; uint256 totalSupply = 100000000 * 1e18; maxWallet = 2000000 * 1e18; // Max Wallet 2% swapTokensAtAmount = 100000 * 1e18; // 0.1% swap threshold for the CA BuyLiquidityFee = _BuyLiquidityFee; BuyTaxFee = _BuyTaxFee; BuyTotalFees = BuyLiquidityFee + BuyTaxFee; BuyInitialFees = BuyTotalFees; SellLiquidityFee = _SellLiquidityFee; SellTaxFee = _SellTaxFee; SellTotalFees = SellLiquidityFee + SellTaxFee; SellInitialFees = SellTotalFees; marketingWallet = address(0x813Ba8e14b5475b4338368671013b5ACB02ca5a4); // set as marketing wallet // exclude from paying fees or having max transaction amount _isExcludedFromFees[address(0x813Ba8e14b5475b4338368671013b5ACB02ca5a4)] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(0xdead)] = true; _isExcludedMaxBuyTransactionAmount[address(0x813Ba8e14b5475b4338368671013b5ACB02ca5a4)] = true; _isExcludedMaxBuyTransactionAmount[address(this)] = true; _isExcludedMaxBuyTransactionAmount[address(0xdead)] = true; _isExcludedMaxSellTransactionAmount[address(0x813Ba8e14b5475b4338368671013b5ACB02ca5a4)] = true; _isExcludedMaxSellTransactionAmount[address(this)] = true; _isExcludedMaxSellTransactionAmount[address(0xdead)] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } function updateMaxWallet() external onlyOwner { maxWallet = 4000000 * 1e18; // Max Wallet 5% } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if ( 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] && !_isExcludedMaxBuyTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; bool walletToWallet = !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from]; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || walletToWallet) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // buy if (automatedMarketMakerPairs[from] && BuyTotalFees > 0){ fees = amount.mul(BuyTotalFees).div(100); tokensForLiquidity += fees * BuyLiquidityFee / BuyTotalFees; tokensForTax += fees * BuyTaxFee / BuyTotalFees; } // sell else if(automatedMarketMakerPairs[to] && SellTotalFees > 0) { fees = amount.mul(SellTotalFees).div(100); tokensForLiquidity += fees * SellLiquidityFee / SellTotalFees; tokensForTax += fees * SellTaxFee / SellTotalFees; } 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 address(marketingWallet), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForTax; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Half 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 ethForTax = ethBalance.mul(tokensForTax).div(totalTokensToSwap-liquidityTokens); uint256 ethForLiquidity = ethBalance - ethForTax; tokensForLiquidity = 0; tokensForTax = 0; if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"BuyInitialFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuyTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellInitialFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxBuyTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellTransactionAmount","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600881526020017f53686962436f6b650000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53424300000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000cc92919062000c7b565b508060049080519060200190620000e592919062000c7b565b5050506000620000fa620009bb60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050600160156000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160166000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030557600080fd5b505afa1580156200031a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000340919062000d95565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a357600080fd5b505afa158015620003b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003de919062000d95565b6040518363ffffffff1660e01b8152600401620003fd92919062000dd8565b602060405180830381600087803b1580156200041857600080fd5b505af11580156200042d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000453919062000d95565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016015600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200054f60a0516001620009c360201b60201c565b600080600690506000806006905060006a52b7d2dcc80cd2e400000090506a01a784379d99db4200000060088190555069152d02c7e14af680000060078190555084600c8190555083600d81905550600d54600c54620005b0919062000e3e565b600b81905550600b54600a819055508260108190555081601181905550601154601054620005df919062000e3e565b600f81905550600f54600e8190555073813ba8e14b5475b4338368671013b5acb02ca5a4600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016014600073813ba8e14b5475b4338368671013b5acb02ca5a473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016014600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016015600073813ba8e14b5475b4338368671013b5acb02ca5a473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016015600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600073813ba8e14b5475b4338368671013b5acb02ca5a473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620009af338262000a6460201b60201c565b50505050505062001023565b600033905090565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ad7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ace9062000efc565b60405180910390fd5b62000aeb6000838362000c1360201b60201c565b62000b078160025462000c1860201b620013a31790919060201c565b60028190555062000b65816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c1860201b620013a31790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c07919062000f2f565b60405180910390a35050565b505050565b600080828462000c29919062000e3e565b90508381101562000c71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c689062000f9c565b60405180910390fd5b8091505092915050565b82805462000c899062000fed565b90600052602060002090601f01602090048101928262000cad576000855562000cf9565b82601f1062000cc857805160ff191683800117855562000cf9565b8280016001018555821562000cf9579182015b8281111562000cf857825182559160200191906001019062000cdb565b5b50905062000d08919062000d0c565b5090565b5b8082111562000d2757600081600090555060010162000d0d565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d5d8262000d30565b9050919050565b62000d6f8162000d50565b811462000d7b57600080fd5b50565b60008151905062000d8f8162000d64565b92915050565b60006020828403121562000dae5762000dad62000d2b565b5b600062000dbe8482850162000d7e565b91505092915050565b62000dd28162000d50565b82525050565b600060408201905062000def600083018562000dc7565b62000dfe602083018462000dc7565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e4b8262000e05565b915062000e588362000e05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e905762000e8f62000e0f565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee4601f8362000e9b565b915062000ef18262000eac565b602082019050919050565b6000602082019050818103600083015262000f178162000ed5565b9050919050565b62000f298162000e05565b82525050565b600060208201905062000f46600083018462000f1e565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000f84601b8362000e9b565b915062000f918262000f4c565b602082019050919050565b6000602082019050818103600083015262000fb78162000f75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100657607f821691505b602082108114156200101d576200101c62000fbe565b5b50919050565b60805160a0516137346200106c6000396000610c3b015260008181610a6c015281816125b8015281816126a8015281816126cf0152818161276b015261279201526137346000f3fe60806040526004361061021e5760003560e01c806375f0a87411610123578063cdbf7455116100ab578063e194c2b21161006f578063e194c2b214610802578063e2f456051461082d578063f2fde38b14610858578063f398d30414610881578063f8b45b05146108be57610225565b8063cdbf745514610707578063d294393314610732578063d64dc9bd1461075d578063dd62ed3e14610788578063e0bf7fd1146107c557610225565b806395d89b41116100f257806395d89b41146105fa578063a457c2d714610625578063a9059cbb14610662578063b62496f51461069f578063bbc0c742146106dc57610225565b806375f0a8741461056257806382f87d221461058d5780638a8c523c146105b85780638da5cb5b146105cf57610225565b8063313ce567116101a65780636d7adcad116101755780636d7adcad1461048d5780636ddd1713146104b85780636fc61774146104e357806370a082311461050e578063715018a61461054b57610225565b8063313ce567146103cf57806339509351146103fa57806340f979131461043757806349bd5a5e1461046257610225565b806313145c4b116101ed57806313145c4b146102fa5780631694505e1461031157806318160ddd1461033c5780631a8145bb1461036757806323b872dd1461039257610225565b806303c525731461022a57806306fdde03146102555780630855f25d14610280578063095ea7b3146102bd57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f6108e9565b60405161024c91906128ec565b60405180910390f35b34801561026157600080fd5b5061026a6108ef565b60405161027791906129a0565b60405180910390f35b34801561028c57600080fd5b506102a760048036038101906102a29190612a25565b610981565b6040516102b49190612a6d565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612ab4565b6109a1565b6040516102f19190612a6d565b60405180910390f35b34801561030657600080fd5b5061030f6109bf565b005b34801561031d57600080fd5b50610326610a6a565b6040516103339190612b53565b60405180910390f35b34801561034857600080fd5b50610351610a8e565b60405161035e91906128ec565b60405180910390f35b34801561037357600080fd5b5061037c610a98565b60405161038991906128ec565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190612b6e565b610a9e565b6040516103c69190612a6d565b60405180910390f35b3480156103db57600080fd5b506103e4610b77565b6040516103f19190612bdd565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190612ab4565b610b80565b60405161042e9190612a6d565b60405180910390f35b34801561044357600080fd5b5061044c610c33565b60405161045991906128ec565b60405180910390f35b34801561046e57600080fd5b50610477610c39565b6040516104849190612c07565b60405180910390f35b34801561049957600080fd5b506104a2610c5d565b6040516104af91906128ec565b60405180910390f35b3480156104c457600080fd5b506104cd610c63565b6040516104da9190612a6d565b60405180910390f35b3480156104ef57600080fd5b506104f8610c76565b60405161050591906128ec565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612a25565b610c7c565b60405161054291906128ec565b60405180910390f35b34801561055757600080fd5b50610560610cc4565b005b34801561056e57600080fd5b50610577610e1c565b6040516105849190612c07565b60405180910390f35b34801561059957600080fd5b506105a2610e42565b6040516105af91906128ec565b60405180910390f35b3480156105c457600080fd5b506105cd610e48565b005b3480156105db57600080fd5b506105e4610f17565b6040516105f19190612c07565b60405180910390f35b34801561060657600080fd5b5061060f610f41565b60405161061c91906129a0565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612ab4565b610fd3565b6040516106599190612a6d565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612ab4565b6110a0565b6040516106969190612a6d565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612a25565b6110be565b6040516106d39190612a6d565b60405180910390f35b3480156106e857600080fd5b506106f16110de565b6040516106fe9190612a6d565b60405180910390f35b34801561071357600080fd5b5061071c6110f1565b60405161072991906128ec565b60405180910390f35b34801561073e57600080fd5b506107476110f7565b60405161075491906128ec565b60405180910390f35b34801561076957600080fd5b506107726110fd565b60405161077f91906128ec565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612c22565b611103565b6040516107bc91906128ec565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612a25565b61118a565b6040516107f99190612a6d565b60405180910390f35b34801561080e57600080fd5b506108176111aa565b60405161082491906128ec565b60405180910390f35b34801561083957600080fd5b506108426111b0565b60405161084f91906128ec565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612a25565b6111b6565b005b34801561088d57600080fd5b506108a860048036038101906108a39190612a25565b61137d565b6040516108b59190612a6d565b60405180910390f35b3480156108ca57600080fd5b506108d361139d565b6040516108e091906128ec565b60405180910390f35b600d5481565b6060600380546108fe90612c91565b80601f016020809104026020016040519081016040528092919081815260200182805461092a90612c91565b80156109775780601f1061094c57610100808354040283529160200191610977565b820191906000526020600020905b81548152906001019060200180831161095a57829003601f168201915b5050505050905090565b60166020528060005260406000206000915054906101000a900460ff1681565b60006109b56109ae611401565b8484611409565b6001905092915050565b6109c7611401565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90612d0f565b60405180910390fd5b6a034f086f3b33b684000000600881905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60125481565b6000610aab8484846115d4565b610b6c84610ab7611401565b610b67856040518060600160405280602881526020016136b260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b1d611401565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef49092919063ffffffff16565b611409565b600190509392505050565b60006012905090565b6000610c29610b8d611401565b84610c248560016000610b9e611401565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a390919063ffffffff16565b611409565b6001905092915050565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60135481565b600960019054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ccc611401565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290612d0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610e50611401565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690612d0f565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f5090612c91565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c90612c91565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b5050505050905090565b6000611096610fe0611401565b84611091856040518060600160405280602581526020016136da602591396001600061100a611401565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef49092919063ffffffff16565b611409565b6001905092915050565b60006110b46110ad611401565b84846115d4565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff1681565b600e5481565b60105481565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b60115481565b60075481565b6111be611401565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490612d0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490612da1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b60085481565b60008082846113b29190612df0565b9050838110156113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90612e92565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090612f24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090612fb6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c791906128ec565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90613048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab906130da565b60405180910390fd5b60008114156116ce576116c983836000611f58565b611eef565b6116d6610f17565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156117445750611714610f17565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561177d5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117b7575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117d05750600560149054906101000a900460ff16155b156119cc57600960009054906101000a900460ff166118ca57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061188a5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090613146565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561196d5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119cb5760085461197e83610c7c565b826119899190612df0565b11156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c1906131b2565b60405180910390fd5b5b5b60006119d730610c7c565b9050600060075482101590508080156119fc5750600960019054906101000a900460ff165b8015611a155750600560149054906101000a900460ff16155b8015611a6b5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ac15750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611b175750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b5b576001600560146101000a81548160ff021916908315150217905550611b3f6121ed565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c165750601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cb95750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611cc15750805b15611ccb57600091505b60008215611ede57601760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d2e57506000600b54115b15611dc857611d5b6064611d4d600b548961240590919063ffffffff16565b61248090919063ffffffff16565b9050600b54600c5482611d6e91906131d2565b611d78919061325b565b60126000828254611d899190612df0565b92505081905550600b54600d5482611da191906131d2565b611dab919061325b565b60136000828254611dbc9190612df0565b92505081905550611eba565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e2357506000600f54115b15611eb957611e506064611e42600f548961240590919063ffffffff16565b61248090919063ffffffff16565b9050600f5460105482611e6391906131d2565b611e6d919061325b565b60126000828254611e7e9190612df0565b92505081905550600f5460115482611e9691906131d2565b611ea0919061325b565b60136000828254611eb19190612df0565b925050819055505b5b6000811115611ecf57611ece883083611f58565b5b8086611edb919061328c565b95505b611ee9888888611f58565b50505050505b505050565b6000838311158290611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3391906129a0565b60405180910390fd5b5060008385611f4b919061328c565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90613048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f906130da565b60405180910390fd5b6120438383836124ca565b6120ae8160405180606001604052806026815260200161368c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612141816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121e091906128ec565b60405180910390a3505050565b60006121f830610c7c565b9050600060135460125461220c9190612df0565b905060008083148061221e5750600082145b1561222b57505050612403565b601460075461223a91906131d2565b83111561225357601460075461225091906131d2565b92505b60006002836012548661226691906131d2565b612270919061325b565b61227a919061325b565b9050600061229182866124cf90919063ffffffff16565b905060004790506122a182612519565b60006122b682476124cf90919063ffffffff16565b905060006122ec85886122c9919061328c565b6122de6013548561240590919063ffffffff16565b61248090919063ffffffff16565b9050600081836122fc919061328c565b90506000601281905550600060138190555060008611801561231e5750600081115b1561236b5761232d8682612765565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612362939291906132c0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516123b190613328565b60006040518083038185875af1925050503d80600081146123ee576040519150601f19603f3d011682016040523d82523d6000602084013e6123f3565b606091505b5050809750505050505050505050505b565b600080831415612418576000905061247a565b6000828461242691906131d2565b9050828482612435919061325b565b14612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c906133af565b60405180910390fd5b809150505b92915050565b60006124c283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612870565b905092915050565b505050565b600061251183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ef4565b905092915050565b6000600267ffffffffffffffff811115612536576125356133cf565b5b6040519080825280602002602001820160405280156125645781602001602082028036833780820191505090505b509050308160008151811061257c5761257b6133fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561261c57600080fd5b505afa158015612630573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126549190613442565b81600181518110612668576126676133fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126cd307f000000000000000000000000000000000000000000000000000000000000000084611409565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161272f959493929190613568565b600060405180830381600087803b15801561274957600080fd5b505af115801561275d573d6000803e3d6000fd5b505050505050565b612790307f000000000000000000000000000000000000000000000000000000000000000084611409565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612817969594939291906135c2565b6060604051808303818588803b15801561283057600080fd5b505af1158015612844573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128699190613638565b5050505050565b600080831182906128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae91906129a0565b60405180910390fd5b50600083856128c6919061325b565b9050809150509392505050565b6000819050919050565b6128e6816128d3565b82525050565b600060208201905061290160008301846128dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612941578082015181840152602081019050612926565b83811115612950576000848401525b50505050565b6000601f19601f8301169050919050565b600061297282612907565b61297c8185612912565b935061298c818560208601612923565b61299581612956565b840191505092915050565b600060208201905081810360008301526129ba8184612967565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129f2826129c7565b9050919050565b612a02816129e7565b8114612a0d57600080fd5b50565b600081359050612a1f816129f9565b92915050565b600060208284031215612a3b57612a3a6129c2565b5b6000612a4984828501612a10565b91505092915050565b60008115159050919050565b612a6781612a52565b82525050565b6000602082019050612a826000830184612a5e565b92915050565b612a91816128d3565b8114612a9c57600080fd5b50565b600081359050612aae81612a88565b92915050565b60008060408385031215612acb57612aca6129c2565b5b6000612ad985828601612a10565b9250506020612aea85828601612a9f565b9150509250929050565b6000819050919050565b6000612b19612b14612b0f846129c7565b612af4565b6129c7565b9050919050565b6000612b2b82612afe565b9050919050565b6000612b3d82612b20565b9050919050565b612b4d81612b32565b82525050565b6000602082019050612b686000830184612b44565b92915050565b600080600060608486031215612b8757612b866129c2565b5b6000612b9586828701612a10565b9350506020612ba686828701612a10565b9250506040612bb786828701612a9f565b9150509250925092565b600060ff82169050919050565b612bd781612bc1565b82525050565b6000602082019050612bf26000830184612bce565b92915050565b612c01816129e7565b82525050565b6000602082019050612c1c6000830184612bf8565b92915050565b60008060408385031215612c3957612c386129c2565b5b6000612c4785828601612a10565b9250506020612c5885828601612a10565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ca957607f821691505b60208210811415612cbd57612cbc612c62565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612cf9602083612912565b9150612d0482612cc3565b602082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d8b602683612912565b9150612d9682612d2f565b604082019050919050565b60006020820190508181036000830152612dba81612d7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dfb826128d3565b9150612e06836128d3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e3b57612e3a612dc1565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612e7c601b83612912565b9150612e8782612e46565b602082019050919050565b60006020820190508181036000830152612eab81612e6f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f0e602483612912565b9150612f1982612eb2565b604082019050919050565b60006020820190508181036000830152612f3d81612f01565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fa0602283612912565b9150612fab82612f44565b604082019050919050565b60006020820190508181036000830152612fcf81612f93565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613032602583612912565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130c4602383612912565b91506130cf82613068565b604082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613130601683612912565b915061313b826130fa565b602082019050919050565b6000602082019050818103600083015261315f81613123565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061319c601383612912565b91506131a782613166565b602082019050919050565b600060208201905081810360008301526131cb8161318f565b9050919050565b60006131dd826128d3565b91506131e8836128d3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561322157613220612dc1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613266826128d3565b9150613271836128d3565b9250826132815761328061322c565b5b828204905092915050565b6000613297826128d3565b91506132a2836128d3565b9250828210156132b5576132b4612dc1565b5b828203905092915050565b60006060820190506132d560008301866128dd565b6132e260208301856128dd565b6132ef60408301846128dd565b949350505050565b600081905092915050565b50565b60006133126000836132f7565b915061331d82613302565b600082019050919050565b600061333382613305565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000613399602183612912565b91506133a48261333d565b604082019050919050565b600060208201905081810360008301526133c88161338c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061343c816129f9565b92915050565b600060208284031215613458576134576129c2565b5b60006134668482850161342d565b91505092915050565b6000819050919050565b600061349461348f61348a8461346f565b612af4565b6128d3565b9050919050565b6134a481613479565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134df816129e7565b82525050565b60006134f183836134d6565b60208301905092915050565b6000602082019050919050565b6000613515826134aa565b61351f81856134b5565b935061352a836134c6565b8060005b8381101561355b57815161354288826134e5565b975061354d836134fd565b92505060018101905061352e565b5085935050505092915050565b600060a08201905061357d60008301886128dd565b61358a602083018761349b565b818103604083015261359c818661350a565b90506135ab6060830185612bf8565b6135b860808301846128dd565b9695505050505050565b600060c0820190506135d76000830189612bf8565b6135e460208301886128dd565b6135f1604083018761349b565b6135fe606083018661349b565b61360b6080830185612bf8565b61361860a08301846128dd565b979650505050505050565b60008151905061363281612a88565b92915050565b600080600060608486031215613651576136506129c2565b5b600061365f86828701613623565b935050602061367086828701613623565b925050604061368186828701613623565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e297652af9ac14276974c5f821889b8fc854fc487ed02d00560cec2a40acb56c64736f6c63430008090033
Deployed Bytecode
0x60806040526004361061021e5760003560e01c806375f0a87411610123578063cdbf7455116100ab578063e194c2b21161006f578063e194c2b214610802578063e2f456051461082d578063f2fde38b14610858578063f398d30414610881578063f8b45b05146108be57610225565b8063cdbf745514610707578063d294393314610732578063d64dc9bd1461075d578063dd62ed3e14610788578063e0bf7fd1146107c557610225565b806395d89b41116100f257806395d89b41146105fa578063a457c2d714610625578063a9059cbb14610662578063b62496f51461069f578063bbc0c742146106dc57610225565b806375f0a8741461056257806382f87d221461058d5780638a8c523c146105b85780638da5cb5b146105cf57610225565b8063313ce567116101a65780636d7adcad116101755780636d7adcad1461048d5780636ddd1713146104b85780636fc61774146104e357806370a082311461050e578063715018a61461054b57610225565b8063313ce567146103cf57806339509351146103fa57806340f979131461043757806349bd5a5e1461046257610225565b806313145c4b116101ed57806313145c4b146102fa5780631694505e1461031157806318160ddd1461033c5780631a8145bb1461036757806323b872dd1461039257610225565b806303c525731461022a57806306fdde03146102555780630855f25d14610280578063095ea7b3146102bd57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f6108e9565b60405161024c91906128ec565b60405180910390f35b34801561026157600080fd5b5061026a6108ef565b60405161027791906129a0565b60405180910390f35b34801561028c57600080fd5b506102a760048036038101906102a29190612a25565b610981565b6040516102b49190612a6d565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612ab4565b6109a1565b6040516102f19190612a6d565b60405180910390f35b34801561030657600080fd5b5061030f6109bf565b005b34801561031d57600080fd5b50610326610a6a565b6040516103339190612b53565b60405180910390f35b34801561034857600080fd5b50610351610a8e565b60405161035e91906128ec565b60405180910390f35b34801561037357600080fd5b5061037c610a98565b60405161038991906128ec565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190612b6e565b610a9e565b6040516103c69190612a6d565b60405180910390f35b3480156103db57600080fd5b506103e4610b77565b6040516103f19190612bdd565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c9190612ab4565b610b80565b60405161042e9190612a6d565b60405180910390f35b34801561044357600080fd5b5061044c610c33565b60405161045991906128ec565b60405180910390f35b34801561046e57600080fd5b50610477610c39565b6040516104849190612c07565b60405180910390f35b34801561049957600080fd5b506104a2610c5d565b6040516104af91906128ec565b60405180910390f35b3480156104c457600080fd5b506104cd610c63565b6040516104da9190612a6d565b60405180910390f35b3480156104ef57600080fd5b506104f8610c76565b60405161050591906128ec565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612a25565b610c7c565b60405161054291906128ec565b60405180910390f35b34801561055757600080fd5b50610560610cc4565b005b34801561056e57600080fd5b50610577610e1c565b6040516105849190612c07565b60405180910390f35b34801561059957600080fd5b506105a2610e42565b6040516105af91906128ec565b60405180910390f35b3480156105c457600080fd5b506105cd610e48565b005b3480156105db57600080fd5b506105e4610f17565b6040516105f19190612c07565b60405180910390f35b34801561060657600080fd5b5061060f610f41565b60405161061c91906129a0565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612ab4565b610fd3565b6040516106599190612a6d565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612ab4565b6110a0565b6040516106969190612a6d565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612a25565b6110be565b6040516106d39190612a6d565b60405180910390f35b3480156106e857600080fd5b506106f16110de565b6040516106fe9190612a6d565b60405180910390f35b34801561071357600080fd5b5061071c6110f1565b60405161072991906128ec565b60405180910390f35b34801561073e57600080fd5b506107476110f7565b60405161075491906128ec565b60405180910390f35b34801561076957600080fd5b506107726110fd565b60405161077f91906128ec565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612c22565b611103565b6040516107bc91906128ec565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612a25565b61118a565b6040516107f99190612a6d565b60405180910390f35b34801561080e57600080fd5b506108176111aa565b60405161082491906128ec565b60405180910390f35b34801561083957600080fd5b506108426111b0565b60405161084f91906128ec565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612a25565b6111b6565b005b34801561088d57600080fd5b506108a860048036038101906108a39190612a25565b61137d565b6040516108b59190612a6d565b60405180910390f35b3480156108ca57600080fd5b506108d361139d565b6040516108e091906128ec565b60405180910390f35b600d5481565b6060600380546108fe90612c91565b80601f016020809104026020016040519081016040528092919081815260200182805461092a90612c91565b80156109775780601f1061094c57610100808354040283529160200191610977565b820191906000526020600020905b81548152906001019060200180831161095a57829003601f168201915b5050505050905090565b60166020528060005260406000206000915054906101000a900460ff1681565b60006109b56109ae611401565b8484611409565b6001905092915050565b6109c7611401565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90612d0f565b60405180910390fd5b6a034f086f3b33b684000000600881905550565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60125481565b6000610aab8484846115d4565b610b6c84610ab7611401565b610b67856040518060600160405280602881526020016136b260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b1d611401565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef49092919063ffffffff16565b611409565b600190509392505050565b60006012905090565b6000610c29610b8d611401565b84610c248560016000610b9e611401565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a390919063ffffffff16565b611409565b6001905092915050565b600f5481565b7f00000000000000000000000023e720d9b53aed67844461045c378b7776aef15b81565b60135481565b600960019054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ccc611401565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290612d0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610e50611401565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690612d0f565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f5090612c91565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7c90612c91565b8015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b5050505050905090565b6000611096610fe0611401565b84611091856040518060600160405280602581526020016136da602591396001600061100a611401565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef49092919063ffffffff16565b611409565b6001905092915050565b60006110b46110ad611401565b84846115d4565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff1681565b600e5481565b60105481565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b60115481565b60075481565b6111be611401565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490612d0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490612da1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b60085481565b60008082846113b29190612df0565b9050838110156113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90612e92565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090612f24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090612fb6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c791906128ec565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90613048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab906130da565b60405180910390fd5b60008114156116ce576116c983836000611f58565b611eef565b6116d6610f17565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156117445750611714610f17565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561177d5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117b7575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117d05750600560149054906101000a900460ff16155b156119cc57600960009054906101000a900460ff166118ca57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061188a5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090613146565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561196d5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119cb5760085461197e83610c7c565b826119899190612df0565b11156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c1906131b2565b60405180910390fd5b5b5b60006119d730610c7c565b9050600060075482101590508080156119fc5750600960019054906101000a900460ff165b8015611a155750600560149054906101000a900460ff16155b8015611a6b5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ac15750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611b175750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b5b576001600560146101000a81548160ff021916908315150217905550611b3f6121ed565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c165750601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cb95750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611cc15750805b15611ccb57600091505b60008215611ede57601760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d2e57506000600b54115b15611dc857611d5b6064611d4d600b548961240590919063ffffffff16565b61248090919063ffffffff16565b9050600b54600c5482611d6e91906131d2565b611d78919061325b565b60126000828254611d899190612df0565b92505081905550600b54600d5482611da191906131d2565b611dab919061325b565b60136000828254611dbc9190612df0565b92505081905550611eba565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e2357506000600f54115b15611eb957611e506064611e42600f548961240590919063ffffffff16565b61248090919063ffffffff16565b9050600f5460105482611e6391906131d2565b611e6d919061325b565b60126000828254611e7e9190612df0565b92505081905550600f5460115482611e9691906131d2565b611ea0919061325b565b60136000828254611eb19190612df0565b925050819055505b5b6000811115611ecf57611ece883083611f58565b5b8086611edb919061328c565b95505b611ee9888888611f58565b50505050505b505050565b6000838311158290611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3391906129a0565b60405180910390fd5b5060008385611f4b919061328c565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90613048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f906130da565b60405180910390fd5b6120438383836124ca565b6120ae8160405180606001604052806026815260200161368c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612141816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121e091906128ec565b60405180910390a3505050565b60006121f830610c7c565b9050600060135460125461220c9190612df0565b905060008083148061221e5750600082145b1561222b57505050612403565b601460075461223a91906131d2565b83111561225357601460075461225091906131d2565b92505b60006002836012548661226691906131d2565b612270919061325b565b61227a919061325b565b9050600061229182866124cf90919063ffffffff16565b905060004790506122a182612519565b60006122b682476124cf90919063ffffffff16565b905060006122ec85886122c9919061328c565b6122de6013548561240590919063ffffffff16565b61248090919063ffffffff16565b9050600081836122fc919061328c565b90506000601281905550600060138190555060008611801561231e5750600081115b1561236b5761232d8682612765565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612362939291906132c0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516123b190613328565b60006040518083038185875af1925050503d80600081146123ee576040519150601f19603f3d011682016040523d82523d6000602084013e6123f3565b606091505b5050809750505050505050505050505b565b600080831415612418576000905061247a565b6000828461242691906131d2565b9050828482612435919061325b565b14612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c906133af565b60405180910390fd5b809150505b92915050565b60006124c283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612870565b905092915050565b505050565b600061251183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ef4565b905092915050565b6000600267ffffffffffffffff811115612536576125356133cf565b5b6040519080825280602002602001820160405280156125645781602001602082028036833780820191505090505b509050308160008151811061257c5761257b6133fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561261c57600080fd5b505afa158015612630573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126549190613442565b81600181518110612668576126676133fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126cd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611409565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161272f959493929190613568565b600060405180830381600087803b15801561274957600080fd5b505af115801561275d573d6000803e3d6000fd5b505050505050565b612790307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611409565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612817969594939291906135c2565b6060604051808303818588803b15801561283057600080fd5b505af1158015612844573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128699190613638565b5050505050565b600080831182906128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae91906129a0565b60405180910390fd5b50600083856128c6919061325b565b9050809150509392505050565b6000819050919050565b6128e6816128d3565b82525050565b600060208201905061290160008301846128dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612941578082015181840152602081019050612926565b83811115612950576000848401525b50505050565b6000601f19601f8301169050919050565b600061297282612907565b61297c8185612912565b935061298c818560208601612923565b61299581612956565b840191505092915050565b600060208201905081810360008301526129ba8184612967565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129f2826129c7565b9050919050565b612a02816129e7565b8114612a0d57600080fd5b50565b600081359050612a1f816129f9565b92915050565b600060208284031215612a3b57612a3a6129c2565b5b6000612a4984828501612a10565b91505092915050565b60008115159050919050565b612a6781612a52565b82525050565b6000602082019050612a826000830184612a5e565b92915050565b612a91816128d3565b8114612a9c57600080fd5b50565b600081359050612aae81612a88565b92915050565b60008060408385031215612acb57612aca6129c2565b5b6000612ad985828601612a10565b9250506020612aea85828601612a9f565b9150509250929050565b6000819050919050565b6000612b19612b14612b0f846129c7565b612af4565b6129c7565b9050919050565b6000612b2b82612afe565b9050919050565b6000612b3d82612b20565b9050919050565b612b4d81612b32565b82525050565b6000602082019050612b686000830184612b44565b92915050565b600080600060608486031215612b8757612b866129c2565b5b6000612b9586828701612a10565b9350506020612ba686828701612a10565b9250506040612bb786828701612a9f565b9150509250925092565b600060ff82169050919050565b612bd781612bc1565b82525050565b6000602082019050612bf26000830184612bce565b92915050565b612c01816129e7565b82525050565b6000602082019050612c1c6000830184612bf8565b92915050565b60008060408385031215612c3957612c386129c2565b5b6000612c4785828601612a10565b9250506020612c5885828601612a10565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ca957607f821691505b60208210811415612cbd57612cbc612c62565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612cf9602083612912565b9150612d0482612cc3565b602082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d8b602683612912565b9150612d9682612d2f565b604082019050919050565b60006020820190508181036000830152612dba81612d7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dfb826128d3565b9150612e06836128d3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e3b57612e3a612dc1565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612e7c601b83612912565b9150612e8782612e46565b602082019050919050565b60006020820190508181036000830152612eab81612e6f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f0e602483612912565b9150612f1982612eb2565b604082019050919050565b60006020820190508181036000830152612f3d81612f01565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fa0602283612912565b9150612fab82612f44565b604082019050919050565b60006020820190508181036000830152612fcf81612f93565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613032602583612912565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130c4602383612912565b91506130cf82613068565b604082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613130601683612912565b915061313b826130fa565b602082019050919050565b6000602082019050818103600083015261315f81613123565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061319c601383612912565b91506131a782613166565b602082019050919050565b600060208201905081810360008301526131cb8161318f565b9050919050565b60006131dd826128d3565b91506131e8836128d3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561322157613220612dc1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613266826128d3565b9150613271836128d3565b9250826132815761328061322c565b5b828204905092915050565b6000613297826128d3565b91506132a2836128d3565b9250828210156132b5576132b4612dc1565b5b828203905092915050565b60006060820190506132d560008301866128dd565b6132e260208301856128dd565b6132ef60408301846128dd565b949350505050565b600081905092915050565b50565b60006133126000836132f7565b915061331d82613302565b600082019050919050565b600061333382613305565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000613399602183612912565b91506133a48261333d565b604082019050919050565b600060208201905081810360008301526133c88161338c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061343c816129f9565b92915050565b600060208284031215613458576134576129c2565b5b60006134668482850161342d565b91505092915050565b6000819050919050565b600061349461348f61348a8461346f565b612af4565b6128d3565b9050919050565b6134a481613479565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134df816129e7565b82525050565b60006134f183836134d6565b60208301905092915050565b6000602082019050919050565b6000613515826134aa565b61351f81856134b5565b935061352a836134c6565b8060005b8381101561355b57815161354288826134e5565b975061354d836134fd565b92505060018101905061352e565b5085935050505092915050565b600060a08201905061357d60008301886128dd565b61358a602083018761349b565b818103604083015261359c818661350a565b90506135ab6060830185612bf8565b6135b860808301846128dd565b9695505050505050565b600060c0820190506135d76000830189612bf8565b6135e460208301886128dd565b6135f1604083018761349b565b6135fe606083018661349b565b61360b6080830185612bf8565b61361860a08301846128dd565b979650505050505050565b60008151905061363281612a88565b92915050565b600080600060608486031215613651576136506129c2565b5b600061365f86828701613623565b935050602061367086828701613623565b925050604061368186828701613623565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e297652af9ac14276974c5f821889b8fc854fc487ed02d00560cec2a40acb56c64736f6c63430008090033
Deployed Bytecode Sourcemap
28765:9876:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29287:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7617:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29763:68;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9791:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33200:108;;;;;;;;;;;;;:::i;:::-;;28844:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8740:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29467:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10443:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8581:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11208:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29358:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28902:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29507:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29139:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29250:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8912:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21365:148;;;;;;;;;;;;;:::i;:::-;;28981:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29216:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33079:112;;;;;;;;;;;;;:::i;:::-;;20721:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7837:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11930:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9253:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29990:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29099:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29321:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29393:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29180:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9492:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29630:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29431:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29025:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21669:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29689:67;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29065:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29287;;;;:::o;7617:100::-;7671:13;7704:5;7697:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7617:100;:::o;29763:68::-;;;;;;;;;;;;;;;;;;;;;;:::o;9791:169::-;9874:4;9891:39;9900:12;:10;:12::i;:::-;9914:7;9923:6;9891:8;:39::i;:::-;9948:4;9941:11;;9791:169;;;;:::o;33200:108::-;20944:12;:10;:12::i;:::-;20934:22;;:6;;;;;;;;;;;:22;;;20926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33269:14:::1;33257:9;:26;;;;33200:108::o:0;28844:51::-;;;:::o;8740:108::-;8801:7;8828:12;;8821:19;;8740:108;:::o;29467:33::-;;;;:::o;10443:355::-;10583:4;10600:36;10610:6;10618:9;10629:6;10600:9;:36::i;:::-;10647:121;10656:6;10664:12;:10;:12::i;:::-;10678:89;10716:6;10678:89;;;;;;;;;;;;;;;;;:11;:19;10690:6;10678:19;;;;;;;;;;;;;;;:33;10698:12;:10;:12::i;:::-;10678:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10647:8;:121::i;:::-;10786:4;10779:11;;10443:355;;;;;:::o;8581:93::-;8639:5;8664:2;8657:9;;8581:93;:::o;11208:218::-;11296:4;11313:83;11322:12;:10;:12::i;:::-;11336:7;11345:50;11384:10;11345:11;:25;11357:12;:10;:12::i;:::-;11345:25;;;;;;;;;;;;;;;:34;11371:7;11345:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11313:8;:83::i;:::-;11414:4;11407:11;;11208:218;;;;:::o;29358:28::-;;;;:::o;28902:38::-;;;:::o;29507:27::-;;;;:::o;29139:31::-;;;;;;;;;;;;;:::o;29250:30::-;;;;:::o;8912:127::-;8986:7;9013:9;:18;9023:7;9013:18;;;;;;;;;;;;;;;;9006:25;;8912:127;;;:::o;21365:148::-;20944:12;:10;:12::i;:::-;20934:22;;:6;;;;;;;;;;;:22;;;20926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21472:1:::1;21435:40;;21456:6;;;;;;;;;;;21435:40;;;;;;;;;;;;21503:1;21486:6;;:19;;;;;;;;;;;;;;;;;;21365:148::o:0;28981:30::-;;;;;;;;;;;;;:::o;29216:27::-;;;;:::o;33079:112::-;20944:12;:10;:12::i;:::-;20934:22;;:6;;;;;;;;;;;:22;;;20926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33150:4:::1;33134:13;;:20;;;;;;;;;;;;;;;;;;33179:4;33165:11;;:18;;;;;;;;;;;;;;;;;;33079:112::o:0;20721:79::-;20759:7;20786:6;;;;;;;;;;;20779:13;;20721:79;:::o;7837:104::-;7893:13;7926:7;7919:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7837:104;:::o;11930:269::-;12023:4;12040:129;12049:12;:10;:12::i;:::-;12063:7;12072:96;12111:15;12072:96;;;;;;;;;;;;;;;;;:11;:25;12084:12;:10;:12::i;:::-;12072:25;;;;;;;;;;;;;;;:34;12098:7;12072:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12040:8;:129::i;:::-;12187:4;12180:11;;11930:269;;;;:::o;9253:175::-;9339:4;9356:42;9366:12;:10;:12::i;:::-;9380:9;9391:6;9356:9;:42::i;:::-;9416:4;9409:11;;9253:175;;;;:::o;29990:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29099:33::-;;;;;;;;;;;;;:::o;29321:30::-;;;;:::o;29393:31::-;;;;:::o;29180:29::-;;;;:::o;9492:151::-;9581:7;9608:11;:18;9620:5;9608:18;;;;;;;;;;;;;;;:27;9627:7;9608:27;;;;;;;;;;;;;;;;9601:34;;9492:151;;;;:::o;29630:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;29431:25::-;;;;:::o;29025:33::-;;;;:::o;21669:244::-;20944:12;:10;:12::i;:::-;20934:22;;:6;;;;;;;;;;;:22;;;20926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21778:1:::1;21758:22;;:8;:22;;;;21750:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21868:8;21839:38;;21860:6;;;;;;;;;;;21839:38;;;;;;;;;;;;21897:8;21888:6;;:17;;;;;;;;;;;;;;;;;;21669:244:::0;:::o;29689:67::-;;;;;;;;;;;;;;;;;;;;;;:::o;29065:24::-;;;;:::o;15753:182::-;15811:7;15831:9;15847:1;15843;:5;;;;:::i;:::-;15831:17;;15872:1;15867;:6;;15859:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15926:1;15919:8;;;15753:182;;;;:::o;219:98::-;272:7;299:10;292:17;;219:98;:::o;14372:381::-;14525:1;14508:19;;:5;:19;;;;14500:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14606:1;14587:21;;:7;:21;;;;14579:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14691:6;14661:11;:18;14673:5;14661:18;;;;;;;;;;;;;;;:27;14680:7;14661:27;;;;;;;;;;;;;;;:36;;;;14729:7;14713:32;;14722:5;14713:32;;;14738:6;14713:32;;;;;;:::i;:::-;;;;;;;;14372:381;;;:::o;33518:2624::-;33666:1;33650:18;;:4;:18;;;;33642:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33743:1;33729:16;;:2;:16;;;;33721:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33809:1;33799:6;:11;33796:92;;;33827:28;33843:4;33849:2;33853:1;33827:15;:28::i;:::-;33870:7;;33796:92;33927:7;:5;:7::i;:::-;33919:15;;:4;:15;;;;:45;;;;;33957:7;:5;:7::i;:::-;33951:13;;:2;:13;;;;33919:45;:78;;;;;33995:1;33981:16;;:2;:16;;;;33919:78;:116;;;;;34028:6;34014:21;;:2;:21;;;;33919:116;:142;;;;;34053:8;;;;;;;;;;;34052:9;33919:142;33901:564;;;34091:13;;;;;;;;;;;34087:140;;34132:19;:25;34152:4;34132:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34161:19;:23;34181:2;34161:23;;;;;;;;;;;;;;;;;;;;;;;;;34132:52;34124:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34087:140;34272:25;:31;34298:4;34272:31;;;;;;;;;;;;;;;;;;;;;;;;;:74;;;;;34308:34;:38;34343:2;34308:38;;;;;;;;;;;;;;;;;;;;;;;;;34307:39;34272:74;34268:186;;;34405:9;;34388:13;34398:2;34388:9;:13::i;:::-;34379:6;:22;;;;:::i;:::-;:35;;34371:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34268:186;33901:564;34478:28;34509:24;34527:4;34509:9;:24::i;:::-;34478:55;;34547:12;34586:18;;34562:20;:42;;34547:57;;34636:7;:35;;;;;34660:11;;;;;;;;;;;34636:35;:61;;;;;34689:8;;;;;;;;;;;34688:9;34636:61;:110;;;;;34715:25;:31;34741:4;34715:31;;;;;;;;;;;;;;;;;;;;;;;;;34714:32;34636:110;:153;;;;;34764:19;:25;34784:4;34764:25;;;;;;;;;;;;;;;;;;;;;;;;;34763:26;34636:153;:194;;;;;34807:19;:23;34827:2;34807:23;;;;;;;;;;;;;;;;;;;;;;;;;34806:24;34636:194;34618:328;;;34868:4;34857:8;;:15;;;;;;;;;;;;;;;;;;34890:10;:8;:10::i;:::-;34929:5;34918:8;;:16;;;;;;;;;;;;;;;;;;34618:328;34959:12;34975:8;;;;;;;;;;;34974:9;34959:24;;34996:19;35019:25;:29;35045:2;35019:29;;;;;;;;;;;;;;;;;;;;;;;;;35018:30;:66;;;;;35053:25;:31;35079:4;35053:31;;;;;;;;;;;;;;;;;;;;;;;;;35052:32;35018:66;34996:88;;35183:19;:25;35203:4;35183:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35212:19;:23;35232:2;35212:23;;;;;;;;;;;;;;;;;;;;;;;;;35183:52;:70;;;;35239:14;35183:70;35180:117;;;35280:5;35270:15;;35180:117;35310:12;35414:7;35411:677;;;35443:25;:31;35469:4;35443:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;35493:1;35478:12;;:16;35443:51;35439:494;;;35512:33;35541:3;35512:24;35523:12;;35512:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35505:40;;35599:12;;35581:15;;35574:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;35552:18;;:59;;;;;;;:::i;:::-;;;;;;;;35653:12;;35641:9;;35634:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;35618:12;;:47;;;;;;;:::i;:::-;;;;;;;;35439:494;;;35697:25;:29;35723:2;35697:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;35746:1;35730:13;;:17;35697:50;35694:239;;;35767:34;35797:3;35767:25;35778:13;;35767:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35760:41;;35856:13;;35837:16;;35830:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;35808:18;;:61;;;;;;;:::i;:::-;;;;;;;;35912:13;;35899:10;;35892:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;35876:12;;:49;;;;;;;:::i;:::-;;;;;;;;35694:239;35439:494;35962:1;35955:4;:8;35952:93;;;35987:42;36003:4;36017;36024;35987:15;:42::i;:::-;35952:93;36072:4;36062:14;;;;;:::i;:::-;;;35411:677;36101:33;36117:4;36123:2;36127:6;36101:15;:33::i;:::-;33631:2511;;;;;33518:2624;;;;:::o;16659:193::-;16745:7;16778:1;16773;:6;;16781:12;16765:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16805:9;16821:1;16817;:5;;;;:::i;:::-;16805:17;;16843:1;16836:8;;;16659:193;;;;;:::o;12690:575::-;12848:1;12830:20;;:6;:20;;;;12822:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12932:1;12911:23;;:9;:23;;;;12903:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12988:47;13009:6;13017:9;13028:6;12988:20;:47::i;:::-;13069:71;13091:6;13069:71;;;;;;;;;;;;;;;;;:9;:17;13079:6;13069:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13049:9;:17;13059:6;13049:17;;;;;;;;;;;;;;;:91;;;;13174:32;13199:6;13174:9;:20;13184:9;13174:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13151:9;:20;13161:9;13151:20;;;;;;;;;;;;;;;:55;;;;13239:9;13222:35;;13231:6;13222:35;;;13250:6;13222:35;;;;;;:::i;:::-;;;;;;;;12690:575;;;:::o;37297:1338::-;37336:23;37362:24;37380:4;37362:9;:24::i;:::-;37336:50;;37397:25;37446:12;;37425:18;;:33;;;;:::i;:::-;37397:61;;37469:12;37517:1;37498:15;:20;:46;;;;37543:1;37522:17;:22;37498:46;37495:60;;;37547:7;;;;;37495:60;37610:2;37589:18;;:23;;;;:::i;:::-;37571:15;:41;37568:111;;;37665:2;37644:18;;:23;;;;:::i;:::-;37626:41;;37568:111;37740:23;37825:1;37805:17;37784:18;;37766:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;37740:86;;37837:26;37866:36;37886:15;37866;:19;;:36;;;;:::i;:::-;37837:65;;37916:25;37944:21;37916:49;;37979:36;37996:18;37979:16;:36::i;:::-;38030:18;38051:44;38077:17;38051:21;:25;;:44;;;;:::i;:::-;38030:65;;38109:17;38129:67;38180:15;38162:17;:33;;;;:::i;:::-;38129:28;38144:12;;38129:10;:14;;:28;;;;:::i;:::-;:32;;:67;;;;:::i;:::-;38109:87;;38207:23;38246:9;38233:10;:22;;;;:::i;:::-;38207:48;;38292:1;38271:18;:22;;;;38319:1;38304:12;:16;;;;38357:1;38339:15;:19;:42;;;;;38380:1;38362:15;:19;38339:42;38336:210;;;38397:46;38410:15;38427;38397:12;:46::i;:::-;38463:71;38478:18;38498:15;38515:18;;38463:71;;;;;;;;:::i;:::-;;;;;;;;38336:210;38575:15;;;;;;;;;;;38567:29;;38604:21;38567:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38554:76;;;;;37325:1310;;;;;;;;;37297:1338;:::o;17112:473::-;17170:7;17420:1;17415;:6;17411:47;;;17445:1;17438:8;;;;17411:47;17471:9;17487:1;17483;:5;;;;:::i;:::-;17471:17;;17516:1;17511;17507;:5;;;;:::i;:::-;:10;17499:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;17576:1;17569:8;;;17112:473;;;;;:::o;18062:132::-;18120:7;18147:39;18151:1;18154;18147:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18140:46;;18062:132;;;;:::o;15357:125::-;;;;:::o;16219:136::-;16277:7;16304:43;16308:1;16311;16304:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16297:50;;16219:136;;;;:::o;36151:597::-;36280:21;36318:1;36304:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36280:40;;36349:4;36331;36336:1;36331:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36375:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36365:4;36370:1;36365:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;36411:62;36428:4;36443:15;36461:11;36411:8;:62::i;:::-;36513:15;:66;;;36594:11;36620:1;36664:4;36691;36711:15;36513:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36206:542;36151:597;:::o;36757:531::-;36905:62;36922:4;36937:15;36955:11;36905:8;:62::i;:::-;37011:15;:31;;;37050:9;37083:4;37103:11;37129:1;37172;37223:15;;;;;;;;;;;37254;37011:269;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36757:531;;:::o;18691:279::-;18777:7;18809:1;18805;:5;18812:12;18797:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18836:9;18852:1;18848;:5;;;;:::i;:::-;18836:17;;18961:1;18954:8;;;18691:279;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:329::-;2725:6;2774:2;2762:9;2753:7;2749:23;2745:32;2742:119;;;2780:79;;:::i;:::-;2742:119;2900:1;2925:53;2970:7;2961:6;2950:9;2946:22;2925:53;:::i;:::-;2915:63;;2871:117;2666:329;;;;:::o;3001:90::-;3035:7;3078:5;3071:13;3064:21;3053:32;;3001:90;;;:::o;3097:109::-;3178:21;3193:5;3178:21;:::i;:::-;3173:3;3166:34;3097:109;;:::o;3212:210::-;3299:4;3337:2;3326:9;3322:18;3314:26;;3350:65;3412:1;3401:9;3397:17;3388:6;3350:65;:::i;:::-;3212:210;;;;:::o;3428:122::-;3501:24;3519:5;3501:24;:::i;:::-;3494:5;3491:35;3481:63;;3540:1;3537;3530:12;3481:63;3428:122;:::o;3556:139::-;3602:5;3640:6;3627:20;3618:29;;3656:33;3683:5;3656:33;:::i;:::-;3556:139;;;;:::o;3701:474::-;3769:6;3777;3826:2;3814:9;3805:7;3801:23;3797:32;3794:119;;;3832:79;;:::i;:::-;3794:119;3952:1;3977:53;4022:7;4013:6;4002:9;3998:22;3977:53;:::i;:::-;3967:63;;3923:117;4079:2;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4050:118;3701:474;;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:86::-;5819:7;5859:4;5852:5;5848:16;5837:27;;5784:86;;;:::o;5876:112::-;5959:22;5975:5;5959:22;:::i;:::-;5954:3;5947:35;5876:112;;:::o;5994:214::-;6083:4;6121:2;6110:9;6106:18;6098:26;;6134:67;6198:1;6187:9;6183:17;6174:6;6134:67;:::i;:::-;5994:214;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:474::-;6634:6;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6817:1;6842:53;6887:7;6878:6;6867:9;6863:22;6842:53;:::i;:::-;6832:63;;6788:117;6944:2;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6915:118;6566:474;;;;;:::o;7046:180::-;7094:77;7091:1;7084:88;7191:4;7188:1;7181:15;7215:4;7212:1;7205:15;7232:320;7276:6;7313:1;7307:4;7303:12;7293:22;;7360:1;7354:4;7350:12;7381:18;7371:81;;7437:4;7429:6;7425:17;7415:27;;7371:81;7499:2;7491:6;7488:14;7468:18;7465:38;7462:84;;;7518:18;;:::i;:::-;7462:84;7283:269;7232:320;;;:::o;7558:182::-;7698:34;7694:1;7686:6;7682:14;7675:58;7558:182;:::o;7746:366::-;7888:3;7909:67;7973:2;7968:3;7909:67;:::i;:::-;7902:74;;7985:93;8074:3;7985:93;:::i;:::-;8103:2;8098:3;8094:12;8087:19;;7746:366;;;:::o;8118:419::-;8284:4;8322:2;8311:9;8307:18;8299:26;;8371:9;8365:4;8361:20;8357:1;8346:9;8342:17;8335:47;8399:131;8525:4;8399:131;:::i;:::-;8391:139;;8118:419;;;:::o;8543:225::-;8683:34;8679:1;8671:6;8667:14;8660:58;8752:8;8747:2;8739:6;8735:15;8728:33;8543:225;:::o;8774:366::-;8916:3;8937:67;9001:2;8996:3;8937:67;:::i;:::-;8930:74;;9013:93;9102:3;9013:93;:::i;:::-;9131:2;9126:3;9122:12;9115:19;;8774:366;;;:::o;9146:419::-;9312:4;9350:2;9339:9;9335:18;9327:26;;9399:9;9393:4;9389:20;9385:1;9374:9;9370:17;9363:47;9427:131;9553:4;9427:131;:::i;:::-;9419:139;;9146:419;;;:::o;9571:180::-;9619:77;9616:1;9609:88;9716:4;9713:1;9706:15;9740:4;9737:1;9730:15;9757:305;9797:3;9816:20;9834:1;9816:20;:::i;:::-;9811:25;;9850:20;9868:1;9850:20;:::i;:::-;9845:25;;10004:1;9936:66;9932:74;9929:1;9926:81;9923:107;;;10010:18;;:::i;:::-;9923:107;10054:1;10051;10047:9;10040:16;;9757:305;;;;:::o;10068:177::-;10208:29;10204:1;10196:6;10192:14;10185:53;10068:177;:::o;10251:366::-;10393:3;10414:67;10478:2;10473:3;10414:67;:::i;:::-;10407:74;;10490:93;10579:3;10490:93;:::i;:::-;10608:2;10603:3;10599:12;10592:19;;10251:366;;;:::o;10623:419::-;10789:4;10827:2;10816:9;10812:18;10804:26;;10876:9;10870:4;10866:20;10862:1;10851:9;10847:17;10840:47;10904:131;11030:4;10904:131;:::i;:::-;10896:139;;10623:419;;;:::o;11048:223::-;11188:34;11184:1;11176:6;11172:14;11165:58;11257:6;11252:2;11244:6;11240:15;11233:31;11048:223;:::o;11277:366::-;11419:3;11440:67;11504:2;11499:3;11440:67;:::i;:::-;11433:74;;11516:93;11605:3;11516:93;:::i;:::-;11634:2;11629:3;11625:12;11618:19;;11277:366;;;:::o;11649:419::-;11815:4;11853:2;11842:9;11838:18;11830:26;;11902:9;11896:4;11892:20;11888:1;11877:9;11873:17;11866:47;11930:131;12056:4;11930:131;:::i;:::-;11922:139;;11649:419;;;:::o;12074:221::-;12214:34;12210:1;12202:6;12198:14;12191:58;12283:4;12278:2;12270:6;12266:15;12259:29;12074:221;:::o;12301:366::-;12443:3;12464:67;12528:2;12523:3;12464:67;:::i;:::-;12457:74;;12540:93;12629:3;12540:93;:::i;:::-;12658:2;12653:3;12649:12;12642:19;;12301:366;;;:::o;12673:419::-;12839:4;12877:2;12866:9;12862:18;12854:26;;12926:9;12920:4;12916:20;12912:1;12901:9;12897:17;12890:47;12954:131;13080:4;12954:131;:::i;:::-;12946:139;;12673:419;;;:::o;13098:224::-;13238:34;13234:1;13226:6;13222:14;13215:58;13307:7;13302:2;13294:6;13290:15;13283:32;13098:224;:::o;13328:366::-;13470:3;13491:67;13555:2;13550:3;13491:67;:::i;:::-;13484:74;;13567:93;13656:3;13567:93;:::i;:::-;13685:2;13680:3;13676:12;13669:19;;13328:366;;;:::o;13700:419::-;13866:4;13904:2;13893:9;13889:18;13881:26;;13953:9;13947:4;13943:20;13939:1;13928:9;13924:17;13917:47;13981:131;14107:4;13981:131;:::i;:::-;13973:139;;13700:419;;;:::o;14125:222::-;14265:34;14261:1;14253:6;14249:14;14242:58;14334:5;14329:2;14321:6;14317:15;14310:30;14125:222;:::o;14353:366::-;14495:3;14516:67;14580:2;14575:3;14516:67;:::i;:::-;14509:74;;14592:93;14681:3;14592:93;:::i;:::-;14710:2;14705:3;14701:12;14694:19;;14353:366;;;:::o;14725:419::-;14891:4;14929:2;14918:9;14914:18;14906:26;;14978:9;14972:4;14968:20;14964:1;14953:9;14949:17;14942:47;15006:131;15132:4;15006:131;:::i;:::-;14998:139;;14725:419;;;:::o;15150:172::-;15290:24;15286:1;15278:6;15274:14;15267:48;15150:172;:::o;15328:366::-;15470:3;15491:67;15555:2;15550:3;15491:67;:::i;:::-;15484:74;;15567:93;15656:3;15567:93;:::i;:::-;15685:2;15680:3;15676:12;15669:19;;15328:366;;;:::o;15700:419::-;15866:4;15904:2;15893:9;15889:18;15881:26;;15953:9;15947:4;15943:20;15939:1;15928:9;15924:17;15917:47;15981:131;16107:4;15981:131;:::i;:::-;15973:139;;15700:419;;;:::o;16125:169::-;16265:21;16261:1;16253:6;16249:14;16242:45;16125:169;:::o;16300:366::-;16442:3;16463:67;16527:2;16522:3;16463:67;:::i;:::-;16456:74;;16539:93;16628:3;16539:93;:::i;:::-;16657:2;16652:3;16648:12;16641:19;;16300:366;;;:::o;16672:419::-;16838:4;16876:2;16865:9;16861:18;16853:26;;16925:9;16919:4;16915:20;16911:1;16900:9;16896:17;16889:47;16953:131;17079:4;16953:131;:::i;:::-;16945:139;;16672:419;;;:::o;17097:348::-;17137:7;17160:20;17178:1;17160:20;:::i;:::-;17155:25;;17194:20;17212:1;17194:20;:::i;:::-;17189:25;;17382:1;17314:66;17310:74;17307:1;17304:81;17299:1;17292:9;17285:17;17281:105;17278:131;;;17389:18;;:::i;:::-;17278:131;17437:1;17434;17430:9;17419:20;;17097:348;;;;:::o;17451:180::-;17499:77;17496:1;17489:88;17596:4;17593:1;17586:15;17620:4;17617:1;17610:15;17637:185;17677:1;17694:20;17712:1;17694:20;:::i;:::-;17689:25;;17728:20;17746:1;17728:20;:::i;:::-;17723:25;;17767:1;17757:35;;17772:18;;:::i;:::-;17757:35;17814:1;17811;17807:9;17802:14;;17637:185;;;;:::o;17828:191::-;17868:4;17888:20;17906:1;17888:20;:::i;:::-;17883:25;;17922:20;17940:1;17922:20;:::i;:::-;17917:25;;17961:1;17958;17955:8;17952:34;;;17966:18;;:::i;:::-;17952:34;18011:1;18008;18004:9;17996:17;;17828:191;;;;:::o;18025:442::-;18174:4;18212:2;18201:9;18197:18;18189:26;;18225:71;18293:1;18282:9;18278:17;18269:6;18225:71;:::i;:::-;18306:72;18374:2;18363:9;18359:18;18350:6;18306:72;:::i;:::-;18388;18456:2;18445:9;18441:18;18432:6;18388:72;:::i;:::-;18025:442;;;;;;:::o;18473:147::-;18574:11;18611:3;18596:18;;18473:147;;;;:::o;18626:114::-;;:::o;18746:398::-;18905:3;18926:83;19007:1;19002:3;18926:83;:::i;:::-;18919:90;;19018:93;19107:3;19018:93;:::i;:::-;19136:1;19131:3;19127:11;19120:18;;18746:398;;;:::o;19150:379::-;19334:3;19356:147;19499:3;19356:147;:::i;:::-;19349:154;;19520:3;19513:10;;19150:379;;;:::o;19535:220::-;19675:34;19671:1;19663:6;19659:14;19652:58;19744:3;19739:2;19731:6;19727:15;19720:28;19535:220;:::o;19761:366::-;19903:3;19924:67;19988:2;19983:3;19924:67;:::i;:::-;19917:74;;20000:93;20089:3;20000:93;:::i;:::-;20118:2;20113:3;20109:12;20102:19;;19761:366;;;:::o;20133:419::-;20299:4;20337:2;20326:9;20322:18;20314:26;;20386:9;20380:4;20376:20;20372:1;20361:9;20357:17;20350:47;20414:131;20540:4;20414:131;:::i;:::-;20406:139;;20133:419;;;:::o;20558:180::-;20606:77;20603:1;20596:88;20703:4;20700:1;20693:15;20727:4;20724:1;20717:15;20744:180;20792:77;20789:1;20782:88;20889:4;20886:1;20879:15;20913:4;20910:1;20903:15;20930:143;20987:5;21018:6;21012:13;21003:22;;21034:33;21061:5;21034:33;:::i;:::-;20930:143;;;;:::o;21079:351::-;21149:6;21198:2;21186:9;21177:7;21173:23;21169:32;21166:119;;;21204:79;;:::i;:::-;21166:119;21324:1;21349:64;21405:7;21396:6;21385:9;21381:22;21349:64;:::i;:::-;21339:74;;21295:128;21079:351;;;;:::o;21436:85::-;21481:7;21510:5;21499:16;;21436:85;;;:::o;21527:158::-;21585:9;21618:61;21636:42;21645:32;21671:5;21645:32;:::i;:::-;21636:42;:::i;:::-;21618:61;:::i;:::-;21605:74;;21527:158;;;:::o;21691:147::-;21786:45;21825:5;21786:45;:::i;:::-;21781:3;21774:58;21691:147;;:::o;21844:114::-;21911:6;21945:5;21939:12;21929:22;;21844:114;;;:::o;21964:184::-;22063:11;22097:6;22092:3;22085:19;22137:4;22132:3;22128:14;22113:29;;21964:184;;;;:::o;22154:132::-;22221:4;22244:3;22236:11;;22274:4;22269:3;22265:14;22257:22;;22154:132;;;:::o;22292:108::-;22369:24;22387:5;22369:24;:::i;:::-;22364:3;22357:37;22292:108;;:::o;22406:179::-;22475:10;22496:46;22538:3;22530:6;22496:46;:::i;:::-;22574:4;22569:3;22565:14;22551:28;;22406:179;;;;:::o;22591:113::-;22661:4;22693;22688:3;22684:14;22676:22;;22591:113;;;:::o;22740:732::-;22859:3;22888:54;22936:5;22888:54;:::i;:::-;22958:86;23037:6;23032:3;22958:86;:::i;:::-;22951:93;;23068:56;23118:5;23068:56;:::i;:::-;23147:7;23178:1;23163:284;23188:6;23185:1;23182:13;23163:284;;;23264:6;23258:13;23291:63;23350:3;23335:13;23291:63;:::i;:::-;23284:70;;23377:60;23430:6;23377:60;:::i;:::-;23367:70;;23223:224;23210:1;23207;23203:9;23198:14;;23163:284;;;23167:14;23463:3;23456:10;;22864:608;;;22740:732;;;;:::o;23478:831::-;23741:4;23779:3;23768:9;23764:19;23756:27;;23793:71;23861:1;23850:9;23846:17;23837:6;23793:71;:::i;:::-;23874:80;23950:2;23939:9;23935:18;23926:6;23874:80;:::i;:::-;24001:9;23995:4;23991:20;23986:2;23975:9;23971:18;23964:48;24029:108;24132:4;24123:6;24029:108;:::i;:::-;24021:116;;24147:72;24215:2;24204:9;24200:18;24191:6;24147:72;:::i;:::-;24229:73;24297:3;24286:9;24282:19;24273:6;24229:73;:::i;:::-;23478:831;;;;;;;;:::o;24315:807::-;24564:4;24602:3;24591:9;24587:19;24579:27;;24616:71;24684:1;24673:9;24669:17;24660:6;24616:71;:::i;:::-;24697:72;24765:2;24754:9;24750:18;24741:6;24697:72;:::i;:::-;24779:80;24855:2;24844:9;24840:18;24831:6;24779:80;:::i;:::-;24869;24945:2;24934:9;24930:18;24921:6;24869:80;:::i;:::-;24959:73;25027:3;25016:9;25012:19;25003:6;24959:73;:::i;:::-;25042;25110:3;25099:9;25095:19;25086:6;25042:73;:::i;:::-;24315:807;;;;;;;;;:::o;25128:143::-;25185:5;25216:6;25210:13;25201:22;;25232:33;25259:5;25232:33;:::i;:::-;25128:143;;;;:::o;25277:663::-;25365:6;25373;25381;25430:2;25418:9;25409:7;25405:23;25401:32;25398:119;;;25436:79;;:::i;:::-;25398:119;25556:1;25581:64;25637:7;25628:6;25617:9;25613:22;25581:64;:::i;:::-;25571:74;;25527:128;25694:2;25720:64;25776:7;25767:6;25756:9;25752:22;25720:64;:::i;:::-;25710:74;;25665:129;25833:2;25859:64;25915:7;25906:6;25895:9;25891:22;25859:64;:::i;:::-;25849:74;;25804:129;25277:663;;;;;:::o
Swarm Source
ipfs://e297652af9ac14276974c5f821889b8fc854fc487ed02d00560cec2a40acb56c
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.