Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
69,000,000,000 AAPE
Holders
66
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
49,341,635.121144156856463806 AAPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ALPHAAPE
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-17 */ /** *Submitted for verification at Etherscan.io on 2022-03-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ 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); } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, 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_) public { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } 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; } 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 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; } 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 () public { 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 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; } } // File: @openzeppelin/contracts/utils/ReentrancyGuard.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } contract ALPHAAPE is Context, IERC20, Ownable, ReentrancyGuard { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) public _isBlacklistWallet; mapping (address => bool) private isinwl; mapping (address => bool) public isExcludedFromMax; mapping (address => bool) public isrouterother; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 69000000000 * 10**18; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tTotalDistributedToken; uint256 private maxBuyLimit = 69000000 * (10**18); uint256 public maxWallet = _tTotal.div(10000).mul(100); string private _name = "ALPHA APE"; string private _symbol = "AAPE"; uint8 private _decimals = 18; uint256 public _taxFee = 0; uint256 private _previousTaxFee = _taxFee; uint256 public _marketingFee = 60; uint256 public _burnFee = 0; uint256 public _liquidityFee = 10; uint256 public _devFee = 30; uint256 private _marketingDevLiquidNBurnFee = _marketingFee + _burnFee + _liquidityFee + _devFee; uint256 private _previousMarketingDevLiquidNBurnFee = _marketingDevLiquidNBurnFee; uint256 accumulatedForLiquid; uint256 accumulatedForMarketing; uint256 accumulatedForDev; uint256 public stakeRewardSupply; address public deadWallet = 0x000000000000000000000000000000000000dEaD; address public marketingWallet; address public devWallet; address public promotionWallet; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; bool public CEX = false; bool public trading = false; bool public limitsEnabled = true; bool public routerselllimit = true; uint256 private numTokensSellToAddToLiquidity = 6900000 * 10**18; uint256 private routerselllimittokens = 1725000000 * 10**18; event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //For Mainnet // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; marketingWallet = _msgSender(); devWallet = _msgSender(); promotionWallet = _msgSender(); _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } 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; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalDistributedFees() public view returns (uint256) { return _tTotalDistributedToken; } function tokenFromReflection(uint256 rAmount) private view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setMarketingWallet(address account) external onlyOwner() { marketingWallet = account; } function setPromoWallet(address account) external onlyOwner() { promotionWallet = account; } function setDevWallet(address account) external onlyOwner() { devWallet = account; } function setBlacklistWallet(address account, bool blacklisted) external onlyOwner() { _isBlacklistWallet[account] = blacklisted; } function setFeesPercent(uint256 distributionFee, uint256 liquidityFee, uint256 marketingFee, uint256 burnFee,uint256 devFee ) external onlyOwner() { require(distributionFee + liquidityFee + marketingFee + burnFee + devFee <= 900, "Total tax should not more than 90% (900/1000)"); _taxFee = distributionFee; _liquidityFee = liquidityFee; _marketingFee = marketingFee; _burnFee = burnFee; _devFee = devFee; _marketingDevLiquidNBurnFee = _liquidityFee + _marketingFee + _burnFee + _devFee; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function setLimitsEnabled(bool _enabled) public onlyOwner() { limitsEnabled = _enabled; } function setTradingEnabled(bool _enabled) public onlyOwner() { trading = _enabled; } function RouterSellLimitEnabled(bool _enabled) public onlyOwner() { routerselllimit = _enabled; } function setTransferDelay(bool _enabled) public onlyOwner() { transferDelayEnabled = _enabled; } function setThresoldToSwap(uint256 amount) public onlyOwner() { numTokensSellToAddToLiquidity = amount; } function setRouterSellLimitTokens(uint256 amount) public onlyOwner() { routerselllimittokens = amount; } function setMaxBuyLimit(uint256 percentage) public onlyOwner() { maxBuyLimit = _tTotal.div(10**4).mul(percentage); } function setMaxWallet(uint256 percentage) public onlyOwner() { require(percentage >= 1); maxWallet = _tTotal.div(10000).mul(percentage); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tTotalDistributedToken = _tTotalDistributedToken.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tMarketingDevStakeLiquidBurnFee) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tMarketingDevStakeLiquidBurnFee, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketingDevStakeLiquidBurnFee); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tMarketingDevLiquidBurnFee = calculateMarketingDevLiquidNBurnFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tMarketingDevLiquidBurnFee); return (tTransferAmount, tFee, tMarketingDevLiquidBurnFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tMarketingDevStakeLiquidBurnFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rMarketingDevStakeLiquidBurnFee = tMarketingDevStakeLiquidBurnFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rMarketingDevStakeLiquidBurnFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeMarketingDevLiquidBurnFee(uint256 tMarketingDevLiquidBurnFee, address sender) private { if(_marketingDevLiquidNBurnFee == 0){ return; } uint256 tMarketing = tMarketingDevLiquidBurnFee.mul(_marketingFee).div(_marketingDevLiquidNBurnFee); uint256 tDev = tMarketingDevLiquidBurnFee.mul(_devFee).div(_marketingDevLiquidNBurnFee); uint256 tBurn = tMarketingDevLiquidBurnFee.mul(_burnFee).div(_marketingDevLiquidNBurnFee); uint256 tLiquid = tMarketingDevLiquidBurnFee.sub(tMarketing).sub(tDev).sub(tBurn); _sendFee(sender, deadWallet, tBurn); accumulatedForLiquid = accumulatedForLiquid.add(tLiquid); accumulatedForMarketing = accumulatedForMarketing.add(tMarketing); accumulatedForDev = accumulatedForDev.add(tDev); _sendFee(sender, address(this), tLiquid.add(tMarketing).add(tDev)); } function _sendFee(address from, address to, uint256 amount) private{ uint256 currentRate = _getRate(); uint256 rAmount = amount.mul(currentRate); _rOwned[to] = _rOwned[to].add(rAmount); if(_isExcluded[to]) _tOwned[to] = _tOwned[to].add(amount); emit Transfer(from, to, amount); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**3 ); } function calculateMarketingDevLiquidNBurnFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingDevLiquidNBurnFee).div( 10**3 ); } function removeAllFee() private { if(_taxFee == 0 && _marketingDevLiquidNBurnFee == 0) return; _previousTaxFee = _taxFee; _previousMarketingDevLiquidNBurnFee = _marketingDevLiquidNBurnFee; _taxFee = 0; _marketingDevLiquidNBurnFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _marketingDevLiquidNBurnFee = _previousMarketingDevLiquidNBurnFee; } function setWL(address wl) public onlyOwner() { isinwl[wl] = true; isExcludedFromMax[wl] = true; } function delwl(address notwl) public onlyOwner() { isinwl[notwl] = false; isExcludedFromMax[notwl] = false; } function manualswap() external lockTheSwap onlyOwner() { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external onlyOwner() { uint256 amount = address(this).balance; uint256 ethMarketing = amount.mul(_marketingFee).div(_devFee.add(_marketingFee)); uint256 ethDev = amount.mul(_devFee).div(_devFee.add(_marketingFee)); //Send out fees if(ethDev > 0) payable(devWallet).transfer(ethDev); if(ethMarketing > 0) payable(marketingWallet).transfer(ethMarketing); } function manualswapcustom(uint256 percentage) external lockTheSwap onlyOwner() { uint256 contractBalance = balanceOf(address(this)); uint256 swapbalance = contractBalance.div(10**5).mul(percentage); swapTokensForEth(swapbalance); } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(_isBlacklistWallet[from] == false, "You're in blacklist"); if(limitsEnabled){ if(!isExcludedFromMax[to] && !_isExcludedFromFee[to] && from != owner() && to != owner() && to != uniswapV2Pair ){ require(amount <= maxBuyLimit,"Over the Max buy"); require(amount.add(balanceOf(to)) <= maxWallet); } if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !inSwapAndLiquify ){ if(!trading){ require(_isExcludedFromFee[from] || _isExcludedFromFee[to] || isinwl[to], "Trading is not active."); } if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } } } uint256 swapAmount = accumulatedForLiquid.add(accumulatedForMarketing).add(accumulatedForDev); bool overMinTokenBalance = swapAmount >= numTokensSellToAddToLiquidity; if ( !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled && overMinTokenBalance ) { //swap add liquid swapAndLiquify(); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to] || (from != uniswapV2Pair && to != uniswapV2Pair)){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify() private lockTheSwap { uint256 totalcontracttokens = accumulatedForDev.add(accumulatedForLiquid).add(accumulatedForMarketing); uint256 remainForDev = 0; uint256 remainForMarketing = 0; uint256 remainForLiq = 0; if (routerselllimit && totalcontracttokens > numTokensSellToAddToLiquidity.mul(20)){ remainForDev = accumulatedForDev.div(20).mul(19); accumulatedForDev = accumulatedForDev.sub(remainForDev); remainForMarketing = accumulatedForMarketing.div(20).mul(19); accumulatedForMarketing = accumulatedForMarketing.sub(remainForMarketing); remainForLiq = accumulatedForLiquid.div(20).mul(19); accumulatedForLiquid = accumulatedForLiquid.sub(remainForLiq); } // split the liquidity balance into halves uint256 half = accumulatedForLiquid .div(2); uint256 otherHalf = accumulatedForLiquid.sub(half); uint256 swapAmount = half.add(accumulatedForMarketing).add(accumulatedForDev); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(swapAmount); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 delta = address(this).balance.sub(initialBalance); uint256 ethLiquid = delta.mul(half).div(swapAmount); uint256 ethMarketing = delta.mul(accumulatedForMarketing).div(swapAmount); uint256 ethDev = delta.sub(ethLiquid).sub(ethMarketing); uint256 ethpromo = ethMarketing.mul(2).div(6); uint256 ethmarketers = ethMarketing.mul(4).div(6); if(ethLiquid > 0){ // add liquidity to uniswap addLiquidity(otherHalf, ethLiquid); emit SwapAndLiquify(half, ethLiquid, otherHalf); } if(ethMarketing > 0){ payable(marketingWallet).transfer(ethmarketers); payable(promotionWallet).transfer(ethpromo); } if(ethDev > 0){ payable(devWallet).transfer(ethDev); } //Reset accumulated amount accumulatedForLiquid = remainForLiq; accumulatedForMarketing = remainForMarketing; accumulatedForDev = remainForDev; } 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 owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingDevLiquidBurnFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingDevLiquidBurnFee(tMarketingDevLiquidBurnFee, sender); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingDevLiquidBurnFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingDevLiquidBurnFee(tMarketingDevLiquidBurnFee, sender); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingDevLiquidBurnFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingDevLiquidBurnFee(tMarketingDevLiquidBurnFee, sender); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingDevLiquidBurnFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingDevLiquidBurnFee(tMarketingDevLiquidBurnFee, sender); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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"},{"inputs":[],"name":"CEX","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"RouterSellLimitEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklistWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notwl","type":"address"}],"name":"delwl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isrouterother","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"manualswapcustom","outputs":[],"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":"promotionWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerselllimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"setBlacklistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"distributionFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setFeesPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxBuyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setPromoWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setRouterSellLimitTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setThresoldToSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wl","type":"address"}],"name":"setWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeRewardSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDistributedFees","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":"trading","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526bdef376571332906a88000000600c8190556bd3d94d64d7867af2a7ffffff19600d556a3913517ebd3c0c65000000600f556200006c906064906200005890612710620004e9602090811b6200226217901c565b6200053c60201b620022ab1790919060201c565b60105560408051808201909152600980825268414c5048412041504560b81b6020909201918252620000a19160119162000654565b50604080518082019091526004808252634141504560e01b6020909201918252620000cf9160129162000654565b506013805460ff19908116601217909155600060148190556015819055603c601655601755600a601855601e6019556064601a819055601b55602080546001600160a01b03191661dead1790556025805460ff60c81b1962ffffff60b01b1960ff60a81b19909216600160a81b1791909116600160c01b1716600160c81b1790556a05b521bfdfb934708000006026556b0592e2f5607add35dd0000006027556029805490911660011790553480156200018857600080fd5b506000620001956200059a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023957600080fd5b505afa1580156200024e573d6000803e3d6000fd5b505050506040513d60208110156200026557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002b657600080fd5b505afa158015620002cb573d6000803e3d6000fd5b505050506040513d6020811015620002e257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200033557600080fd5b505af11580156200034a573d6000803e3d6000fd5b505050506040513d60208110156200036157600080fd5b5051602580546001600160a01b03199081166001600160a01b039384161790915560248054909116918316919091179055600160056000620003a26200059e565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620003ec6200059a565b602180546001600160a01b0319166001600160a01b0392909216919091179055620004166200059a565b602280546001600160a01b0319166001600160a01b0392909216919091179055620004406200059a565b602380546001600160a01b0319166001600160a01b0392909216919091179055600d5460026000620004716200059a565b6001600160a01b03168152602081019190915260400160002055620004956200059a565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a350620006f0565b60006200053383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005ad60201b60201c565b90505b92915050565b6000826200054d5750600062000536565b828202828482816200055b57fe5b0414620005335760405162461bcd60e51b8152600401808060200182810382526021815260200180620042d46021913960400191505060405180910390fd5b3390565b6000546001600160a01b031690565b600081836200063d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000601578181015183820152602001620005e7565b50505050905090810190601f1680156200062f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200064a57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200069757805160ff1916838001178555620006c7565b82800160010185558215620006c7579182015b82811115620006c7578251825591602001919060010190620006aa565b50620006d5929150620006d9565b5090565b5b80821115620006d55760008155600101620006da565b613bd480620007006000396000f3fe6080604052600436106103b15760003560e01c806377c325d6116101e7578063b41c9eda1161010d578063dd62ed3e116100a0578063ec44acf21161006f578063ec44acf214610d05578063ecca3b1614610d1a578063f2fde38b14610d4d578063f8b45b0514610d80576103b8565b8063dd62ed3e14610c4f578063e3be91cc14610c8a578063ea2f0b3714610c9f578063eaa5dad414610cd2576103b8565b8063c49b9a80116100dc578063c49b9a8014610bc6578063c876d0b914610bf2578063d240360a14610c07578063da78876f14610c1c576103b8565b8063b41c9eda14610b35578063c0b0fda214610b70578063c2e5ec0414610b85578063c3c8cd8014610bb1576103b8565b806396a8826c11610185578063a9059cbb11610154578063a9059cbb14610a9f578063aa45026b14610ad8578063aec3fd3814610aed578063b3d5eee114610b20576103b8565b806396a8826c14610a105780639e03584614610a3c578063a457c2d714610a51578063a55cac9814610a8a576103b8565b806389e7b81b116101c157806389e7b81b146109a75780638da5cb5b146109d15780638ea5220f146109e657806395d89b41146109fb576103b8565b806377c325d61461093357806385141a771461095f57806388f8202014610974576103b8565b8063437823ec116102d75780635d098b381161026a57806370a082311161023957806370a08231146108ac578063715018a6146108df578063757765f8146108f457806375f0a8741461091e576103b8565b80635d098b381461081c5780636659889d1461084f5780636bc87c3a146108825780636fc3eaec14610897576103b8565b806350bea548116102a657806350bea5481461076257806352390c021461078c5780635342acb4146107bf5780635d0044ca146107f2576103b8565b8063437823ec146106d257806344b7d0301461070557806349bd5a5e146107385780634a74bb021461074d576103b8565b806323b872dd1161034f5780633685d4191161031e5780633685d4191461062557806339509351146106585780633b124fe71461069157806341aea9de146106a6576103b8565b806323b872dd14610560578063313ce567146105a357806331c402ac146105ce5780633582ad2314610610576103b8565b80631694505e1161038b5780631694505e146104c057806318160ddd146104f15780631f53ac021461051857806322976e0d1461054b576103b8565b806306fdde03146103bd578063095ea7b31461044757806313096a1a14610494576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610d95565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040c5781810151838201526020016103f4565b50505050905090810190601f1680156104395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045357600080fd5b506104806004803603604081101561046a57600080fd5b506001600160a01b038135169060200135610e2b565b604080519115158252519081900360200190f35b3480156104a057600080fd5b506104be600480360360208110156104b757600080fd5b5035610e49565b005b3480156104cc57600080fd5b506104d5610ea6565b604080516001600160a01b039092168252519081900360200190f35b3480156104fd57600080fd5b50610506610eb5565b60408051918252519081900360200190f35b34801561052457600080fd5b506104be6004803603602081101561053b57600080fd5b50356001600160a01b0316610ebb565b34801561055757600080fd5b50610506610f35565b34801561056c57600080fd5b506104806004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359091169060400135610f3b565b3480156105af57600080fd5b506105b8610fc2565b6040805160ff9092168252519081900360200190f35b3480156105da57600080fd5b506104be600480360360a08110156105f157600080fd5b5080359060208101359060408101359060608101359060800135610fcb565b34801561061c57600080fd5b5061048061108f565b34801561063157600080fd5b506104be6004803603602081101561064857600080fd5b50356001600160a01b031661109f565b34801561066457600080fd5b506104806004803603604081101561067b57600080fd5b506001600160a01b038135169060200135611260565b34801561069d57600080fd5b506105066112ae565b3480156106b257600080fd5b506104be600480360360208110156106c957600080fd5b503515156112b4565b3480156106de57600080fd5b506104be600480360360208110156106f557600080fd5b50356001600160a01b031661132a565b34801561071157600080fd5b506104806004803603602081101561072857600080fd5b50356001600160a01b03166113a6565b34801561074457600080fd5b506104d56113bb565b34801561075957600080fd5b506104806113ca565b34801561076e57600080fd5b506104be6004803603602081101561078557600080fd5b50356113da565b34801561079857600080fd5b506104be600480360360208110156107af57600080fd5b50356001600160a01b0316611437565b3480156107cb57600080fd5b50610480600480360360208110156107e257600080fd5b50356001600160a01b03166115bd565b3480156107fe57600080fd5b506104be6004803603602081101561081557600080fd5b50356115df565b34801561082857600080fd5b506104be6004803603602081101561083f57600080fd5b50356001600160a01b031661166c565b34801561085b57600080fd5b506104be6004803603602081101561087257600080fd5b50356001600160a01b03166116e6565b34801561088e57600080fd5b50610506611760565b3480156108a357600080fd5b506104be611766565b3480156108b857600080fd5b50610506600480360360208110156108cf57600080fd5b50356001600160a01b03166118a2565b3480156108eb57600080fd5b506104be611904565b34801561090057600080fd5b506104be6004803603602081101561091757600080fd5b50356119a6565b34801561092a57600080fd5b506104d5611a1f565b34801561093f57600080fd5b506104be6004803603602081101561095657600080fd5b50351515611a2e565b34801561096b57600080fd5b506104d5611a99565b34801561098057600080fd5b506104806004803603602081101561099757600080fd5b50356001600160a01b0316611aa8565b3480156109b357600080fd5b506104be600480360360208110156109ca57600080fd5b5035611ac6565b3480156109dd57600080fd5b506104d5611b6e565b3480156109f257600080fd5b506104d5611b7d565b348015610a0757600080fd5b506103d2611b8c565b348015610a1c57600080fd5b506104be60048036036020811015610a3357600080fd5b50351515611bed565b348015610a4857600080fd5b50610506611c63565b348015610a5d57600080fd5b5061048060048036036040811015610a7457600080fd5b506001600160a01b038135169060200135611c69565b348015610a9657600080fd5b50610506611cd1565b348015610aab57600080fd5b5061048060048036036040811015610ac257600080fd5b506001600160a01b038135169060200135611cd7565b348015610ae457600080fd5b50610506611ceb565b348015610af957600080fd5b506104be60048036036020811015610b1057600080fd5b50356001600160a01b0316611cf1565b348015610b2c57600080fd5b50610480611d85565b348015610b4157600080fd5b506104be60048036036040811015610b5857600080fd5b506001600160a01b0381351690602001351515611d95565b348015610b7c57600080fd5b50610506611e18565b348015610b9157600080fd5b506104be60048036036020811015610ba857600080fd5b50351515611e1e565b348015610bbd57600080fd5b506104be611e94565b348015610bd257600080fd5b506104be60048036036020811015610be957600080fd5b50351515611f25565b348015610bfe57600080fd5b50610480611fd0565b348015610c1357600080fd5b50610480611fd9565b348015610c2857600080fd5b5061048060048036036020811015610c3f57600080fd5b50356001600160a01b0316611fe9565b348015610c5b57600080fd5b5061050660048036036040811015610c7257600080fd5b506001600160a01b0381358116916020013516611ffe565b348015610c9657600080fd5b506104d5612029565b348015610cab57600080fd5b506104be60048036036020811015610cc257600080fd5b50356001600160a01b0316612038565b348015610cde57600080fd5b506104be60048036036020811015610cf557600080fd5b50356001600160a01b03166120b1565b348015610d1157600080fd5b5061048061213f565b348015610d2657600080fd5b5061048060048036036020811015610d3d57600080fd5b50356001600160a01b031661214f565b348015610d5957600080fd5b506104be60048036036020811015610d7057600080fd5b50356001600160a01b0316612164565b348015610d8c57600080fd5b5061050661225c565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b5050505050905090565b6000610e3f610e38612304565b8484612308565b5060015b92915050565b610e51612304565b6000546001600160a01b03908116911614610ea1576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602655565b6024546001600160a01b031681565b600c5490565b610ec3612304565b6000546001600160a01b03908116911614610f13576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610f488484846123f4565b610fb884610f54612304565b610fb385604051806060016040528060288152602001613ac0602891396001600160a01b038a16600090815260046020526040812090610f92612304565b6001600160a01b031681526020810191909152604001600020549190612962565b612308565b5060019392505050565b60135460ff1690565b610fd3612304565b6000546001600160a01b03908116911614611023576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b610384818385878901010101111561106c5760405162461bcd60e51b815260040180806020018281038252602d815260200180613a29602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602554600160c01b900460ff1681565b6110a7612304565b6000546001600160a01b039081169116146110f7576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611164576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561125c57816001600160a01b0316600b828154811061118857fe5b6000918252602090912001546001600160a01b0316141561125457600b805460001981019081106111b557fe5b600091825260209091200154600b80546001600160a01b0390921691839081106111db57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b80548061122d57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561125c565b600101611167565b5050565b6000610e3f61126d612304565b84610fb3856004600061127e612304565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906129f9565b60145481565b6112bc612304565b6000546001600160a01b0390811691161461130c576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60258054911515600160c01b0260ff60c01b19909216919091179055565b611332612304565b6000546001600160a01b03908116911614611382576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6025546001600160a01b031681565b602554600160a81b900460ff1681565b6113e2612304565b6000546001600160a01b03908116911614611432576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602755565b61143f612304565b6000546001600160a01b0390811691161461148f576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16156114fd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526002602052604090205415611557576001600160a01b03811660009081526002602052604090205461153d90612a53565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6115e7612304565b6000546001600160a01b03908116911614611637576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b600181101561164557600080fd5b61166681611660612710600c5461226290919063ffffffff16565b906122ab565b60105550565b611674612304565b6000546001600160a01b039081169116146116c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b6116ee612304565b6000546001600160a01b0390811691161461173e576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602380546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b61176e612304565b6000546001600160a01b039081169116146117be576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60165460195447916000916117eb916117d791906129f9565b6016546117e59085906122ab565b90612262565b905060006118176118096016546019546129f990919063ffffffff16565b6019546117e59086906122ab565b9050801561185b576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611859573d6000803e3d6000fd5b505b811561189d576021546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561189b573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff16156118e257506001600160a01b0381166000908152600360205260409020546115da565b6001600160a01b038216600090815260026020526040902054610e4390612a53565b61190c612304565b6000546001600160a01b0390811691161461195c576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6119ae612304565b6000546001600160a01b039081169116146119fe576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b611a1981611660612710600c5461226290919063ffffffff16565b600f5550565b6021546001600160a01b031681565b611a36612304565b6000546001600160a01b03908116911614611a86576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6029805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6025805460ff60a01b1916600160a01b179055611ae1612304565b6000546001600160a01b03908116911614611b31576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6000611b3c306118a2565b90506000611b518361166084620186a0612262565b9050611b5c81612aac565b50506025805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b611bf5612304565b6000546001600160a01b03908116911614611c45576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60258054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610e3f611c76612304565b84610fb385604051806060016040528060258152602001613b7a6025913960046000611ca0612304565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612962565b601f5481565b6000610e3f611ce4612304565b84846123f4565b60195481565b611cf9612304565b6000546001600160a01b03908116911614611d49576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b031660009081526007602090815260408083208054600160ff1991821681179092556008909352922080549091169091179055565b602554600160b01b900460ff1681565b611d9d612304565b6000546001600160a01b03908116911614611ded576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611e26612304565b6000546001600160a01b03908116911614611e76576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60258054911515600160b81b0260ff60b81b19909216919091179055565b6025805460ff60a01b1916600160a01b179055611eaf612304565b6000546001600160a01b03908116911614611eff576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6000611f0a306118a2565b9050611f1581612aac565b506025805460ff60a01b19169055565b611f2d612304565b6000546001600160a01b03908116911614611f7d576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60258054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60295460ff1681565b602554600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6023546001600160a01b031681565b612040612304565b6000546001600160a01b03908116911614612090576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b6120b9612304565b6000546001600160a01b03908116911614612109576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760209081526040808320805460ff19908116909155600890925290912080549091169055565b602554600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b61216c612304565b6000546001600160a01b039081169116146121bc576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b0381166122015760405162461bcd60e51b81526004018080602001828103825260268152602001806139e16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b60006122a483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c66565b9392505050565b6000826122ba57506000610e43565b828202828482816122c757fe5b04146122a45760405162461bcd60e51b8152600401808060200182810382526021815260200180613a9f6021913960400191505060405180910390fd5b3390565b6001600160a01b03831661234d5760405162461bcd60e51b8152600401808060200182810382526024815260200180613b566024913960400191505060405180910390fd5b6001600160a01b0382166123925760405162461bcd60e51b8152600401808060200182810382526022815260200180613a076022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166124395760405162461bcd60e51b8152600401808060200182810382526025815260200180613b316025913960400191505060405180910390fd5b6001600160a01b03821661247e5760405162461bcd60e51b81526004018080602001828103825260238152602001806139946023913960400191505060405180910390fd5b600081116124bd5760405162461bcd60e51b8152600401808060200182810382526029815260200180613b086029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff1615612521576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b602554600160c01b900460ff161561284f576001600160a01b03821660009081526008602052604090205460ff1615801561257557506001600160a01b03821660009081526005602052604090205460ff16155b801561259a5750612584611b6e565b6001600160a01b0316836001600160a01b031614155b80156125bf57506125a9611b6e565b6001600160a01b0316826001600160a01b031614155b80156125d957506025546001600160a01b03838116911614155b1561264957600f54811115612628576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b60105461263e612637846118a2565b83906129f9565b111561264957600080fd5b612651611b6e565b6001600160a01b0316836001600160a01b03161415801561268b5750612675611b6e565b6001600160a01b0316826001600160a01b031614155b801561269f57506001600160a01b03821615155b80156126b657506001600160a01b03821661dead14155b80156126cc5750602554600160a01b900460ff16155b1561284f57602554600160b81b900460ff1661278e576001600160a01b03831660009081526005602052604090205460ff168061272157506001600160a01b03821660009081526005602052604090205460ff165b8061274457506001600160a01b03821660009081526007602052604090205460ff165b61278e576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b60295460ff161561284f576127a1611b6e565b6001600160a01b0316826001600160a01b0316141580156127d057506024546001600160a01b03838116911614155b80156127ea57506025546001600160a01b03838116911614155b1561284f5732600090815260286020526040902054431161283c5760405162461bcd60e51b8152600401808060200182810382526049815260200180613a566049913960600191505060405180910390fd5b3260009081526028602052604090204390555b6000612874601e5461286e601d54601c546129f990919063ffffffff16565b906129f9565b60265460255491925082101590600160a01b900460ff161580156128a657506025546001600160a01b03868116911614155b80156128bb5750602554600160a81b900460ff165b80156128c45750805b156128d1576128d1612ccb565b6001600160a01b03851660009081526005602052604090205460019060ff168061291357506001600160a01b03851660009081526005602052604090205460ff165b8061294557506025546001600160a01b0387811691161480159061294557506025546001600160a01b03868116911614155b1561294e575060005b61295a86868684612fba565b505050505050565b600081848411156129f15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129b657818101518382015260200161299e565b50505050905090810190601f1680156129e35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156122a4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000600d54821115612a965760405162461bcd60e51b815260040180806020018281038252602a8152602001806139b7602a913960400191505060405180910390fd5b6000612aa0613128565b90506122a48382612262565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612ada57fe5b6001600160a01b03928316602091820292909201810191909152602454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b2e57600080fd5b505afa158015612b42573d6000803e3d6000fd5b505050506040513d6020811015612b5857600080fd5b5051815182906001908110612b6957fe5b6001600160a01b039283166020918202929092010152602454612b8f9130911684612308565b602460009054906101000a90046001600160a01b03166001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612c29578181015183820152602001612c11565b505050509050019650505050505050600060405180830381600087803b158015612c5257600080fd5b505af115801561295a573d6000803e3d6000fd5b60008183612cb55760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156129b657818101518382015260200161299e565b506000838581612cc157fe5b0495945050505050565b6025805460ff60a01b1916600160a01b179055601d54601c54601e54600092612cf992909161286e916129f9565b90506000806000602560199054906101000a900460ff168015612d285750602654612d259060146122ab565b84115b15612dac57612d4860136116606014601e5461226290919063ffffffff16565b601e54909350612d58908461314b565b601e55601d54612d7090601390611660906014612262565b601d54909250612d80908361314b565b601d55601c54612d9890601390611660906014612262565b601c54909150612da8908261314b565b601c555b601c54600090612dbd906002612262565b90506000612dd682601c5461314b90919063ffffffff16565b90506000612df5601e5461286e601d54866129f990919063ffffffff16565b905047612e0182612aac565b6000612e0d478361314b565b90506000612e1f846117e584896122ab565b90506000612e3c856117e5601d54866122ab90919063ffffffff16565b90506000612e5482612e4e868661314b565b9061314b565b90506000612e6860066117e58560026122ab565b90506000612e7c60066117e58660046122ab565b90508415612ecf57612e8e898661318d565b604080518b8152602081018790528082018b905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8315612f4c576021546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f0f573d6000803e3d6000fd5b506023546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612f4a573d6000803e3d6000fd5b505b8215612f8e576022546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612f8c573d6000803e3d6000fd5b505b505050601c97909755505050601d94909455505050601e9190915550506025805460ff60a01b19169055565b80612fc757612fc761325a565b6001600160a01b0384166000908152600a602052604090205460ff16801561300857506001600160a01b0383166000908152600a602052604090205460ff16155b1561301d5761301884848461328c565b61311b565b6001600160a01b0384166000908152600a602052604090205460ff1615801561305e57506001600160a01b0383166000908152600a602052604090205460ff165b1561306e576130188484846133b1565b6001600160a01b0384166000908152600a602052604090205460ff161580156130b057506001600160a01b0383166000908152600a602052604090205460ff16155b156130c05761301884848461345a565b6001600160a01b0384166000908152600a602052604090205460ff16801561310057506001600160a01b0383166000908152600a602052604090205460ff165b156131105761301884848461349e565b61311b84848461345a565b8061189b5761189b613511565b600080600061313561351f565b90925090506131448282612262565b9250505090565b60006122a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612962565b6024546131a59030906001600160a01b031684612308565b6024546001600160a01b031663f305d7198230856000806131c4611b6e565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561322f57600080fd5b505af1158015613243573d6000803e3d6000fd5b50505050506040513d606081101561189b57600080fd5b60145415801561326a5750601a54155b156132745761328a565b60148054601555601a8054601b55600091829055555b565b60008060008060008061329e87613682565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506132d0908861314b565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546132ff908761314b565b6001600160a01b03808b1660009081526002602052604080822093909355908a168152205461332e90866129f9565b6001600160a01b038916600090815260026020526040902055613351818a6136d1565b61335b84836137af565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806133c387613682565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506133f5908761314b565b6001600160a01b03808b16600090815260026020908152604080832094909455918b1681526003909152205461342b90846129f9565b6001600160a01b03891660009081526003602090815260408083209390935560029052205461332e90866129f9565b60008060008060008061346c87613682565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506132ff908761314b565b6000806000806000806134b087613682565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506134e2908861314b565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546133f5908761314b565b601554601455601b54601a55565b600d54600c546000918291825b600b54811015613650578260026000600b848154811061354857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806135ad57508160036000600b848154811061358657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156135c457600d54600c549450945050505061367e565b61360460026000600b84815481106135d857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061314b565b925061364660036000600b848154811061361a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061314b565b915060010161352c565b50600c54600d5461366091612262565b82101561367857600d54600c5493509350505061367e565b90925090505b9091565b60008060008060008060008060006136998a6137d3565b92509250925060008060006136b78d86866136b2613128565b61380f565b919f909e50909c50959a5093985091965092945050505050565b601a546136dd5761125c565b60006136fa601a546117e5601654866122ab90919063ffffffff16565b90506000613719601a546117e5601954876122ab90919063ffffffff16565b90506000613738601a546117e5601754886122ab90919063ffffffff16565b9050600061374c82612e4e85818a8961314b565b6020549091506137679086906001600160a01b03168461385f565b601c5461377490826129f9565b601c55601d5461378490856129f9565b601d55601e5461379490846129f9565b601e5561295a85306137aa8661286e868a6129f9565b61385f565b600d546137bc908361314b565b600d55600e546137cc90826129f9565b600e555050565b6000806000806137e285613959565b905060006137ef86613976565b9050600061380182612e4e898661314b565b979296509094509092505050565b600080808061381e88866122ab565b9050600061382c88876122ab565b9050600061383a88886122ab565b9050600061384c82612e4e868661314b565b939b939a50919850919650505050505050565b6000613869613128565b9050600061387783836122ab565b6001600160a01b03851660009081526002602052604090205490915061389d90826129f9565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613907576001600160a01b0384166000908152600360205260409020546138ed90846129f9565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610e436103e86117e5601454856122ab90919063ffffffff16565b6000610e436103e86117e5601a54856122ab90919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122029d0505633c28aa73734739ac371a5dafcd095452e3ccaaf64230321ae5a904764736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77
Deployed Bytecode
0x6080604052600436106103b15760003560e01c806377c325d6116101e7578063b41c9eda1161010d578063dd62ed3e116100a0578063ec44acf21161006f578063ec44acf214610d05578063ecca3b1614610d1a578063f2fde38b14610d4d578063f8b45b0514610d80576103b8565b8063dd62ed3e14610c4f578063e3be91cc14610c8a578063ea2f0b3714610c9f578063eaa5dad414610cd2576103b8565b8063c49b9a80116100dc578063c49b9a8014610bc6578063c876d0b914610bf2578063d240360a14610c07578063da78876f14610c1c576103b8565b8063b41c9eda14610b35578063c0b0fda214610b70578063c2e5ec0414610b85578063c3c8cd8014610bb1576103b8565b806396a8826c11610185578063a9059cbb11610154578063a9059cbb14610a9f578063aa45026b14610ad8578063aec3fd3814610aed578063b3d5eee114610b20576103b8565b806396a8826c14610a105780639e03584614610a3c578063a457c2d714610a51578063a55cac9814610a8a576103b8565b806389e7b81b116101c157806389e7b81b146109a75780638da5cb5b146109d15780638ea5220f146109e657806395d89b41146109fb576103b8565b806377c325d61461093357806385141a771461095f57806388f8202014610974576103b8565b8063437823ec116102d75780635d098b381161026a57806370a082311161023957806370a08231146108ac578063715018a6146108df578063757765f8146108f457806375f0a8741461091e576103b8565b80635d098b381461081c5780636659889d1461084f5780636bc87c3a146108825780636fc3eaec14610897576103b8565b806350bea548116102a657806350bea5481461076257806352390c021461078c5780635342acb4146107bf5780635d0044ca146107f2576103b8565b8063437823ec146106d257806344b7d0301461070557806349bd5a5e146107385780634a74bb021461074d576103b8565b806323b872dd1161034f5780633685d4191161031e5780633685d4191461062557806339509351146106585780633b124fe71461069157806341aea9de146106a6576103b8565b806323b872dd14610560578063313ce567146105a357806331c402ac146105ce5780633582ad2314610610576103b8565b80631694505e1161038b5780631694505e146104c057806318160ddd146104f15780631f53ac021461051857806322976e0d1461054b576103b8565b806306fdde03146103bd578063095ea7b31461044757806313096a1a14610494576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610d95565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040c5781810151838201526020016103f4565b50505050905090810190601f1680156104395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045357600080fd5b506104806004803603604081101561046a57600080fd5b506001600160a01b038135169060200135610e2b565b604080519115158252519081900360200190f35b3480156104a057600080fd5b506104be600480360360208110156104b757600080fd5b5035610e49565b005b3480156104cc57600080fd5b506104d5610ea6565b604080516001600160a01b039092168252519081900360200190f35b3480156104fd57600080fd5b50610506610eb5565b60408051918252519081900360200190f35b34801561052457600080fd5b506104be6004803603602081101561053b57600080fd5b50356001600160a01b0316610ebb565b34801561055757600080fd5b50610506610f35565b34801561056c57600080fd5b506104806004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359091169060400135610f3b565b3480156105af57600080fd5b506105b8610fc2565b6040805160ff9092168252519081900360200190f35b3480156105da57600080fd5b506104be600480360360a08110156105f157600080fd5b5080359060208101359060408101359060608101359060800135610fcb565b34801561061c57600080fd5b5061048061108f565b34801561063157600080fd5b506104be6004803603602081101561064857600080fd5b50356001600160a01b031661109f565b34801561066457600080fd5b506104806004803603604081101561067b57600080fd5b506001600160a01b038135169060200135611260565b34801561069d57600080fd5b506105066112ae565b3480156106b257600080fd5b506104be600480360360208110156106c957600080fd5b503515156112b4565b3480156106de57600080fd5b506104be600480360360208110156106f557600080fd5b50356001600160a01b031661132a565b34801561071157600080fd5b506104806004803603602081101561072857600080fd5b50356001600160a01b03166113a6565b34801561074457600080fd5b506104d56113bb565b34801561075957600080fd5b506104806113ca565b34801561076e57600080fd5b506104be6004803603602081101561078557600080fd5b50356113da565b34801561079857600080fd5b506104be600480360360208110156107af57600080fd5b50356001600160a01b0316611437565b3480156107cb57600080fd5b50610480600480360360208110156107e257600080fd5b50356001600160a01b03166115bd565b3480156107fe57600080fd5b506104be6004803603602081101561081557600080fd5b50356115df565b34801561082857600080fd5b506104be6004803603602081101561083f57600080fd5b50356001600160a01b031661166c565b34801561085b57600080fd5b506104be6004803603602081101561087257600080fd5b50356001600160a01b03166116e6565b34801561088e57600080fd5b50610506611760565b3480156108a357600080fd5b506104be611766565b3480156108b857600080fd5b50610506600480360360208110156108cf57600080fd5b50356001600160a01b03166118a2565b3480156108eb57600080fd5b506104be611904565b34801561090057600080fd5b506104be6004803603602081101561091757600080fd5b50356119a6565b34801561092a57600080fd5b506104d5611a1f565b34801561093f57600080fd5b506104be6004803603602081101561095657600080fd5b50351515611a2e565b34801561096b57600080fd5b506104d5611a99565b34801561098057600080fd5b506104806004803603602081101561099757600080fd5b50356001600160a01b0316611aa8565b3480156109b357600080fd5b506104be600480360360208110156109ca57600080fd5b5035611ac6565b3480156109dd57600080fd5b506104d5611b6e565b3480156109f257600080fd5b506104d5611b7d565b348015610a0757600080fd5b506103d2611b8c565b348015610a1c57600080fd5b506104be60048036036020811015610a3357600080fd5b50351515611bed565b348015610a4857600080fd5b50610506611c63565b348015610a5d57600080fd5b5061048060048036036040811015610a7457600080fd5b506001600160a01b038135169060200135611c69565b348015610a9657600080fd5b50610506611cd1565b348015610aab57600080fd5b5061048060048036036040811015610ac257600080fd5b506001600160a01b038135169060200135611cd7565b348015610ae457600080fd5b50610506611ceb565b348015610af957600080fd5b506104be60048036036020811015610b1057600080fd5b50356001600160a01b0316611cf1565b348015610b2c57600080fd5b50610480611d85565b348015610b4157600080fd5b506104be60048036036040811015610b5857600080fd5b506001600160a01b0381351690602001351515611d95565b348015610b7c57600080fd5b50610506611e18565b348015610b9157600080fd5b506104be60048036036020811015610ba857600080fd5b50351515611e1e565b348015610bbd57600080fd5b506104be611e94565b348015610bd257600080fd5b506104be60048036036020811015610be957600080fd5b50351515611f25565b348015610bfe57600080fd5b50610480611fd0565b348015610c1357600080fd5b50610480611fd9565b348015610c2857600080fd5b5061048060048036036020811015610c3f57600080fd5b50356001600160a01b0316611fe9565b348015610c5b57600080fd5b5061050660048036036040811015610c7257600080fd5b506001600160a01b0381358116916020013516611ffe565b348015610c9657600080fd5b506104d5612029565b348015610cab57600080fd5b506104be60048036036020811015610cc257600080fd5b50356001600160a01b0316612038565b348015610cde57600080fd5b506104be60048036036020811015610cf557600080fd5b50356001600160a01b03166120b1565b348015610d1157600080fd5b5061048061213f565b348015610d2657600080fd5b5061048060048036036020811015610d3d57600080fd5b50356001600160a01b031661214f565b348015610d5957600080fd5b506104be60048036036020811015610d7057600080fd5b50356001600160a01b0316612164565b348015610d8c57600080fd5b5061050661225c565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b5050505050905090565b6000610e3f610e38612304565b8484612308565b5060015b92915050565b610e51612304565b6000546001600160a01b03908116911614610ea1576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602655565b6024546001600160a01b031681565b600c5490565b610ec3612304565b6000546001600160a01b03908116911614610f13576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610f488484846123f4565b610fb884610f54612304565b610fb385604051806060016040528060288152602001613ac0602891396001600160a01b038a16600090815260046020526040812090610f92612304565b6001600160a01b031681526020810191909152604001600020549190612962565b612308565b5060019392505050565b60135460ff1690565b610fd3612304565b6000546001600160a01b03908116911614611023576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b610384818385878901010101111561106c5760405162461bcd60e51b815260040180806020018281038252602d815260200180613a29602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602554600160c01b900460ff1681565b6110a7612304565b6000546001600160a01b039081169116146110f7576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611164576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561125c57816001600160a01b0316600b828154811061118857fe5b6000918252602090912001546001600160a01b0316141561125457600b805460001981019081106111b557fe5b600091825260209091200154600b80546001600160a01b0390921691839081106111db57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b80548061122d57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561125c565b600101611167565b5050565b6000610e3f61126d612304565b84610fb3856004600061127e612304565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906129f9565b60145481565b6112bc612304565b6000546001600160a01b0390811691161461130c576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60258054911515600160c01b0260ff60c01b19909216919091179055565b611332612304565b6000546001600160a01b03908116911614611382576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6025546001600160a01b031681565b602554600160a81b900460ff1681565b6113e2612304565b6000546001600160a01b03908116911614611432576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602755565b61143f612304565b6000546001600160a01b0390811691161461148f576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16156114fd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526002602052604090205415611557576001600160a01b03811660009081526002602052604090205461153d90612a53565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6115e7612304565b6000546001600160a01b03908116911614611637576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b600181101561164557600080fd5b61166681611660612710600c5461226290919063ffffffff16565b906122ab565b60105550565b611674612304565b6000546001600160a01b039081169116146116c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b6116ee612304565b6000546001600160a01b0390811691161461173e576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b602380546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b61176e612304565b6000546001600160a01b039081169116146117be576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60165460195447916000916117eb916117d791906129f9565b6016546117e59085906122ab565b90612262565b905060006118176118096016546019546129f990919063ffffffff16565b6019546117e59086906122ab565b9050801561185b576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611859573d6000803e3d6000fd5b505b811561189d576021546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561189b573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff16156118e257506001600160a01b0381166000908152600360205260409020546115da565b6001600160a01b038216600090815260026020526040902054610e4390612a53565b61190c612304565b6000546001600160a01b0390811691161461195c576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6119ae612304565b6000546001600160a01b039081169116146119fe576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b611a1981611660612710600c5461226290919063ffffffff16565b600f5550565b6021546001600160a01b031681565b611a36612304565b6000546001600160a01b03908116911614611a86576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6029805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6025805460ff60a01b1916600160a01b179055611ae1612304565b6000546001600160a01b03908116911614611b31576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6000611b3c306118a2565b90506000611b518361166084620186a0612262565b9050611b5c81612aac565b50506025805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b611bf5612304565b6000546001600160a01b03908116911614611c45576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60258054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610e3f611c76612304565b84610fb385604051806060016040528060258152602001613b7a6025913960046000611ca0612304565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612962565b601f5481565b6000610e3f611ce4612304565b84846123f4565b60195481565b611cf9612304565b6000546001600160a01b03908116911614611d49576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b031660009081526007602090815260408083208054600160ff1991821681179092556008909352922080549091169091179055565b602554600160b01b900460ff1681565b611d9d612304565b6000546001600160a01b03908116911614611ded576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611e26612304565b6000546001600160a01b03908116911614611e76576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60258054911515600160b81b0260ff60b81b19909216919091179055565b6025805460ff60a01b1916600160a01b179055611eaf612304565b6000546001600160a01b03908116911614611eff576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6000611f0a306118a2565b9050611f1581612aac565b506025805460ff60a01b19169055565b611f2d612304565b6000546001600160a01b03908116911614611f7d576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b60258054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60295460ff1681565b602554600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6023546001600160a01b031681565b612040612304565b6000546001600160a01b03908116911614612090576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b6120b9612304565b6000546001600160a01b03908116911614612109576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760209081526040808320805460ff19908116909155600890925290912080549091169055565b602554600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b61216c612304565b6000546001600160a01b039081169116146121bc576040805162461bcd60e51b81526020600482018190526024820152600080516020613ae8833981519152604482015290519081900360640190fd5b6001600160a01b0381166122015760405162461bcd60e51b81526004018080602001828103825260268152602001806139e16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b60006122a483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c66565b9392505050565b6000826122ba57506000610e43565b828202828482816122c757fe5b04146122a45760405162461bcd60e51b8152600401808060200182810382526021815260200180613a9f6021913960400191505060405180910390fd5b3390565b6001600160a01b03831661234d5760405162461bcd60e51b8152600401808060200182810382526024815260200180613b566024913960400191505060405180910390fd5b6001600160a01b0382166123925760405162461bcd60e51b8152600401808060200182810382526022815260200180613a076022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166124395760405162461bcd60e51b8152600401808060200182810382526025815260200180613b316025913960400191505060405180910390fd5b6001600160a01b03821661247e5760405162461bcd60e51b81526004018080602001828103825260238152602001806139946023913960400191505060405180910390fd5b600081116124bd5760405162461bcd60e51b8152600401808060200182810382526029815260200180613b086029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff1615612521576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b602554600160c01b900460ff161561284f576001600160a01b03821660009081526008602052604090205460ff1615801561257557506001600160a01b03821660009081526005602052604090205460ff16155b801561259a5750612584611b6e565b6001600160a01b0316836001600160a01b031614155b80156125bf57506125a9611b6e565b6001600160a01b0316826001600160a01b031614155b80156125d957506025546001600160a01b03838116911614155b1561264957600f54811115612628576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b60105461263e612637846118a2565b83906129f9565b111561264957600080fd5b612651611b6e565b6001600160a01b0316836001600160a01b03161415801561268b5750612675611b6e565b6001600160a01b0316826001600160a01b031614155b801561269f57506001600160a01b03821615155b80156126b657506001600160a01b03821661dead14155b80156126cc5750602554600160a01b900460ff16155b1561284f57602554600160b81b900460ff1661278e576001600160a01b03831660009081526005602052604090205460ff168061272157506001600160a01b03821660009081526005602052604090205460ff165b8061274457506001600160a01b03821660009081526007602052604090205460ff165b61278e576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b60295460ff161561284f576127a1611b6e565b6001600160a01b0316826001600160a01b0316141580156127d057506024546001600160a01b03838116911614155b80156127ea57506025546001600160a01b03838116911614155b1561284f5732600090815260286020526040902054431161283c5760405162461bcd60e51b8152600401808060200182810382526049815260200180613a566049913960600191505060405180910390fd5b3260009081526028602052604090204390555b6000612874601e5461286e601d54601c546129f990919063ffffffff16565b906129f9565b60265460255491925082101590600160a01b900460ff161580156128a657506025546001600160a01b03868116911614155b80156128bb5750602554600160a81b900460ff165b80156128c45750805b156128d1576128d1612ccb565b6001600160a01b03851660009081526005602052604090205460019060ff168061291357506001600160a01b03851660009081526005602052604090205460ff165b8061294557506025546001600160a01b0387811691161480159061294557506025546001600160a01b03868116911614155b1561294e575060005b61295a86868684612fba565b505050505050565b600081848411156129f15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129b657818101518382015260200161299e565b50505050905090810190601f1680156129e35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156122a4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000600d54821115612a965760405162461bcd60e51b815260040180806020018281038252602a8152602001806139b7602a913960400191505060405180910390fd5b6000612aa0613128565b90506122a48382612262565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612ada57fe5b6001600160a01b03928316602091820292909201810191909152602454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b2e57600080fd5b505afa158015612b42573d6000803e3d6000fd5b505050506040513d6020811015612b5857600080fd5b5051815182906001908110612b6957fe5b6001600160a01b039283166020918202929092010152602454612b8f9130911684612308565b602460009054906101000a90046001600160a01b03166001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612c29578181015183820152602001612c11565b505050509050019650505050505050600060405180830381600087803b158015612c5257600080fd5b505af115801561295a573d6000803e3d6000fd5b60008183612cb55760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156129b657818101518382015260200161299e565b506000838581612cc157fe5b0495945050505050565b6025805460ff60a01b1916600160a01b179055601d54601c54601e54600092612cf992909161286e916129f9565b90506000806000602560199054906101000a900460ff168015612d285750602654612d259060146122ab565b84115b15612dac57612d4860136116606014601e5461226290919063ffffffff16565b601e54909350612d58908461314b565b601e55601d54612d7090601390611660906014612262565b601d54909250612d80908361314b565b601d55601c54612d9890601390611660906014612262565b601c54909150612da8908261314b565b601c555b601c54600090612dbd906002612262565b90506000612dd682601c5461314b90919063ffffffff16565b90506000612df5601e5461286e601d54866129f990919063ffffffff16565b905047612e0182612aac565b6000612e0d478361314b565b90506000612e1f846117e584896122ab565b90506000612e3c856117e5601d54866122ab90919063ffffffff16565b90506000612e5482612e4e868661314b565b9061314b565b90506000612e6860066117e58560026122ab565b90506000612e7c60066117e58660046122ab565b90508415612ecf57612e8e898661318d565b604080518b8152602081018790528082018b905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8315612f4c576021546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f0f573d6000803e3d6000fd5b506023546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612f4a573d6000803e3d6000fd5b505b8215612f8e576022546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612f8c573d6000803e3d6000fd5b505b505050601c97909755505050601d94909455505050601e9190915550506025805460ff60a01b19169055565b80612fc757612fc761325a565b6001600160a01b0384166000908152600a602052604090205460ff16801561300857506001600160a01b0383166000908152600a602052604090205460ff16155b1561301d5761301884848461328c565b61311b565b6001600160a01b0384166000908152600a602052604090205460ff1615801561305e57506001600160a01b0383166000908152600a602052604090205460ff165b1561306e576130188484846133b1565b6001600160a01b0384166000908152600a602052604090205460ff161580156130b057506001600160a01b0383166000908152600a602052604090205460ff16155b156130c05761301884848461345a565b6001600160a01b0384166000908152600a602052604090205460ff16801561310057506001600160a01b0383166000908152600a602052604090205460ff165b156131105761301884848461349e565b61311b84848461345a565b8061189b5761189b613511565b600080600061313561351f565b90925090506131448282612262565b9250505090565b60006122a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612962565b6024546131a59030906001600160a01b031684612308565b6024546001600160a01b031663f305d7198230856000806131c4611b6e565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561322f57600080fd5b505af1158015613243573d6000803e3d6000fd5b50505050506040513d606081101561189b57600080fd5b60145415801561326a5750601a54155b156132745761328a565b60148054601555601a8054601b55600091829055555b565b60008060008060008061329e87613682565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506132d0908861314b565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546132ff908761314b565b6001600160a01b03808b1660009081526002602052604080822093909355908a168152205461332e90866129f9565b6001600160a01b038916600090815260026020526040902055613351818a6136d1565b61335b84836137af565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806133c387613682565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506133f5908761314b565b6001600160a01b03808b16600090815260026020908152604080832094909455918b1681526003909152205461342b90846129f9565b6001600160a01b03891660009081526003602090815260408083209390935560029052205461332e90866129f9565b60008060008060008061346c87613682565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506132ff908761314b565b6000806000806000806134b087613682565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506134e2908861314b565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546133f5908761314b565b601554601455601b54601a55565b600d54600c546000918291825b600b54811015613650578260026000600b848154811061354857fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806135ad57508160036000600b848154811061358657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156135c457600d54600c549450945050505061367e565b61360460026000600b84815481106135d857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061314b565b925061364660036000600b848154811061361a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061314b565b915060010161352c565b50600c54600d5461366091612262565b82101561367857600d54600c5493509350505061367e565b90925090505b9091565b60008060008060008060008060006136998a6137d3565b92509250925060008060006136b78d86866136b2613128565b61380f565b919f909e50909c50959a5093985091965092945050505050565b601a546136dd5761125c565b60006136fa601a546117e5601654866122ab90919063ffffffff16565b90506000613719601a546117e5601954876122ab90919063ffffffff16565b90506000613738601a546117e5601754886122ab90919063ffffffff16565b9050600061374c82612e4e85818a8961314b565b6020549091506137679086906001600160a01b03168461385f565b601c5461377490826129f9565b601c55601d5461378490856129f9565b601d55601e5461379490846129f9565b601e5561295a85306137aa8661286e868a6129f9565b61385f565b600d546137bc908361314b565b600d55600e546137cc90826129f9565b600e555050565b6000806000806137e285613959565b905060006137ef86613976565b9050600061380182612e4e898661314b565b979296509094509092505050565b600080808061381e88866122ab565b9050600061382c88876122ab565b9050600061383a88886122ab565b9050600061384c82612e4e868661314b565b939b939a50919850919650505050505050565b6000613869613128565b9050600061387783836122ab565b6001600160a01b03851660009081526002602052604090205490915061389d90826129f9565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613907576001600160a01b0384166000908152600360205260409020546138ed90846129f9565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610e436103e86117e5601454856122ab90919063ffffffff16565b6000610e436103e86117e5601a54856122ab90919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122029d0505633c28aa73734739ac371a5dafcd095452e3ccaaf64230321ae5a904764736f6c634300060c0033
Deployed Bytecode Sourcemap
34179:25285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37824:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38736:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38736:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43008:119;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43008:119:0;;:::i;:::-;;36039:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;36039:41:0;;;;;;;;;;;;;;38101:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;41549:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41549:98:0;-1:-1:-1;;;;;41549:98:0;;:::i;35366:33::-;;;;;;;;;;;;;:::i;38905:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38905:313:0;;;;;;;;;;;;;;;;;:::i;38010:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41807:558;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41807:558:0;;;;;;;;;;;;;;;;;;;;;;:::i;36267:32::-;;;;;;;;;;;;;:::i;40579:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40579:479:0;-1:-1:-1;;;;;40579:479:0;;:::i;39226:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39226:218:0;;;;;;;;:::i;35279:26::-;;;;;;;;;;;;;:::i;42556:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42556:103:0;;;;:::i;41066:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41066:111:0;-1:-1:-1;;;;;41066:111:0;;:::i;34523:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34523:51:0;-1:-1:-1;;;;;34523:51:0;;:::i;36087:28::-;;;;;;;;;;;;;:::i;36156:40::-;;;;;;;;;;;;;:::i;43133:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43133:118:0;;:::i;40238:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40238:333:0;-1:-1:-1;;;;;40238:333:0;;:::i;49306:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49306:123:0;-1:-1:-1;;;;;49306:123:0;;:::i;43393:161::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43393:161:0;;:::i;41317:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41317:110:0;-1:-1:-1;;;;;41317:110:0;;:::i;41435:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41435:106:0;-1:-1:-1;;;;;41435:106:0;;:::i;35440:33::-;;;;;;;;;;;;;:::i;48561:465::-;;;;;;;;;;;;;:::i;38204:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38204:198:0;-1:-1:-1;;;;;38204:198:0;;:::i;26200:148::-;;;;;;;;;;;;;:::i;43257:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43257:130:0;;:::i;35932:30::-;;;;;;;;;;;;;:::i;42892:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42892:110:0;;;;:::i;35855:70::-;;;;;;;;;;;;;:::i;39729:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39729:120:0;-1:-1:-1;;;;;39729:120:0;;:::i;49034:264::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49034:264:0;;:::i;25558:79::-;;;;;;;;;;;;;:::i;35969:24::-;;;;;;;;;;;;;:::i;37915:87::-;;;;;;;;;;;;;:::i;42773:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42773:111:0;;;;:::i;39857:::-;;;;;;;;;;;;;:::i;39452:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39452:269:0;;;;;;;;:::i;35814:32::-;;;;;;;;;;;;;:::i;38410:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38410:167:0;;;;;;;;:::i;35480:27::-;;;;;;;;;;;;;:::i;48113:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48113:122:0;-1:-1:-1;;;;;48113:122:0;;:::i;36203:23::-;;;;;;;;;;;;;:::i;41655:144::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41655:144:0;;;;;;;;;;:::i;35406:27::-;;;;;;;;;;;;;:::i;42667:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42667:98:0;;;;:::i;48384:169::-;;;;;;;;;;;;;:::i;42373:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42373:171:0;;;;:::i;36813:39::-;;;;;;;;;;;;;:::i;36306:34::-;;;;;;;;;;;;;:::i;34628:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34628:50:0;-1:-1:-1;;;;;34628:50:0;;:::i;38585:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38585:143:0;;;;;;;;;;:::i;36000:30::-;;;;;;;;;;;;;:::i;41189:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41189:110:0;-1:-1:-1;;;;;41189:110:0;;:::i;48243:133::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48243:133:0;-1:-1:-1;;;;;48243:133:0;;:::i;36233:27::-;;;;;;;;;;;;;:::i;34689:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34689:46:0;-1:-1:-1;;;;;34689:46:0;;:::i;26503:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26503:244:0;-1:-1:-1;;;;;26503:244:0;;:::i;35096:54::-;;;;;;;;;;;;;:::i;37824:83::-;37894:5;37887:12;;;;;;;;-1:-1:-1;;37887:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37861:13;;37887:12;;37894:5;;37887:12;;37894:5;37887:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37824:83;:::o;38736:161::-;38811:4;38828:39;38837:12;:10;:12::i;:::-;38851:7;38860:6;38828:8;:39::i;:::-;-1:-1:-1;38885:4:0;38736:161;;;;;:::o;43008:119::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;43081:29:::1;:38:::0;43008:119::o;36039:41::-;;;-1:-1:-1;;;;;36039:41:0;;:::o;38101:95::-;38181:7;;38101:95;:::o;41549:98::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;41620:9:::1;:19:::0;;-1:-1:-1;;;;;;41620:19:0::1;-1:-1:-1::0;;;;;41620:19:0;;;::::1;::::0;;;::::1;::::0;;41549:98::o;35366:33::-;;;;:::o;38905:313::-;39003:4;39020:36;39030:6;39038:9;39049:6;39020:9;:36::i;:::-;39067:121;39076:6;39084:12;:10;:12::i;:::-;39098:89;39136:6;39098:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39098:19:0;;;;;;:11;:19;;;;;;39118:12;:10;:12::i;:::-;-1:-1:-1;;;;;39098:33:0;;;;;;;;;;;;-1:-1:-1;39098:33:0;;;:89;:37;:89::i;:::-;39067:8;:121::i;:::-;-1:-1:-1;39206:4:0;38905:313;;;;;:::o;38010:83::-;38076:9;;;;38010:83;:::o;41807:558::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;42041:3:::1;42031:6;42021:7;42006:12;41991;41973:15;:30;:45;:55;:64;:71;;41965:129;;;;-1:-1:-1::0;;;41965:129:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42105:7;:25:::0;;;;42141:13:::1;:28:::0;;;42180:13:::1;:28:::0;;;42219:8:::1;:18:::0;;;42248:7:::1;:16:::0;;;42307:29;::::1;:40;:50;42277:27;:80:::0;41807:558::o;36267:32::-;;;-1:-1:-1;;;36267:32:0;;;;;:::o;40579:479::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40661:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40653:60;;;::::0;;-1:-1:-1;;;40653:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40729:9;40724:327;40748:9;:16:::0;40744:20;::::1;40724:327;;;40806:7;-1:-1:-1::0;;;;;40790:23:0::1;:9;40800:1;40790:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40790:12:0::1;:23;40786:254;;;40849:9;40859:16:::0;;-1:-1:-1;;40859:20:0;;;40849:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40834:9:::1;:12:::0;;-1:-1:-1;;;;;40849:31:0;;::::1;::::0;40844:1;;40834:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;40834:46:0::1;-1:-1:-1::0;;;;;40834:46:0;;::::1;;::::0;;40899:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;40938:11:::1;:20:::0;;;;:28;;-1:-1:-1;;40938:28:0::1;::::0;;40985:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;40985:15:0;;;;;-1:-1:-1;;;;;;40985:15:0::1;::::0;;;;;41019:5:::1;;40786:254;40766:3;;40724:327;;;;40579:479:::0;:::o;39226:218::-;39314:4;39331:83;39340:12;:10;:12::i;:::-;39354:7;39363:50;39402:10;39363:11;:25;39375:12;:10;:12::i;:::-;-1:-1:-1;;;;;39363:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39363:25:0;;;:34;;;;;;;;;;;:38;:50::i;35279:26::-;;;;:::o;42556:103::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;42627:13:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;42627:24:0::1;-1:-1:-1::0;;;;42627:24:0;;::::1;::::0;;;::::1;::::0;;42556:103::o;41066:111::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41135:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;41135:34:0::1;41165:4;41135:34;::::0;;41066:111::o;34523:51::-;;;;;;;;;;;;;;;:::o;36087:28::-;;;-1:-1:-1;;;;;36087:28:0;;:::o;36156:40::-;;;-1:-1:-1;;;36156:40:0;;;;;:::o;43133:118::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;43213:21:::1;:30:::0;43133:118::o;40238:333::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40321:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40320:21;40312:61;;;::::0;;-1:-1:-1;;;40312:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40387:16:0;::::1;40406:1;40387:16:::0;;;:7:::1;:16;::::0;;;;;:20;40384:108:::1;;-1:-1:-1::0;;;;;40463:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;40443:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;40424:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;40384:108:::1;-1:-1:-1::0;;;;;40502:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;40502:27:0::1;40525:4;40502:27:::0;;::::1;::::0;;;40540:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;40540:23:0::1;::::0;;::::1;::::0;;40238:333::o;49306:123::-;-1:-1:-1;;;;;49394:27:0;;49370:4;49394:27;;;:18;:27;;;;;;;;49306:123;;;;:::o;43393:161::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;43487:1:::1;43473:10;:15;;43465:24;;;::::0;::::1;;43512:34;43535:10;43512:18;43524:5;43512:7;;:11;;:18;;;;:::i;:::-;:22:::0;::::1;:34::i;:::-;43500:9;:46:::0;-1:-1:-1;43393:161:0:o;41317:110::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;41394:15:::1;:25:::0;;-1:-1:-1;;;;;;41394:25:0::1;-1:-1:-1::0;;;;;41394:25:0;;;::::1;::::0;;;::::1;::::0;;41317:110::o;41435:106::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;41508:15:::1;:25:::0;;-1:-1:-1;;;;;;41508:25:0::1;-1:-1:-1::0;;;;;41508:25:0;;;::::1;::::0;;;::::1;::::0;;41435:106::o;35440:33::-;;;;:::o;48561:465::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;48731:13:::1;::::0;48719:7:::1;::::0;48632:21:::1;::::0;48615:14:::1;::::0;48689:57:::1;::::0;48719:26:::1;::::0;:7;:11:::1;:26::i;:::-;48700:13;::::0;48689:25:::1;::::0;:6;;:10:::1;:25::i;:::-;:29:::0;::::1;:57::i;:::-;48666:80;;48757:14;48774:51;48798:26;48810:13;;48798:7;;:11;;:26;;;;:::i;:::-;48785:7;::::0;48774:19:::1;::::0;:6;;:10:::1;:19::i;:51::-;48757:68:::0;-1:-1:-1;48866:10:0;;48863:63:::1;;48899:9;::::0;48891:35:::1;::::0;-1:-1:-1;;;;;48899:9:0;;::::1;::::0;48891:35;::::1;;;::::0;48919:6;;48899:9:::1;48891:35:::0;48899:9;48891:35;48919:6;48899:9;48891:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48863:63;48940:16:::0;;48937:81:::1;;48979:15;::::0;48971:47:::1;::::0;-1:-1:-1;;;;;48979:15:0;;::::1;::::0;48971:47;::::1;;;::::0;49005:12;;48979:15:::1;48971:47:::0;48979:15;48971:47;49005:12;48979:15;48971:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48937:81;25840:1;;;48561:465::o:0;38204:198::-;-1:-1:-1;;;;;38294:20:0;;38270:7;38294:20;;;:11;:20;;;;;;;;38290:49;;;-1:-1:-1;;;;;;38323:16:0;;;;;;:7;:16;;;;;;38316:23;;38290:49;-1:-1:-1;;;;;38377:16:0;;;;;;:7;:16;;;;;;38357:37;;:19;:37::i;26200:148::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;26307:1:::1;26291:6:::0;;26270:40:::1;::::0;-1:-1:-1;;;;;26291:6:0;;::::1;::::0;26270:40:::1;::::0;26307:1;;26270:40:::1;26338:1;26321:19:::0;;-1:-1:-1;;;;;;26321:19:0::1;::::0;;26200:148::o;43257:130::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;43345:34:::1;43368:10;43345:18;43357:5;43345:7;;:11;;:18;;;;:::i;:34::-;43331:11;:48:::0;-1:-1:-1;43257:130:0:o;35932:30::-;;;-1:-1:-1;;;;;35932:30:0;;:::o;42892:110::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;42963:20:::1;:31:::0;;-1:-1:-1;;42963:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42892:110::o;35855:70::-;;;-1:-1:-1;;;;;35855:70:0;;:::o;39729:120::-;-1:-1:-1;;;;;39821:20:0;39797:4;39821:20;;;:11;:20;;;;;;;;;39729:120::o;49034:264::-;36893:16;:23;;-1:-1:-1;;;;36893:23:0;-1:-1:-1;;;36893:23:0;;;25780:12:::1;:10;:12::i;:::-;25770:6;::::0;-1:-1:-1;;;;;25770:6:0;;::::1;:22:::0;::::1;;25762:67;;;::::0;;-1:-1:-1;;;25762:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;::::1;;49125:23:::2;49151:24;49169:4;49151:9;:24::i;:::-;49125:50:::0;-1:-1:-1;49186:19:0::2;49208:42;49239:10:::0;49208:26:::2;49125:50:::0;49228:5:::2;49208:19;:26::i;:42::-;49186:64;;49261:29;49278:11;49261:16;:29::i;:::-;-1:-1:-1::0;;36939:16:0;:24;;-1:-1:-1;;;;36939:24:0;;;-1:-1:-1;49034:264:0:o;25558:79::-;25596:7;25623:6;-1:-1:-1;;;;;25623:6:0;25558:79;:::o;35969:24::-;;;-1:-1:-1;;;;;35969:24:0;;:::o;37915:87::-;37987:7;37980:14;;;;;;;;-1:-1:-1;;37980:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37954:13;;37980:14;;37987:7;;37980:14;;37987:7;37980:14;;;;;;;;;;;;;;;;;;;;;;;;42773:111;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;42850:15:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;42850:26:0::1;-1:-1:-1::0;;;;42850:26:0;;::::1;::::0;;;::::1;::::0;;42773:111::o;39857:::-;39937:23;;39857:111;:::o;39452:269::-;39545:4;39562:129;39571:12;:10;:12::i;:::-;39585:7;39594:96;39633:15;39594:96;;;;;;;;;;;;;;;;;:11;:25;39606:12;:10;:12::i;:::-;-1:-1:-1;;;;;39594:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39594:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;35814:32::-;;;;:::o;38410:167::-;38488:4;38505:42;38515:12;:10;:12::i;:::-;38529:9;38540:6;38505:9;:42::i;35480:27::-;;;;:::o;48113:122::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48171:10:0::1;;::::0;;;:6:::1;:10;::::0;;;;;;;:17;;48184:4:::1;-1:-1:-1::0;;48171:17:0;;::::1;::::0;::::1;::::0;;;48199::::1;:21:::0;;;;;:28;;;;::::1;::::0;;::::1;::::0;;48113:122::o;36203:23::-;;;-1:-1:-1;;;36203:23:0;;;;;:::o;41655:144::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41750:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:41;;-1:-1:-1;;41750:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41655:144::o;35406:27::-;;;;:::o;42667:98::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;42739:7:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;42739:18:0::1;-1:-1:-1::0;;;;42739:18:0;;::::1;::::0;;;::::1;::::0;;42667:98::o;48384:169::-;36893:16;:23;;-1:-1:-1;;;;36893:23:0;-1:-1:-1;;;36893:23:0;;;25780:12:::1;:10;:12::i;:::-;25770:6;::::0;-1:-1:-1;;;;;25770:6:0;;::::1;:22:::0;::::1;;25762:67;;;::::0;;-1:-1:-1;;;25762:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;::::1;;48451:23:::2;48477:24;48495:4;48477:9;:24::i;:::-;48451:50;;48512:33;48529:15;48512:16;:33::i;:::-;-1:-1:-1::0;36939:16:0;:24;;-1:-1:-1;;;;36939:24:0;;;48384:169::o;42373:171::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;42450:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;42450:32:0;::::1;-1:-1:-1::0;;;;42450:32:0;;::::1;::::0;;;::::1;::::0;;;42498:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;42373:171:::0;:::o;36813:39::-;;;;;;:::o;36306:34::-;;;-1:-1:-1;;;36306:34:0;;;;;:::o;34628:50::-;;;;;;;;;;;;;;;:::o;38585:143::-;-1:-1:-1;;;;;38693:18:0;;;38666:7;38693:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;38585:143::o;36000:30::-;;;-1:-1:-1;;;;;36000:30:0;;:::o;41189:110::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41256:27:0::1;41286:5;41256:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;41256:35:0::1;::::0;;41189:110::o;48243:133::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48304:13:0::1;48320:5;48304:13:::0;;;:6:::1;:13;::::0;;;;;;;:21;;-1:-1:-1;;48304:21:0;;::::1;::::0;;;48336:17:::1;:24:::0;;;;;;:32;;;;::::1;::::0;;48243:133::o;36233:27::-;;;-1:-1:-1;;;36233:27:0;;;;;:::o;34689:46::-;;;;;;;;;;;;;;;:::o;26503:244::-;25780:12;:10;:12::i;:::-;25770:6;;-1:-1:-1;;;;;25770:6:0;;;:22;;;25762:67;;;;;-1:-1:-1;;;25762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25762:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26592:22:0;::::1;26584:73;;;;-1:-1:-1::0;;;26584:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26694:6;::::0;;26673:38:::1;::::0;-1:-1:-1;;;;;26673:38:0;;::::1;::::0;26694:6;::::1;::::0;26673:38:::1;::::0;::::1;26722:6;:17:::0;;-1:-1:-1;;;;;;26722:17:0::1;-1:-1:-1::0;;;;;26722:17:0;;;::::1;::::0;;;::::1;::::0;;26503:244::o;35096:54::-;;;;:::o;29318:132::-;29376:7;29403:39;29407:1;29410;29403:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;29396:46;29318:132;-1:-1:-1;;;29318:132:0:o;28371:471::-;28429:7;28674:6;28670:47;;-1:-1:-1;28704:1:0;28697:8;;28670:47;28741:5;;;28745:1;28741;:5;:1;28765:5;;;;;:10;28757:56;;;;-1:-1:-1;;;28757:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;672:98;752:10;672:98;:::o;49437:337::-;-1:-1:-1;;;;;49530:19:0;;49522:68;;;;-1:-1:-1;;;49522:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49609:21:0;;49601:68;;;;-1:-1:-1;;;49601:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49682:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;49734:32;;;;;;;;;;;;;;;;;49437:337;;;:::o;49782:2467::-;-1:-1:-1;;;;;49904:18:0;;49896:68;;;;-1:-1:-1;;;49896:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49983:16:0;;49975:64;;;;-1:-1:-1;;;49975:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50067:1;50058:6;:10;50050:64;;;;-1:-1:-1;;;50050:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50133:24:0;;;;;;:18;:24;;;;;;;;:33;50125:65;;;;;-1:-1:-1;;;50125:65:0;;;;;;;;;;;;-1:-1:-1;;;50125:65:0;;;;;;;;;;;;;;;50205:13;;-1:-1:-1;;;50205:13:0;;;;50202:1142;;;-1:-1:-1;;;;;50234:21:0;;;;;;:17;:21;;;;;;;;50233:22;:49;;;;-1:-1:-1;;;;;;50260:22:0;;;;;;:18;:22;;;;;;;;50259:23;50233:49;:68;;;;;50294:7;:5;:7::i;:::-;-1:-1:-1;;;;;50286:15:0;:4;-1:-1:-1;;;;;50286:15:0;;;50233:68;:85;;;;;50311:7;:5;:7::i;:::-;-1:-1:-1;;;;;50305:13:0;:2;-1:-1:-1;;;;;50305:13:0;;;50233:85;:108;;;;-1:-1:-1;50328:13:0;;-1:-1:-1;;;;;50322:19:0;;;50328:13;;50322:19;;50233:108;50230:243;;;50372:11;;50362:6;:21;;50354:49;;;;;-1:-1:-1;;;50354:49:0;;;;;;;;;;;;-1:-1:-1;;;50354:49:0;;;;;;;;;;;;;;;50451:9;;50422:25;50433:13;50443:2;50433:9;:13::i;:::-;50422:6;;:10;:25::i;:::-;:38;;50414:47;;;;;;50513:7;:5;:7::i;:::-;-1:-1:-1;;;;;50505:15:0;:4;-1:-1:-1;;;;;50505:15:0;;;:49;;;;;50547:7;:5;:7::i;:::-;-1:-1:-1;;;;;50541:13:0;:2;-1:-1:-1;;;;;50541:13:0;;;50505:49;:86;;;;-1:-1:-1;;;;;;50575:16:0;;;;50505:86;:128;;;;-1:-1:-1;;;;;;50612:21:0;;50626:6;50612:21;;50505:128;:166;;;;-1:-1:-1;50655:16:0;;-1:-1:-1;;;50655:16:0;;;;50654:17;50505:166;50483:850;;;50711:7;;-1:-1:-1;;;50711:7:0;;;;50707:154;;-1:-1:-1;;;;;50750:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;50778:22:0;;;;;;:18;:22;;;;;;;;50750:50;:64;;;-1:-1:-1;;;;;;50804:10:0;;;;;;:6;:10;;;;;;;;50750:64;50742:99;;;;;-1:-1:-1;;;50742:99:0;;;;;;;;;;;;-1:-1:-1;;;50742:99:0;;;;;;;;;;;;;;;50899:20;;;;50895:423;;;50953:7;:5;:7::i;:::-;-1:-1:-1;;;;;50947:13:0;:2;-1:-1:-1;;;;;50947:13:0;;;:47;;;;-1:-1:-1;50978:15:0;;-1:-1:-1;;;;;50964:30:0;;;50978:15;;50964:30;;50947:47;:79;;;;-1:-1:-1;51012:13:0;;-1:-1:-1;;;;;50998:28:0;;;51012:13;;50998:28;;50947:79;50943:356;;;51091:9;51062:39;;;;:28;:39;;;;;;51104:12;-1:-1:-1;51054:140:0;;;;-1:-1:-1;;;51054:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51250:9;51221:39;;;;:28;:39;;;;;51263:12;51221:54;;50943:356;51356:18;51377:72;51431:17;;51377:49;51402:23;;51377:20;;:24;;:49;;;;:::i;:::-;:53;;:72::i;:::-;51501:29;;51560:16;;51356:93;;-1:-1:-1;51487:43:0;;;;-1:-1:-1;;;51560:16:0;;;;51559:17;:55;;;;-1:-1:-1;51601:13:0;;-1:-1:-1;;;;;51593:21:0;;;51601:13;;51593:21;;51559:55;:93;;;;-1:-1:-1;51631:21:0;;-1:-1:-1;;;51631:21:0;;;;51559:93;:129;;;;;51669:19;51559:129;51541:233;;;51746:16;:14;:16::i;:::-;-1:-1:-1;;;;;51982:24:0;;51855:12;51982:24;;;:18;:24;;;;;;51870:4;;51982:24;;;:50;;-1:-1:-1;;;;;;52010:22:0;;;;;;:18;:22;;;;;;;;51982:50;:100;;;-1:-1:-1;52045:13:0;;-1:-1:-1;;;;;52037:21:0;;;52045:13;;52037:21;;;;:44;;-1:-1:-1;52068:13:0;;-1:-1:-1;;;;;52062:19:0;;;52068:13;;52062:19;;52037:44;51979:146;;;-1:-1:-1;52108:5:0;51979:146;52203:38;52218:4;52223:2;52226:6;52233:7;52203:14;:38::i;:::-;49782:2467;;;;;;:::o;27920:192::-;28006:7;28042:12;28034:6;;;;28026:29;;;;-1:-1:-1;;;28026:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;28078:5:0;;;27920:192::o;27017:181::-;27075:7;27107:5;;;27131:6;;;;27123:46;;;;;-1:-1:-1;;;27123:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;39976:254;40043:7;40082;;40071;:18;;40063:73;;;;-1:-1:-1;;;40063:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40147:19;40170:10;:8;:10::i;:::-;40147:33;-1:-1:-1;40198:24:0;:7;40147:33;40198:11;:24::i;54883:589::-;55033:16;;;55047:1;55033:16;;;55009:21;55033:16;;;;;55009:21;55033:16;;;;;;;;;;-1:-1:-1;55033:16:0;55009:40;;55078:4;55060;55065:1;55060:7;;;;;;;;-1:-1:-1;;;;;55060:23:0;;;:7;;;;;;;;;;:23;;;;55104:15;;:22;;;-1:-1:-1;;;55104:22:0;;;;:15;;;;;:20;;:22;;;;;55060:7;;55104:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55104:22:0;55094:7;;:4;;55099:1;;55094:7;;;;;;-1:-1:-1;;;;;55094:32:0;;;:7;;;;;;;;;:32;55171:15;;55139:62;;55156:4;;55171:15;55189:11;55139:8;:62::i;:::-;55240:15;;;;;;;;;-1:-1:-1;;;;;55240:15:0;-1:-1:-1;;;;;55240:66:0;;55321:11;55347:1;55391:4;55418;55438:15;55240:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55240:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29946:278;30032:7;30067:12;30060:5;30052:28;;;;-1:-1:-1;;;30052:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30091:9;30107:1;30103;:5;;;;;;;29946:278;-1:-1:-1;;;;;29946:278:0:o;52257:2618::-;36893:16;:23;;-1:-1:-1;;;;36893:23:0;-1:-1:-1;;;36893:23:0;;;52394::::1;::::0;52368:20:::1;::::0;52346:17:::1;::::0;36893:23;;52346:72:::1;::::0;52394:23;;52346:43:::1;::::0;:21:::1;:43::i;:72::-;52316:102;;52429:20;52464:26:::0;52505:20:::1;52544:15;;;;;;;;;;;:78;;;;-1:-1:-1::0;52585:29:0::1;::::0;:37:::1;::::0;52619:2:::1;52585:33;:37::i;:::-;52563:19;:59;52544:78;52540:533;;;52653:33;52683:2;52653:25;52675:2;52653:17;;:21;;:25;;;;:::i;:33::-;52721:17;::::0;52638:48;;-1:-1:-1;52721:35:0::1;::::0;52638:48;52721:21:::1;:35::i;:::-;52701:17;:55:::0;52792:23:::1;::::0;:39:::1;::::0;52828:2:::1;::::0;52792:31:::1;::::0;52820:2:::1;52792:27;:31::i;:39::-;52872:23;::::0;52771:60;;-1:-1:-1;52872:47:0::1;::::0;52771:60;52872:27:::1;:47::i;:::-;52846:23;:73:::0;52949:20:::1;::::0;:36:::1;::::0;52982:2:::1;::::0;52949:28:::1;::::0;52974:2:::1;52949:24;:28::i;:36::-;53023:20;::::0;52934:51;;-1:-1:-1;53023:38:0::1;::::0;52934:51;53023:24:::1;:38::i;:::-;53000:20;:61:::0;52540:533:::1;53150:20;::::0;53135:12:::1;::::0;53150:28:::1;::::0;53176:1:::1;53150:25;:28::i;:::-;53135:43;;53189:17;53209:30;53234:4;53209:20;;:24;;:30;;;;:::i;:::-;53189:50;;53252:18;53273:56;53311:17;;53273:33;53282:23;;53273:4;:8;;:33;;;;:::i;:56::-;53252:77:::0;-1:-1:-1;53630:21:0::1;53696:28;53252:77:::0;53696:16:::1;:28::i;:::-;53855:13;53871:41;:21;53897:14:::0;53871:25:::1;:41::i;:::-;53855:57:::0;-1:-1:-1;53925:17:0::1;53945:31;53965:10:::0;53945:15:::1;53855:57:::0;53955:4;53945:9:::1;:15::i;:31::-;53925:51;;53987:20;54010:50;54049:10;54010:34;54020:23;;54010:5;:9;;:34;;;;:::i;:50::-;53987:73:::0;-1:-1:-1;54071:14:0::1;54088:38;53987:73:::0;54088:20:::1;:5:::0;54098:9;54088::::1;:20::i;:::-;:24:::0;::::1;:38::i;:::-;54071:55:::0;-1:-1:-1;54137:16:0::1;54156:26;54180:1;54156:19;:12:::0;54173:1:::1;54156:16;:19::i;:26::-;54137:45:::0;-1:-1:-1;54193:20:0::1;54216:26;54240:1;54216:19;:12:::0;54233:1:::1;54216:16;:19::i;:26::-;54193:49:::0;-1:-1:-1;54258:13:0;;54255:181:::1;;54328:34;54341:9;54352;54328:12;:34::i;:::-;54382:42;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;54255:181;54451:16:::0;;54448:152:::1;;54491:15;::::0;54483:47:::1;::::0;-1:-1:-1;;;;;54491:15:0;;::::1;::::0;54483:47;::::1;;;::::0;54517:12;;54491:15:::1;54483:47:::0;54491:15;54483:47;54517:12;54491:15;54483:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;54553:15:0::1;::::0;54545:43:::1;::::0;-1:-1:-1;;;;;54553:15:0;;::::1;::::0;54545:43;::::1;;;::::0;54579:8;;54553:15:::1;54545:43:::0;54553:15;54545:43;54579:8;54553:15;54545:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54448:152;54615:10:::0;;54612:76:::1;;54649:9;::::0;54641:35:::1;::::0;-1:-1:-1;;;;;54649:9:0;;::::1;::::0;54641:35;::::1;;;::::0;54669:6;;54649:9:::1;54641:35:::0;54649:9;54641:35;54669:6;54649:9;54641:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54612:76;-1:-1:-1::0;;;54734:20:0::1;:35:::0;;;;-1:-1:-1;;;54780:23:0::1;:44:::0;;;;-1:-1:-1;;;54835:17:0::1;:32:::0;;;;-1:-1:-1;;36939:16:0;:24;;-1:-1:-1;;;;36939:24:0;;;52257:2618::o;56074:835::-;56186:7;56182:40;;56208:14;:12;:14::i;:::-;-1:-1:-1;;;;;56247:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;56271:22:0;;;;;;:11;:22;;;;;;;;56270:23;56247:46;56243:597;;;56310:48;56332:6;56340:9;56351:6;56310:21;:48::i;:::-;56243:597;;;-1:-1:-1;;;;;56381:19:0;;;;;;:11;:19;;;;;;;;56380:20;:46;;;;-1:-1:-1;;;;;;56404:22:0;;;;;;:11;:22;;;;;;;;56380:46;56376:464;;;56443:46;56463:6;56471:9;56482:6;56443:19;:46::i;56376:464::-;-1:-1:-1;;;;;56512:19:0;;;;;;:11;:19;;;;;;;;56511:20;:47;;;;-1:-1:-1;;;;;;56536:22:0;;;;;;:11;:22;;;;;;;;56535:23;56511:47;56507:333;;;56575:44;56593:6;56601:9;56612:6;56575:17;:44::i;56507:333::-;-1:-1:-1;;;;;56641:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;56664:22:0;;;;;;:11;:22;;;;;;;;56641:45;56637:203;;;56703:48;56725:6;56733:9;56744:6;56703:21;:48::i;56637:203::-;56784:44;56802:6;56810:9;56821:6;56784:17;:44::i;:::-;56864:7;56860:41;;56886:15;:13;:15::i;45248:163::-;45289:7;45310:15;45327;45346:19;:17;:19::i;:::-;45309:56;;-1:-1:-1;45309:56:0;-1:-1:-1;45383:20:0;45309:56;;45383:11;:20::i;:::-;45376:27;;;;45248:163;:::o;27481:136::-;27539:7;27566:43;27570:1;27573;27566:43;;;;;;;;;;;;;;;;;:3;:43::i;55480:513::-;55660:15;;55628:62;;55645:4;;-1:-1:-1;;;;;55660:15:0;55678:11;55628:8;:62::i;:::-;55733:15;;-1:-1:-1;;;;;55733:15:0;:31;55772:9;55805:4;55825:11;55733:15;;55937:7;:5;:7::i;:::-;55959:15;55733:252;;;;;;;;;;;;;-1:-1:-1;;;;;55733:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55733:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47636:306;47682:7;;:12;:48;;;;-1:-1:-1;47698:27:0;;:32;47682:48;47679:60;;;47732:7;;47679:60;47777:7;;;47759:15;:25;47833:27;;;47795:35;:65;-1:-1:-1;47881:11:0;;;;47903:31;47636:306;:::o;58133:622::-;58236:15;58253:23;58278:12;58292:23;58317:12;58331:34;58369:19;58380:7;58369:10;:19::i;:::-;-1:-1:-1;;;;;58417:15:0;;;;;;:7;:15;;;;;;58235:153;;-1:-1:-1;58235:153:0;;-1:-1:-1;58235:153:0;;-1:-1:-1;58235:153:0;-1:-1:-1;58235:153:0;-1:-1:-1;58235:153:0;-1:-1:-1;58417:28:0;;58437:7;58417:19;:28::i;:::-;-1:-1:-1;;;;;58399:15:0;;;;;;:7;:15;;;;;;;;:46;;;;58474:7;:15;;;;:28;;58494:7;58474:19;:28::i;:::-;-1:-1:-1;;;;;58456:15:0;;;;;;;:7;:15;;;;;;:46;;;;58534:18;;;;;;;:39;;58557:15;58534:22;:39::i;:::-;-1:-1:-1;;;;;58513:18:0;;;;;;:7;:18;;;;;:60;58587:66;58618:26;58646:6;58587:30;:66::i;:::-;58664:23;58676:4;58682;58664:11;:23::i;:::-;58720:9;-1:-1:-1;;;;;58703:44:0;58712:6;-1:-1:-1;;;;;58703:44:0;;58731:15;58703:44;;;;;;;;;;;;;;;;;;58133:622;;;;;;;;;:::o;57483:642::-;57584:15;57601:23;57626:12;57640:23;57665:12;57679:34;57717:19;57728:7;57717:10;:19::i;:::-;-1:-1:-1;;;;;57765:15:0;;;;;;:7;:15;;;;;;57583:153;;-1:-1:-1;57583:153:0;;-1:-1:-1;57583:153:0;;-1:-1:-1;57583:153:0;-1:-1:-1;57583:153:0;-1:-1:-1;57583:153:0;-1:-1:-1;57765:28:0;;57583:153;57765:19;:28::i;:::-;-1:-1:-1;;;;;57747:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;57825:18;;;;;:7;:18;;;;;:39;;57848:15;57825:22;:39::i;:::-;-1:-1:-1;;;;;57804:18:0;;;;;;:7;:18;;;;;;;;:60;;;;57896:7;:18;;;;:39;;57919:15;57896:22;:39::i;56917:558::-;57016:15;57033:23;57058:12;57072:23;57097:12;57111:34;57149:19;57160:7;57149:10;:19::i;:::-;-1:-1:-1;;;;;57197:15:0;;;;;;:7;:15;;;;;;57015:153;;-1:-1:-1;57015:153:0;;-1:-1:-1;57015:153:0;;-1:-1:-1;57015:153:0;-1:-1:-1;57015:153:0;-1:-1:-1;57015:153:0;-1:-1:-1;57197:28:0;;57015:153;57197:19;:28::i;58763:698::-;58866:15;58883:23;58908:12;58922:23;58947:12;58961:34;58999:19;59010:7;58999:10;:19::i;:::-;-1:-1:-1;;;;;59047:15:0;;;;;;:7;:15;;;;;;58865:153;;-1:-1:-1;58865:153:0;;-1:-1:-1;58865:153:0;;-1:-1:-1;58865:153:0;-1:-1:-1;58865:153:0;-1:-1:-1;58865:153:0;-1:-1:-1;59047:28:0;;59067:7;59047:19;:28::i;:::-;-1:-1:-1;;;;;59029:15:0;;;;;;:7;:15;;;;;;;;:46;;;;59104:7;:15;;;;:28;;59124:7;59104:19;:28::i;47954:153::-;48008:15;;47998:7;:25;48064:35;;48034:27;:65;47954:153::o;45419:561::-;45516:7;;45552;;45469;;;;;45576:289;45600:9;:16;45596:20;;45576:289;;;45666:7;45642;:21;45650:9;45660:1;45650:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45650:12:0;45642:21;;;;;;;;;;;;;:31;;:66;;;45701:7;45677;:21;45685:9;45695:1;45685:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45685:12:0;45677:21;;;;;;;;;;;;;:31;45642:66;45638:97;;;45718:7;;45727;;45710:25;;;;;;;;;45638:97;45760:34;45772:7;:21;45780:9;45790:1;45780:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45780:12:0;45772:21;;;;;;;;;;;;;45760:7;;:11;:34::i;:::-;45750:44;;45819:34;45831:7;:21;45839:9;45849:1;45839:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45839:12:0;45831:21;;;;;;;;;;;;;45819:7;;:11;:34::i;:::-;45809:44;-1:-1:-1;45618:3:0;;45576:289;;;-1:-1:-1;45901:7:0;;45889;;:20;;:11;:20::i;:::-;45879:7;:30;45875:61;;;45919:7;;45928;;45911:25;;;;;;;;45875:61;45955:7;;-1:-1:-1;45964:7:0;-1:-1:-1;45419:561:0;;;:::o;43837:482::-;43896:7;43905;43914;43923;43932;43941;43962:23;43987:12;44001:39;44044:20;44056:7;44044:11;:20::i;:::-;43961:103;;;;;;44076:15;44093:23;44118:12;44134:71;44146:7;44155:4;44161:31;44194:10;:8;:10::i;:::-;44134:11;:71::i;:::-;44075:130;;;;-1:-1:-1;44075:130:0;;-1:-1:-1;44256:15:0;;-1:-1:-1;44273:4:0;;-1:-1:-1;44279:31:0;;-1:-1:-1;43837:482:0;;-1:-1:-1;;;;;43837:482:0:o;45988:915::-;46102:27;;46099:69;;46150:7;;46099:69;46178:18;46199:78;46249:27;;46199:45;46230:13;;46199:26;:30;;:45;;;;:::i;:78::-;46178:99;;46288:12;46303:72;46347:27;;46303:39;46334:7;;46303:26;:30;;:39;;;;:::i;:72::-;46288:87;;46386:13;46402:73;46447:27;;46402:40;46433:8;;46402:26;:30;;:40;;;;:::i;:73::-;46386:89;-1:-1:-1;46486:15:0;46504:63;46386:89;46504:52;46551:4;46504:52;:26;46535:10;46504:30;:42::i;:63::-;46597:10;;46486:81;;-1:-1:-1;46580:35:0;;46589:6;;-1:-1:-1;;;;;46597:10:0;46609:5;46580:8;:35::i;:::-;46651:20;;:33;;46676:7;46651:24;:33::i;:::-;46628:20;:56;46721:23;;:39;;46749:10;46721:27;:39::i;:::-;46695:23;:65;46791:17;;:27;;46813:4;46791:21;:27::i;:::-;46771:17;:47;46829:66;46838:6;46854:4;46861:33;46889:4;46861:23;:7;46873:10;46861:11;:23::i;:33::-;46829:8;:66::i;43656:173::-;43734:7;;:17;;43746:4;43734:11;:17::i;:::-;43724:7;:27;43788:23;;:33;;43816:4;43788:27;:33::i;:::-;43762:23;:59;-1:-1:-1;;43656:173:0:o;44327:392::-;44387:7;44396;44405;44425:12;44440:24;44456:7;44440:15;:24::i;:::-;44425:39;;44475:34;44512:44;44548:7;44512:35;:44::i;:::-;44475:81;-1:-1:-1;44567:23:0;44593:49;44475:81;44593:17;:7;44605:4;44593:11;:17::i;:49::-;44567:75;44678:4;;-1:-1:-1;44684:26:0;;-1:-1:-1;44327:392:0;;-1:-1:-1;;;44327:392:0:o;44727:513::-;44863:7;;;;44919:24;:7;44931:11;44919;:24::i;:::-;44901:42;-1:-1:-1;44954:12:0;44969:21;:4;44978:11;44969:8;:21::i;:::-;44954:36;-1:-1:-1;45001:39:0;45043:48;:31;45079:11;45043:35;:48::i;:::-;45001:90;-1:-1:-1;45102:23:0;45128:54;45001:90;45128:17;:7;45140:4;45128:11;:17::i;:54::-;45201:7;;;;-1:-1:-1;45227:4:0;;-1:-1:-1;44727:513:0;;-1:-1:-1;;;;;;;44727:513:0:o;46911:345::-;46989:19;47012:10;:8;:10::i;:::-;46989:33;-1:-1:-1;47033:15:0;47051:23;:6;46989:33;47051:10;:23::i;:::-;-1:-1:-1;;;;;47099:11:0;;;;;;:7;:11;;;;;;47033:41;;-1:-1:-1;47099:24:0;;47033:41;47099:15;:24::i;:::-;-1:-1:-1;;;;;47085:11:0;;;;;;:7;:11;;;;;;;;:38;;;;47137:11;:15;;;;;;47134:70;;;-1:-1:-1;;;;;47181:11:0;;;;;;:7;:11;;;;;;:23;;47197:6;47181:15;:23::i;:::-;-1:-1:-1;;;;;47167:11:0;;;;;;:7;:11;;;;;:37;47134:70;47237:2;-1:-1:-1;;;;;47222:26:0;47231:4;-1:-1:-1;;;;;47222:26:0;;47241:6;47222:26;;;;;;;;;;;;;;;;;;46911:345;;;;;:::o;47268:154::-;47332:7;47359:55;47398:5;47359:20;47371:7;;47359;:11;;:20;;;;:::i;47430:194::-;47514:7;47541:75;47600:5;47541:40;47553:27;;47541:7;:11;;:40;;;;:::i
Swarm Source
ipfs://29d0505633c28aa73734739ac371a5dafcd095452e3ccaaf64230321ae5a9047
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.