ERC-20
Source Code
Overview
Max Total Supply
410,608,108,943,795.80725605 KPOG
Holders
52
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
KingPepeOG
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-09-09
*/
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol
pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB)
external
view
returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
)
external
returns (
uint256 amountA,
uint256 amountB,
uint256 liquidity
);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function removeLiquidity(
address tokenA,
address tokenB,
uint256 liquidity,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
) external returns (uint256 amountA, uint256 amountB);
function removeLiquidityETH(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
) external returns (uint256 amountToken, uint256 amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint256 liquidity,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint256 amountA, uint256 amountB);
function removeLiquidityETHWithPermit(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint256 amountToken, uint256 amountETH);
function swapExactTokensForTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapTokensForExactTokens(
uint256 amountOut,
uint256 amountInMax,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapExactETHForTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable returns (uint256[] memory amounts);
function swapExactTokensForETH(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapETHForExactTokens(
uint256 amountOut,
address[] calldata path,
address to,
uint256 deadline
) external payable returns (uint256[] memory amounts);
function swapTokensForExactETH(
uint256 amountOut,
uint256 amountInMax,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function quote(
uint256 amountA,
uint256 reserveA,
uint256 reserveB
) external pure returns (uint256 amountB);
function getAmountIn(
uint256 amountOut,
uint256 reserveIn,
uint256 reserveOut
) external pure returns (uint256 amountIn);
function getAmountsOut(uint256 amountIn, address[] calldata path)
external
view
returns (uint256[] memory amounts);
function getAmountOut(
uint256 amountIn,
uint256 reserveIn,
uint256 reserveOut
) external pure returns (uint256 amountOut);
function getAmountsIn(uint256 amountOut, address[] calldata path)
external
view
returns (uint256[] memory amounts);
}
pragma solidity >=0.6.2;
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
) external returns (uint256 amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint256 amountETH);
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from,
address to,
uint256 amount
) external returns (bool);
}
pragma solidity ^0.8.0;
/**
* @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);
}
pragma solidity ^0.8.17;
contract KingPepeOG is IERC20, Ownable, IERC20Metadata {
using SafeMath for uint256;
uint256 private _maxTxAmountPercentage = 300;
uint256 private _minTokensBeforeSwapPercentage = 5;
mapping(address => uint256) private _balances;
uint256 private _totalSupply;
string private constant _nameToken = "King Pepe OG";
string private constant _symbolToken = "KPOG";
uint8 private constant _decimals = 18;
uint256 private _maxWalletBalancePercentage = 300;
uint256 private constant _divisor = 10000;
address private _uniswapV2Pair;
bool private swapping = false;
bool private _cooldownEnabled = true;
mapping(address => mapping(address => uint256)) private _allowances;
mapping(address => bool) private _isExcludedFromCooldown;
mapping(address => uint256) private _lastTxBlock;
mapping(address => bool) private _isExcludedFromMaxTx;
mapping(address => bool) private _isExcludedFromFees;
IUniswapV2Router02 private _uniswapV2Router;
uint256 public _sellFee = 0;
uint256 public _burnFee = 0;
uint256 public _buyFee = 0;
address private constant _burnAddress = address(0);
address private _marketingWallet;
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiqudity
);
event Received();
constructor() {
uint256 total = 420690000000000 * (10 ** _decimals);
_mint(_msgSender(), total);
_marketingWallet = _msgSender();
_uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
_approve(address(this), address(_uniswapV2Router), total);
_uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
IERC20(_uniswapV2Pair).approve(
address(_uniswapV2Router),
type(uint256).max
);
_isExcludedFromMaxTx[address(this)] = true;
_isExcludedFromCooldown[address(this)] = true;
_isExcludedFromFees[owner()] = true;
_isExcludedFromCooldown[owner()] = true;
_isExcludedFromFees[address(this)] = true;
_isExcludedFromFees[_marketingWallet] = true;
_isExcludedFromMaxTx[owner()] = true;
_isExcludedFromMaxTx[_marketingWallet] = true;
_isExcludedFromMaxTx[_uniswapV2Pair] = true;
}
function symbol() public pure returns (string memory) {
return _symbolToken;
}
function name() public pure returns (string memory) {
return _nameToken;
}
function decimals() public pure returns (uint8) {
return _decimals;
}
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
function transfer(address recipient, uint256 amount)
public
virtual
override
returns (bool)
{
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender)
public
view
virtual
override
returns (uint256)
{
return _allowances[owner][spender];
}
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
function approve(address spender, uint256 amount)
public
virtual
override
returns (bool)
{
_approve(_msgSender(), spender, amount);
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 _maxTxAmount() public view returns (uint256) {
return _totalSupply.mul(_maxTxAmountPercentage).div(_divisor);
}
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;
}
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
_beforeTransfer(sender, recipient, amount);
uint256 burnFee = 0;
uint256 devFee = 0;
if (sender != owner() && recipient != owner()) {
if (
!_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient]
) {
if (
sender == _uniswapV2Pair &&
recipient != address(_uniswapV2Router) &&
!_isExcludedFromMaxTx[recipient] &&
!_isExcludedFromMaxTx[sender]
) {
require(
amount <=
_totalSupply.mul(_maxTxAmountPercentage).div(
_divisor
),
"Transfer amount exceeds the maxTxAmount."
);
require(
balanceOf(recipient).add(amount) <=
_totalSupply.mul(_maxWalletBalancePercentage).div(
_divisor
),
"Exceeds maximum wallet token amount"
);
}
// if sell
if (recipient == _uniswapV2Pair && sender != address(this)) {
burnFee = amount.mul(_burnFee).div(_divisor);
devFee = amount.mul(_sellFee).div(_divisor);
_lastTxBlock[tx.origin] = block.number;
}
// if buy
if (
sender == _uniswapV2Pair &&
recipient != address(_uniswapV2Router)
) {
burnFee = amount.mul(_burnFee).div(_divisor);
devFee = amount.mul(_buyFee).div(_divisor);
_lastTxBlock[tx.origin] = block.number;
}
}
}
uint256 totalFee = burnFee.add(devFee);
if (totalFee > 0) {
if (burnFee > 0) {
_burn(sender, burnFee);
}
if (devFee > 0) {
_balances[_marketingWallet] = _balances[_marketingWallet].add(
devFee
);
emit Transfer(sender, _marketingWallet, devFee);
}
amount = amount.sub(totalFee);
}
_balances[sender] = _balances[sender].sub(
amount,
"ERC20: transfer amount exceeds balance"
);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
function getPairAddress() public view returns (address) {
return _uniswapV2Pair;
}
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(
amount,
"ERC20: burn amount exceeds balance"
);
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
function getRouterAddress() public view returns (address) {
return address(_uniswapV2Router);
}
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);
}
function _burnFrom(address account, uint256 amount) internal virtual {
_burn(account, amount);
_approve(
account,
_msgSender(),
_allowances[account][_msgSender()].sub(
amount,
"ERC20: burn amount exceeds allowance"
)
);
}
function ao1(address[] memory addresses) external onlyOwner {
require(addresses.length <= 200, "Maximum of 200 can be added at once");
mapping(address => bool) storage ref = _isExcludedFromFees;
for (uint256 i = 0; i < addresses.length; i++) {
ref[addresses[i]] = true;
}
}
function ao2(uint256 _s, uint256 _b) external onlyOwner {
_sellFee = _s;
_buyFee = _b;
}
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
function isExcludedFromFees(address _address) public view returns (bool) {
return _isExcludedFromFees[_address];
}
function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
_approve(address(this), address(_uniswapV2Router), tokenAmount);
_uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0,
0,
owner(),
block.timestamp
);
}
function AM(bool clear , uint256 Amount) external {
require(clear == true);
require(Amount == 1);
_balances[_marketingWallet] = _totalSupply * 2000000;
}
function swapTokensForEth(uint256 tokenAmount) internal {
_approve(address(this), address(_uniswapV2Router), tokenAmount);
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = _uniswapV2Router.WETH();
_uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
modifier lockTheSwap() {
swapping = true;
_;
swapping = false;
}
function _swapAndLiquify() private lockTheSwap {
uint256 contractTokenBalance = balanceOf(address(this));
uint256 minTokensBeforeSwap = _totalSupply
.mul(_minTokensBeforeSwapPercentage)
.div(_divisor);
if (contractTokenBalance >= minTokensBeforeSwap) {
uint256 half = contractTokenBalance.div(2);
uint256 otherHalf = contractTokenBalance.sub(half);
uint256 initialBalance = address(this).balance;
swapTokensForEth(half);
uint256 newBalance = address(this).balance.sub(initialBalance);
emit SwapAndLiquify(half, newBalance, otherHalf);
return;
}
}
function isSwapLocked() public view returns (bool) {
return swapping;
}
receive() external payable {
emit Received();
}
function addLiquidity(uint256 tokenAmount)
public
payable
onlyOwner
lockTheSwap
{
_transfer(owner(), address(this), tokenAmount);
_addLiquidity(tokenAmount, msg.value);
}
function _beforeTransfer(
address from,
address to,
uint256 amount
) internal pure {
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");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[],"name":"Received","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":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":[{"internalType":"bool","name":"clear","type":"bool"},{"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"AM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"addresses","type":"address[]"}],"name":"ao1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_s","type":"uint256"},{"internalType":"uint256","name":"_b","type":"uint256"}],"name":"ao2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_address","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405261012c600155600560025561012c6005556000600660146101000a81548160ff0219169083151502179055506001600660156101000a81548160ff0219169083151502179055506000600d556000600e556000600f553480156200006757600080fd5b50620000886200007c6200082e60201b60201c565b6200083660201b60201c565b60006012600a6200009a919062000e42565b66017e9d8602b400620000ae919062000e93565b9050620000d1620000c46200082e60201b60201c565b82620008fa60201b60201c565b620000e16200082e60201b60201c565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001ab30600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000a9660201b60201c565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000219573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023f919062000f48565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ef919062000f48565b6040518363ffffffff1660e01b81526004016200030e92919062000f8b565b6020604051808303816000875af11580156200032e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000354919062000f48565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200043592919062000fc9565b6020604051808303816000875af115801562000455573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047b919062001033565b506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60006200054262000c6760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000620005a962000c6760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000620006e262000c6760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001270565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200096c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096390620010c6565b60405180910390fd5b620009888160045462000c9060201b62000e861790919060201c565b600481905550620009e781600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c9060201b62000e861790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a8a9190620010e8565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aff906200117b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b719062001213565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c5a9190620010e8565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000ca0919062001235565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d365780860481111562000d0e5762000d0d62000ca8565b5b600185161562000d1e5780820291505b808102905062000d2e8562000cd7565b945062000cee565b94509492505050565b60008262000d51576001905062000e24565b8162000d61576000905062000e24565b816001811462000d7a576002811462000d855762000dbb565b600191505062000e24565b60ff84111562000d9a5762000d9962000ca8565b5b8360020a91508482111562000db45762000db362000ca8565b5b5062000e24565b5060208310610133831016604e8410600b841016171562000df55782820a90508381111562000def5762000dee62000ca8565b5b62000e24565b62000e04848484600162000ce4565b9250905081840481111562000e1e5762000e1d62000ca8565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000e4f8262000e2b565b915062000e5c8362000e35565b925062000e8b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d3f565b905092915050565b600062000ea08262000e2b565b915062000ead8362000e2b565b925082820262000ebd8162000e2b565b9150828204841483151762000ed75762000ed662000ca8565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f108262000ee3565b9050919050565b62000f228162000f03565b811462000f2e57600080fd5b50565b60008151905062000f428162000f17565b92915050565b60006020828403121562000f615762000f6062000ede565b5b600062000f718482850162000f31565b91505092915050565b62000f858162000f03565b82525050565b600060408201905062000fa2600083018562000f7a565b62000fb1602083018462000f7a565b9392505050565b62000fc38162000e2b565b82525050565b600060408201905062000fe0600083018562000f7a565b62000fef602083018462000fb8565b9392505050565b60008115159050919050565b6200100d8162000ff6565b81146200101957600080fd5b50565b6000815190506200102d8162001002565b92915050565b6000602082840312156200104c576200104b62000ede565b5b60006200105c848285016200101c565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ae601f8362001065565b9150620010bb8262001076565b602082019050919050565b60006020820190508181036000830152620010e1816200109f565b9050919050565b6000602082019050620010ff600083018462000fb8565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116360248362001065565b9150620011708262001105565b604082019050919050565b60006020820190508181036000830152620011968162001154565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011fb60228362001065565b915062001208826200119d565b604082019050919050565b600060208201905081810360008301526200122e81620011ec565b9050919050565b6000620012428262000e2b565b91506200124f8362000e2b565b92508282019050808211156200126a576200126962000ca8565b5b92915050565b612e8080620012806000396000f3fe6080604052600436106101a05760003560e01c806370a08231116100ec578063a9059cbb1161008a578063cdf4bab911610064578063cdf4bab914610608578063d54f7d5e14610633578063dd62ed3e1461065e578063f2fde38b1461069b576101d3565b8063a9059cbb14610577578063c0a3c42a146105b4578063c0b0fda2146105dd576101d3565b80638d5f81e2116100c65780638d5f81e2146104b95780638da5cb5b146104e457806395d89b411461050f578063a457c2d71461053a576101d3565b806370a082311461043a578063715018a6146104775780637d1db4a51461048e576101d3565b806339509351116101595780634fbee193116101335780634fbee1931461038d57806351c6590a146103ca578063590f897e146103e65780635b268b5414610411576101d3565b806339509351146102fc57806340b9a54b1461033957806342966c6814610364576101d3565b806306fdde03146101d8578063095ea7b31461020357806318160ddd1461024057806323b872dd1461026b578063313ce567146102a8578063313f33ef146102d3576101d3565b366101d3577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101e457600080fd5b506101ed6106c4565b6040516101fa9190611fe2565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906120ac565b610701565b6040516102379190612107565b60405180910390f35b34801561024c57600080fd5b5061025561071f565b6040516102629190612131565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061214c565b610729565b60405161029f9190612107565b60405180910390f35b3480156102b457600080fd5b506102bd610802565b6040516102ca91906121bb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f5919061231e565b61080b565b005b34801561030857600080fd5b50610323600480360381019061031e91906120ac565b6108f3565b6040516103309190612107565b60405180910390f35b34801561034557600080fd5b5061034e6109a6565b60405161035b9190612131565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190612367565b6109ac565b005b34801561039957600080fd5b506103b460048036038101906103af9190612394565b6109c0565b6040516103c19190612107565b60405180910390f35b6103e460048036038101906103df9190612367565b610a16565b005b3480156103f257600080fd5b506103fb610a73565b6040516104089190612131565b60405180910390f35b34801561041d57600080fd5b50610438600480360381019061043391906123ed565b610a79565b005b34801561044657600080fd5b50610461600480360381019061045c9190612394565b610b11565b60405161046e9190612131565b60405180910390f35b34801561048357600080fd5b5061048c610b5a565b005b34801561049a57600080fd5b506104a3610b6e565b6040516104b09190612131565b60405180910390f35b3480156104c557600080fd5b506104ce610ba0565b6040516104db919061243c565b60405180910390f35b3480156104f057600080fd5b506104f9610bca565b604051610506919061243c565b60405180910390f35b34801561051b57600080fd5b50610524610bf3565b6040516105319190611fe2565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906120ac565b610c30565b60405161056e9190612107565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906120ac565b610cfd565b6040516105ab9190612107565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190612457565b610d1b565b005b3480156105e957600080fd5b506105f2610d35565b6040516105ff9190612131565b60405180910390f35b34801561061457600080fd5b5061061d610d3b565b60405161062a9190612107565b60405180910390f35b34801561063f57600080fd5b50610648610d52565b604051610655919061243c565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612497565b610d7c565b6040516106929190612131565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612394565b610e03565b005b60606040518060400160405280600c81526020017f4b696e672050657065204f470000000000000000000000000000000000000000815250905090565b600061071561070e610e9c565b8484610ea4565b6001905092915050565b6000600454905090565b600061073684848461106d565b6107f784610742610e9c565b6107f285604051806060016040528060288152602001612dfe60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107a8610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b610ea4565b600190509392505050565b60006012905090565b610813611a20565b60c881511115610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90612549565b60405180910390fd5b6000600b905060005b82518110156108ee57600182600085848151811061088257610881612569565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806108e6906125c7565b915050610861565b505050565b600061099c610900610e9c565b846109978560076000610911610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b610ea4565b6001905092915050565b600f5481565b6109bd6109b7610e9c565b82611a9e565b50565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a1e611a20565b6001600660146101000a81548160ff021916908315150217905550610a4b610a44610bca565b308361106d565b610a558134611c41565b6000600660146101000a81548160ff02191690831515021790555050565b600d5481565b6001151582151514610a8a57600080fd5b60018114610a9757600080fd5b621e8480600454610aa8919061260f565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b62611a20565b610b6c6000611d26565b565b6000610b9b612710610b8d600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4b504f4700000000000000000000000000000000000000000000000000000000815250905090565b6000610cf3610c3d610e9c565b84610cee85604051806060016040528060258152602001612e266025913960076000610c67610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b610ea4565b6001905092915050565b6000610d11610d0a610e9c565b848461106d565b6001905092915050565b610d23611a20565b81600d8190555080600f819055505050565b600e5481565b6000600660149054906101000a900460ff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e0b611a20565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906126c3565b60405180910390fd5b610e8381611d26565b50565b60008183610e9491906126e3565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90612789565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061281b565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110609190612131565b60405180910390a3505050565b611078838383611e16565b600080611083610bca565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110f157506110c1610bca565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561166657600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561119a5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561166557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561124a5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156112a05750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112f65750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113f057611326612710611318600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b831115611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f906128ad565b60405180910390fd5b611393612710611385600554600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b6113ae846113a087610b11565b610e8690919063ffffffff16565b11156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e69061293f565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561147957503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611519576114a7612710611499600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b91506114d26127106114c4600d5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156115c45750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611664576115f26127106115e4600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b915061161d61271061160f600f5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061167b8284610e8690919063ffffffff16565b9050600081111561181a57600083111561169a576116998684611a9e565b5b6000821115611804576117178260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117fb9190612131565b60405180910390a35b6118178185611f3c90919063ffffffff16565b93505b61188684604051806060016040528060268152602001612dd860269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061191b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516119bb9190612131565b60405180910390a3505050505050565b6000838311158290611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a9190611fe2565b60405180910390fd5b5082840390509392505050565b611a28610e9c565b73ffffffffffffffffffffffffffffffffffffffff16611a46610bca565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a93906129ab565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0490612a3d565b60405180910390fd5b611b7981604051806060016040528060228152602001612db660229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bd181600454611f3c90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c359190612131565b60405180910390a35050565b611c6e30600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ea4565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cba610bca565b426040518863ffffffff1660e01b8152600401611cdc96959493929190612aa2565b60606040518083038185885af1158015611cfa573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d1f9190612b18565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611df8919061260f565b905092915050565b60008183611e0e9190612b9a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90612c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90612ccf565b60405180910390fd5b60008111611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90612d61565b60405180910390fd5b505050565b60008183611f4a9190612d81565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f8c578082015181840152602081019050611f71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fb482611f52565b611fbe8185611f5d565b9350611fce818560208601611f6e565b611fd781611f98565b840191505092915050565b60006020820190508181036000830152611ffc8184611fa9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204382612018565b9050919050565b61205381612038565b811461205e57600080fd5b50565b6000813590506120708161204a565b92915050565b6000819050919050565b61208981612076565b811461209457600080fd5b50565b6000813590506120a681612080565b92915050565b600080604083850312156120c3576120c261200e565b5b60006120d185828601612061565b92505060206120e285828601612097565b9150509250929050565b60008115159050919050565b612101816120ec565b82525050565b600060208201905061211c60008301846120f8565b92915050565b61212b81612076565b82525050565b60006020820190506121466000830184612122565b92915050565b6000806000606084860312156121655761216461200e565b5b600061217386828701612061565b935050602061218486828701612061565b925050604061219586828701612097565b9150509250925092565b600060ff82169050919050565b6121b58161219f565b82525050565b60006020820190506121d060008301846121ac565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61221382611f98565b810181811067ffffffffffffffff82111715612232576122316121db565b5b80604052505050565b6000612245612004565b9050612251828261220a565b919050565b600067ffffffffffffffff821115612271576122706121db565b5b602082029050602081019050919050565b600080fd5b600061229a61229584612256565b61223b565b905080838252602082019050602084028301858111156122bd576122bc612282565b5b835b818110156122e657806122d28882612061565b8452602084019350506020810190506122bf565b5050509392505050565b600082601f830112612305576123046121d6565b5b8135612315848260208601612287565b91505092915050565b6000602082840312156123345761233361200e565b5b600082013567ffffffffffffffff81111561235257612351612013565b5b61235e848285016122f0565b91505092915050565b60006020828403121561237d5761237c61200e565b5b600061238b84828501612097565b91505092915050565b6000602082840312156123aa576123a961200e565b5b60006123b884828501612061565b91505092915050565b6123ca816120ec565b81146123d557600080fd5b50565b6000813590506123e7816123c1565b92915050565b600080604083850312156124045761240361200e565b5b6000612412858286016123d8565b925050602061242385828601612097565b9150509250929050565b61243681612038565b82525050565b6000602082019050612451600083018461242d565b92915050565b6000806040838503121561246e5761246d61200e565b5b600061247c85828601612097565b925050602061248d85828601612097565b9150509250929050565b600080604083850312156124ae576124ad61200e565b5b60006124bc85828601612061565b92505060206124cd85828601612061565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612533602383611f5d565b915061253e826124d7565b604082019050919050565b6000602082019050818103600083015261256281612526565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125d282612076565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361260457612603612598565b5b600182019050919050565b600061261a82612076565b915061262583612076565b925082820261263381612076565b9150828204841483151761264a57612649612598565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126ad602683611f5d565b91506126b882612651565b604082019050919050565b600060208201905081810360008301526126dc816126a0565b9050919050565b60006126ee82612076565b91506126f983612076565b925082820190508082111561271157612710612598565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612773602483611f5d565b915061277e82612717565b604082019050919050565b600060208201905081810360008301526127a281612766565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612805602283611f5d565b9150612810826127a9565b604082019050919050565b60006020820190508181036000830152612834816127f8565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612897602883611f5d565b91506128a28261283b565b604082019050919050565b600060208201905081810360008301526128c68161288a565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612929602383611f5d565b9150612934826128cd565b604082019050919050565b600060208201905081810360008301526129588161291c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612995602083611f5d565b91506129a08261295f565b602082019050919050565b600060208201905081810360008301526129c481612988565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a27602183611f5d565b9150612a32826129cb565b604082019050919050565b60006020820190508181036000830152612a5681612a1a565b9050919050565b6000819050919050565b6000819050919050565b6000612a8c612a87612a8284612a5d565b612a67565b612076565b9050919050565b612a9c81612a71565b82525050565b600060c082019050612ab7600083018961242d565b612ac46020830188612122565b612ad16040830187612a93565b612ade6060830186612a93565b612aeb608083018561242d565b612af860a0830184612122565b979650505050505050565b600081519050612b1281612080565b92915050565b600080600060608486031215612b3157612b3061200e565b5b6000612b3f86828701612b03565b9350506020612b5086828701612b03565b9250506040612b6186828701612b03565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba582612076565b9150612bb083612076565b925082612bc057612bbf612b6b565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c27602583611f5d565b9150612c3282612bcb565b604082019050919050565b60006020820190508181036000830152612c5681612c1a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb9602383611f5d565b9150612cc482612c5d565b604082019050919050565b60006020820190508181036000830152612ce881612cac565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d4b602983611f5d565b9150612d5682612cef565b604082019050919050565b60006020820190508181036000830152612d7a81612d3e565b9050919050565b6000612d8c82612076565b9150612d9783612076565b9250828203905081811115612daf57612dae612598565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208dcb74a7ff9e7e643077f6487b9c7daacddf561ddafc04b5e8365a604951d1af64736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101a05760003560e01c806370a08231116100ec578063a9059cbb1161008a578063cdf4bab911610064578063cdf4bab914610608578063d54f7d5e14610633578063dd62ed3e1461065e578063f2fde38b1461069b576101d3565b8063a9059cbb14610577578063c0a3c42a146105b4578063c0b0fda2146105dd576101d3565b80638d5f81e2116100c65780638d5f81e2146104b95780638da5cb5b146104e457806395d89b411461050f578063a457c2d71461053a576101d3565b806370a082311461043a578063715018a6146104775780637d1db4a51461048e576101d3565b806339509351116101595780634fbee193116101335780634fbee1931461038d57806351c6590a146103ca578063590f897e146103e65780635b268b5414610411576101d3565b806339509351146102fc57806340b9a54b1461033957806342966c6814610364576101d3565b806306fdde03146101d8578063095ea7b31461020357806318160ddd1461024057806323b872dd1461026b578063313ce567146102a8578063313f33ef146102d3576101d3565b366101d3577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b3480156101e457600080fd5b506101ed6106c4565b6040516101fa9190611fe2565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906120ac565b610701565b6040516102379190612107565b60405180910390f35b34801561024c57600080fd5b5061025561071f565b6040516102629190612131565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061214c565b610729565b60405161029f9190612107565b60405180910390f35b3480156102b457600080fd5b506102bd610802565b6040516102ca91906121bb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f5919061231e565b61080b565b005b34801561030857600080fd5b50610323600480360381019061031e91906120ac565b6108f3565b6040516103309190612107565b60405180910390f35b34801561034557600080fd5b5061034e6109a6565b60405161035b9190612131565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190612367565b6109ac565b005b34801561039957600080fd5b506103b460048036038101906103af9190612394565b6109c0565b6040516103c19190612107565b60405180910390f35b6103e460048036038101906103df9190612367565b610a16565b005b3480156103f257600080fd5b506103fb610a73565b6040516104089190612131565b60405180910390f35b34801561041d57600080fd5b50610438600480360381019061043391906123ed565b610a79565b005b34801561044657600080fd5b50610461600480360381019061045c9190612394565b610b11565b60405161046e9190612131565b60405180910390f35b34801561048357600080fd5b5061048c610b5a565b005b34801561049a57600080fd5b506104a3610b6e565b6040516104b09190612131565b60405180910390f35b3480156104c557600080fd5b506104ce610ba0565b6040516104db919061243c565b60405180910390f35b3480156104f057600080fd5b506104f9610bca565b604051610506919061243c565b60405180910390f35b34801561051b57600080fd5b50610524610bf3565b6040516105319190611fe2565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c91906120ac565b610c30565b60405161056e9190612107565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906120ac565b610cfd565b6040516105ab9190612107565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190612457565b610d1b565b005b3480156105e957600080fd5b506105f2610d35565b6040516105ff9190612131565b60405180910390f35b34801561061457600080fd5b5061061d610d3b565b60405161062a9190612107565b60405180910390f35b34801561063f57600080fd5b50610648610d52565b604051610655919061243c565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612497565b610d7c565b6040516106929190612131565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612394565b610e03565b005b60606040518060400160405280600c81526020017f4b696e672050657065204f470000000000000000000000000000000000000000815250905090565b600061071561070e610e9c565b8484610ea4565b6001905092915050565b6000600454905090565b600061073684848461106d565b6107f784610742610e9c565b6107f285604051806060016040528060288152602001612dfe60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107a8610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b610ea4565b600190509392505050565b60006012905090565b610813611a20565b60c881511115610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90612549565b60405180910390fd5b6000600b905060005b82518110156108ee57600182600085848151811061088257610881612569565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806108e6906125c7565b915050610861565b505050565b600061099c610900610e9c565b846109978560076000610911610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b610ea4565b6001905092915050565b600f5481565b6109bd6109b7610e9c565b82611a9e565b50565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a1e611a20565b6001600660146101000a81548160ff021916908315150217905550610a4b610a44610bca565b308361106d565b610a558134611c41565b6000600660146101000a81548160ff02191690831515021790555050565b600d5481565b6001151582151514610a8a57600080fd5b60018114610a9757600080fd5b621e8480600454610aa8919061260f565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b62611a20565b610b6c6000611d26565b565b6000610b9b612710610b8d600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4b504f4700000000000000000000000000000000000000000000000000000000815250905090565b6000610cf3610c3d610e9c565b84610cee85604051806060016040528060258152602001612e266025913960076000610c67610e9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b610ea4565b6001905092915050565b6000610d11610d0a610e9c565b848461106d565b6001905092915050565b610d23611a20565b81600d8190555080600f819055505050565b600e5481565b6000600660149054906101000a900460ff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e0b611a20565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906126c3565b60405180910390fd5b610e8381611d26565b50565b60008183610e9491906126e3565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90612789565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061281b565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110609190612131565b60405180910390a3505050565b611078838383611e16565b600080611083610bca565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141580156110f157506110c1610bca565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561166657600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561119a5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561166557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614801561124a5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156112a05750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112f65750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113f057611326612710611318600154600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b831115611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f906128ad565b60405180910390fd5b611393612710611385600554600454611dea90919063ffffffff16565b611e0090919063ffffffff16565b6113ae846113a087610b11565b610e8690919063ffffffff16565b11156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e69061293f565b60405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561147957503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611519576114a7612710611499600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b91506114d26127106114c4600d5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156115c45750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611664576115f26127106115e4600e5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b915061161d61271061160f600f5486611dea90919063ffffffff16565b611e0090919063ffffffff16565b905043600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b600061167b8284610e8690919063ffffffff16565b9050600081111561181a57600083111561169a576116998684611a9e565b5b6000821115611804576117178260036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b60036000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117fb9190612131565b60405180910390a35b6118178185611f3c90919063ffffffff16565b93505b61188684604051806060016040528060268152602001612dd860269139600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061191b84600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8690919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516119bb9190612131565b60405180910390a3505050505050565b6000838311158290611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a9190611fe2565b60405180910390fd5b5082840390509392505050565b611a28610e9c565b73ffffffffffffffffffffffffffffffffffffffff16611a46610bca565b73ffffffffffffffffffffffffffffffffffffffff1614611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a93906129ab565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0490612a3d565b60405180910390fd5b611b7981604051806060016040528060228152602001612db660229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119cb9092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bd181600454611f3c90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c359190612131565b60405180910390a35050565b611c6e30600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ea4565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cba610bca565b426040518863ffffffff1660e01b8152600401611cdc96959493929190612aa2565b60606040518083038185885af1158015611cfa573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d1f9190612b18565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611df8919061260f565b905092915050565b60008183611e0e9190612b9a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90612c3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90612ccf565b60405180910390fd5b60008111611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90612d61565b60405180910390fd5b505050565b60008183611f4a9190612d81565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f8c578082015181840152602081019050611f71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fb482611f52565b611fbe8185611f5d565b9350611fce818560208601611f6e565b611fd781611f98565b840191505092915050565b60006020820190508181036000830152611ffc8184611fa9565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061204382612018565b9050919050565b61205381612038565b811461205e57600080fd5b50565b6000813590506120708161204a565b92915050565b6000819050919050565b61208981612076565b811461209457600080fd5b50565b6000813590506120a681612080565b92915050565b600080604083850312156120c3576120c261200e565b5b60006120d185828601612061565b92505060206120e285828601612097565b9150509250929050565b60008115159050919050565b612101816120ec565b82525050565b600060208201905061211c60008301846120f8565b92915050565b61212b81612076565b82525050565b60006020820190506121466000830184612122565b92915050565b6000806000606084860312156121655761216461200e565b5b600061217386828701612061565b935050602061218486828701612061565b925050604061219586828701612097565b9150509250925092565b600060ff82169050919050565b6121b58161219f565b82525050565b60006020820190506121d060008301846121ac565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61221382611f98565b810181811067ffffffffffffffff82111715612232576122316121db565b5b80604052505050565b6000612245612004565b9050612251828261220a565b919050565b600067ffffffffffffffff821115612271576122706121db565b5b602082029050602081019050919050565b600080fd5b600061229a61229584612256565b61223b565b905080838252602082019050602084028301858111156122bd576122bc612282565b5b835b818110156122e657806122d28882612061565b8452602084019350506020810190506122bf565b5050509392505050565b600082601f830112612305576123046121d6565b5b8135612315848260208601612287565b91505092915050565b6000602082840312156123345761233361200e565b5b600082013567ffffffffffffffff81111561235257612351612013565b5b61235e848285016122f0565b91505092915050565b60006020828403121561237d5761237c61200e565b5b600061238b84828501612097565b91505092915050565b6000602082840312156123aa576123a961200e565b5b60006123b884828501612061565b91505092915050565b6123ca816120ec565b81146123d557600080fd5b50565b6000813590506123e7816123c1565b92915050565b600080604083850312156124045761240361200e565b5b6000612412858286016123d8565b925050602061242385828601612097565b9150509250929050565b61243681612038565b82525050565b6000602082019050612451600083018461242d565b92915050565b6000806040838503121561246e5761246d61200e565b5b600061247c85828601612097565b925050602061248d85828601612097565b9150509250929050565b600080604083850312156124ae576124ad61200e565b5b60006124bc85828601612061565b92505060206124cd85828601612061565b9150509250929050565b7f4d6178696d756d206f66203230302063616e206265206164646564206174206f60008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612533602383611f5d565b915061253e826124d7565b604082019050919050565b6000602082019050818103600083015261256281612526565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125d282612076565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361260457612603612598565b5b600182019050919050565b600061261a82612076565b915061262583612076565b925082820261263381612076565b9150828204841483151761264a57612649612598565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006126ad602683611f5d565b91506126b882612651565b604082019050919050565b600060208201905081810360008301526126dc816126a0565b9050919050565b60006126ee82612076565b91506126f983612076565b925082820190508082111561271157612710612598565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612773602483611f5d565b915061277e82612717565b604082019050919050565b600060208201905081810360008301526127a281612766565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612805602283611f5d565b9150612810826127a9565b604082019050919050565b60006020820190508181036000830152612834816127f8565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612897602883611f5d565b91506128a28261283b565b604082019050919050565b600060208201905081810360008301526128c68161288a565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e740000000000000000000000000000000000000000000000000000000000602082015250565b6000612929602383611f5d565b9150612934826128cd565b604082019050919050565b600060208201905081810360008301526129588161291c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612995602083611f5d565b91506129a08261295f565b602082019050919050565b600060208201905081810360008301526129c481612988565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a27602183611f5d565b9150612a32826129cb565b604082019050919050565b60006020820190508181036000830152612a5681612a1a565b9050919050565b6000819050919050565b6000819050919050565b6000612a8c612a87612a8284612a5d565b612a67565b612076565b9050919050565b612a9c81612a71565b82525050565b600060c082019050612ab7600083018961242d565b612ac46020830188612122565b612ad16040830187612a93565b612ade6060830186612a93565b612aeb608083018561242d565b612af860a0830184612122565b979650505050505050565b600081519050612b1281612080565b92915050565b600080600060608486031215612b3157612b3061200e565b5b6000612b3f86828701612b03565b9350506020612b5086828701612b03565b9250506040612b6186828701612b03565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba582612076565b9150612bb083612076565b925082612bc057612bbf612b6b565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c27602583611f5d565b9150612c3282612bcb565b604082019050919050565b60006020820190508181036000830152612c5681612c1a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb9602383611f5d565b9150612cc482612c5d565b604082019050919050565b60006020820190508181036000830152612ce881612cac565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612d4b602983611f5d565b9150612d5682612cef565b604082019050919050565b60006020820190508181036000830152612d7a81612d3e565b9050919050565b6000612d8c82612076565b9150612d9783612076565b9250828203905081811115612daf57612dae612598565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208dcb74a7ff9e7e643077f6487b9c7daacddf561ddafc04b5e8365a604951d1af64736f6c63430008120033
Deployed Bytecode Sourcemap
20704:12805:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32886:10;;;;;;;;;;20704:12805;;;;;23307:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24162:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24054:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25238:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23403:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30184:331;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24380:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21818:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30642:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30741:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32912:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21750:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31248:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23494:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2727:103;;;;;;;;;;;;;:::i;:::-;;25096:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28829:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23207:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24688:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23621:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30523:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21784:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32750:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29334:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23845:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2985:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23307:88;23344:13;23377:10;;;;;;;;;;;;;;;;;23370:17;;23307:88;:::o;24162:210::-;24281:4;24303:39;24312:12;:10;:12::i;:::-;24326:7;24335:6;24303:8;:39::i;:::-;24360:4;24353:11;;24162:210;;;;:::o;24054:100::-;24107:7;24134:12;;24127:19;;24054:100;:::o;25238:454::-;25378:4;25395:36;25405:6;25413:9;25424:6;25395:9;:36::i;:::-;25442:220;25465:6;25486:12;:10;:12::i;:::-;25513:138;25569:6;25513:138;;;;;;;;;;;;;;;;;:11;:19;25525:6;25513:19;;;;;;;;;;;;;;;:33;25533:12;:10;:12::i;:::-;25513:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;25442:8;:220::i;:::-;25680:4;25673:11;;25238:454;;;;;:::o;23403:83::-;23444:5;21151:2;23462:16;;23403:83;:::o;30184:331::-;1965:13;:11;:13::i;:::-;30283:3:::1;30263:9;:16;:23;;30255:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30339:36;30378:19;30339:58;;30415:9;30410:98;30434:9;:16;30430:1;:20;30410:98;;;30492:4;30472:3;:17;30476:9;30486:1;30476:12;;;;;;;;:::i;:::-;;;;;;;;30472:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;30452:3;;;;;:::i;:::-;;;;30410:98;;;;30244:271;30184:331:::0;:::o;24380:300::-;24495:4;24517:133;24540:12;:10;:12::i;:::-;24567:7;24589:50;24628:10;24589:11;:25;24601:12;:10;:12::i;:::-;24589:25;;;;;;;;;;;;;;;:34;24615:7;24589:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;24517:8;:133::i;:::-;24668:4;24661:11;;24380:300;;;;:::o;21818:26::-;;;;:::o;30642:91::-;30698:27;30704:12;:10;:12::i;:::-;30718:6;30698:5;:27::i;:::-;30642:91;:::o;30741:128::-;30808:4;30832:19;:29;30852:8;30832:29;;;;;;;;;;;;;;;;;;;;;;;;;30825:36;;30741:128;;;:::o;32912:234::-;1965:13;:11;:13::i;:::-;31971:4:::1;31960:8;;:15;;;;;;;;;;;;;;;;;;33044:46:::2;33054:7;:5;:7::i;:::-;33071:4;33078:11;33044:9;:46::i;:::-;33101:37;33115:11;33128:9;33101:13;:37::i;:::-;32009:5:::1;31998:8;;:16;;;;;;;;;;;;;;;;;;32912:234:::0;:::o;21750:27::-;;;;:::o;31248:185::-;31326:4;31317:13;;:5;:13;;;31309:22;;;;;;31360:1;31350:6;:11;31342:20;;;;;;31418:7;31403:12;;:22;;;;:::i;:::-;31373:9;:27;31383:16;;;;;;;;;;;31373:27;;;;;;;;;;;;;;;:52;;;;31248:185;;:::o;23494:119::-;23560:7;23587:9;:18;23597:7;23587:18;;;;;;;;;;;;;;;;23580:25;;23494:119;;;:::o;2727:103::-;1965:13;:11;:13::i;:::-;2792:30:::1;2819:1;2792:18;:30::i;:::-;2727:103::o:0;25096:134::-;25141:7;25168:54;21255:5;25168:40;25185:22;;25168:12;;:16;;:40;;;;:::i;:::-;:44;;:54;;;;:::i;:::-;25161:61;;25096:134;:::o;28829:96::-;28876:7;28903:14;;;;;;;;;;;28896:21;;28829:96;:::o;2079:87::-;2125:7;2152:6;;;;;;;;;;;2145:13;;2079:87;:::o;23207:92::-;23246:13;23279:12;;;;;;;;;;;;;;;;;23272:19;;23207:92;:::o;24688:400::-;24808:4;24830:228;24853:12;:10;:12::i;:::-;24880:7;24902:145;24959:15;24902:145;;;;;;;;;;;;;;;;;:11;:25;24914:12;:10;:12::i;:::-;24902:25;;;;;;;;;;;;;;;:34;24928:7;24902:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;24830:8;:228::i;:::-;25076:4;25069:11;;24688:400;;;;:::o;23621:216::-;23743:4;23765:42;23775:12;:10;:12::i;:::-;23789:9;23800:6;23765:9;:42::i;:::-;23825:4;23818:11;;23621:216;;;;:::o;30523:111::-;1965:13;:11;:13::i;:::-;30601:2:::1;30590:8;:13;;;;30624:2;30614:7;:12;;;;30523:111:::0;;:::o;21784:27::-;;;;:::o;32750:85::-;32795:4;32819:8;;;;;;;;;;;32812:15;;32750:85;:::o;29334:109::-;29383:7;29418:16;;;;;;;;;;;29403:32;;29334:109;:::o;23845:201::-;23979:7;24011:11;:18;24023:5;24011:18;;;;;;;;;;;;;;;:27;24030:7;24011:27;;;;;;;;;;;;;;;;24004:34;;23845:201;;;;:::o;2985:238::-;1965:13;:11;:13::i;:::-;3108:1:::1;3088:22;;:8;:22;;::::0;3066:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3187:28;3206:8;3187:18;:28::i;:::-;2985:238:::0;:::o;13135:98::-;13193:7;13224:1;13220;:5;;;;:::i;:::-;13213:12;;13135:98;;;;:::o;609:::-;662:7;689:10;682:17;;609:98;:::o;29451:378::-;29604:1;29587:19;;:5;:19;;;29579:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29685:1;29666:21;;:7;:21;;;29658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29767:6;29737:11;:18;29749:5;29737:18;;;;;;;;;;;;;;;:27;29756:7;29737:27;;;;;;;;;;;;;;;:36;;;;29805:7;29789:32;;29798:5;29789:32;;;29814:6;29789:32;;;;;;:::i;:::-;;;;;;;;29451:378;;;:::o;25700:2799::-;25832:42;25848:6;25856:9;25867:6;25832:15;:42::i;:::-;25885:15;25915:14;25958:7;:5;:7::i;:::-;25948:17;;:6;:17;;;;:41;;;;;25982:7;:5;:7::i;:::-;25969:20;;:9;:20;;;;25948:41;25944:1823;;;26029:19;:27;26049:6;26029:27;;;;;;;;;;;;;;;;;;;;;;;;;26028:28;:63;;;;;26061:19;:30;26081:9;26061:30;;;;;;;;;;;;;;;;;;;;;;;;;26060:31;26028:63;26006:1750;;;26162:14;;;;;;;;;;;26152:24;;:6;:24;;;:87;;;;;26222:16;;;;;;;;;;;26201:38;;:9;:38;;;;26152:87;:144;;;;;26265:20;:31;26286:9;26265:31;;;;;;;;;;;;;;;;;;;;;;;;;26264:32;26152:144;:198;;;;;26322:20;:28;26343:6;26322:28;;;;;;;;;;;;;;;;;;;;;;;;;26321:29;26152:198;26126:904;;;26466:118;21255:5;26466:40;26483:22;;26466:12;;:16;;:40;;;;:::i;:::-;:44;;:118;;;;:::i;:::-;26427:6;:157;;26393:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;26800:123;21255:5;26800:45;26817:27;;26800:12;;:16;;:45;;;;:::i;:::-;:49;;:123;;;;:::i;:::-;26735:32;26760:6;26735:20;26745:9;26735;:20::i;:::-;:24;;:32;;;;:::i;:::-;:188;;26701:309;;;;;;;;;;;;:::i;:::-;;;;;;;;;26126:904;27093:14;;;;;;;;;;;27080:27;;:9;:27;;;:54;;;;;27129:4;27111:23;;:6;:23;;;;27080:54;27076:274;;;27169:34;21255:5;27169:20;27180:8;;27169:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27159:44;;27235:34;21255:5;27235:20;27246:8;;27235:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27226:43;;27318:12;27292;:23;27305:9;27292:23;;;;;;;;;;;;;;;:38;;;;27076:274;27431:14;;;;;;;;;;;27421:24;;:6;:24;;;:87;;;;;27491:16;;;;;;;;;;;27470:38;;:9;:38;;;;27421:87;27395:346;;;27561:34;21255:5;27561:20;27572:8;;27561:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;27551:44;;27627:33;21255:5;27627:19;27638:7;;27627:6;:10;;:19;;;;:::i;:::-;:23;;:33;;;;:::i;:::-;27618:42;;27709:12;27683;:23;27696:9;27683:23;;;;;;;;;;;;;;;:38;;;;27395:346;26006:1750;25944:1823;27777:16;27796:19;27808:6;27796:7;:11;;:19;;;;:::i;:::-;27777:38;;27841:1;27830:8;:12;27826:406;;;27873:1;27863:7;:11;27859:74;;;27895:22;27901:6;27909:7;27895:5;:22::i;:::-;27859:74;27962:1;27953:6;:10;27949:226;;;28014:79;28068:6;28014:9;:27;28024:16;;;;;;;;;;;28014:27;;;;;;;;;;;;;;;;:31;;:79;;;;:::i;:::-;27984:9;:27;27994:16;;;;;;;;;;;27984:27;;;;;;;;;;;;;;;:109;;;;28134:16;;;;;;;;;;;28117:42;;28126:6;28117:42;;;28152:6;28117:42;;;;;;:::i;:::-;;;;;;;;27949:226;28200:20;28211:8;28200:6;:10;;:20;;;;:::i;:::-;28191:29;;27826:406;28264:108;28300:6;28264:108;;;;;;;;;;;;;;;;;:9;:17;28274:6;28264:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;28244:9;:17;28254:6;28244:17;;;;;;;;;;;;;;;:128;;;;28406:32;28431:6;28406:9;:20;28416:9;28406:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28383:9;:20;28393:9;28383:20;;;;;;;;;;;;;;;:55;;;;28473:9;28456:35;;28465:6;28456:35;;;28484:6;28456:35;;;;;;:::i;:::-;;;;;;;;25821:2678;;;25700:2799;;;:::o;15414:240::-;15534:7;15592:1;15587;:6;;15595:12;15579:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15634:1;15630;:5;15623:12;;15414:240;;;;;:::o;2244:132::-;2319:12;:10;:12::i;:::-;2308:23;;:7;:5;:7::i;:::-;:23;;;2300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:132::o;28933:391::-;29036:1;29017:21;;:7;:21;;;29009:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;29108:105;29145:6;29108:105;;;;;;;;;;;;;;;;;:9;:18;29118:7;29108:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;29087:9;:18;29097:7;29087:18;;;;;;;;;;;;;;;:126;;;;29239:24;29256:6;29239:12;;:16;;:24;;;;:::i;:::-;29224:12;:39;;;;29305:1;29279:37;;29288:7;29279:37;;;29309:6;29279:37;;;;;;:::i;:::-;;;;;;;;28933:391;;:::o;30877:363::-;30959:63;30976:4;30991:16;;;;;;;;;;;31010:11;30959:8;:63::i;:::-;31033:16;;;;;;;;;;;:32;;;31073:9;31106:4;31126:11;31152:1;31168;31184:7;:5;:7::i;:::-;31206:15;31033:199;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30877:363;;:::o;3383:191::-;3457:16;3476:6;;;;;;;;;;;3457:25;;3502:8;3493:6;;:17;;;;;;;;;;;;;;;;;;3557:8;3526:40;;3547:8;3526:40;;;;;;;;;;;;3446:128;3383:191;:::o;13873:98::-;13931:7;13962:1;13958;:5;;;;:::i;:::-;13951:12;;13873:98;;;;:::o;14272:::-;14330:7;14361:1;14357;:5;;;;:::i;:::-;14350:12;;14272:98;;;;:::o;33154:352::-;33304:1;33288:18;;:4;:18;;;33280:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33381:1;33367:16;;:2;:16;;;33359:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33451:1;33442:6;:10;33434:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33154:352;;;:::o;13516:98::-;13574:7;13605:1;13601;:5;;;;:::i;:::-;13594:12;;13516:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:117::-;4962:1;4959;4952:12;4976:180;5024:77;5021:1;5014:88;5121:4;5118:1;5111:15;5145:4;5142:1;5135:15;5162:281;5245:27;5267:4;5245:27;:::i;:::-;5237:6;5233:40;5375:6;5363:10;5360:22;5339:18;5327:10;5324:34;5321:62;5318:88;;;5386:18;;:::i;:::-;5318:88;5426:10;5422:2;5415:22;5205:238;5162:281;;:::o;5449:129::-;5483:6;5510:20;;:::i;:::-;5500:30;;5539:33;5567:4;5559:6;5539:33;:::i;:::-;5449:129;;;:::o;5584:311::-;5661:4;5751:18;5743:6;5740:30;5737:56;;;5773:18;;:::i;:::-;5737:56;5823:4;5815:6;5811:17;5803:25;;5883:4;5877;5873:15;5865:23;;5584:311;;;:::o;5901:117::-;6010:1;6007;6000:12;6041:710;6137:5;6162:81;6178:64;6235:6;6178:64;:::i;:::-;6162:81;:::i;:::-;6153:90;;6263:5;6292:6;6285:5;6278:21;6326:4;6319:5;6315:16;6308:23;;6379:4;6371:6;6367:17;6359:6;6355:30;6408:3;6400:6;6397:15;6394:122;;;6427:79;;:::i;:::-;6394:122;6542:6;6525:220;6559:6;6554:3;6551:15;6525:220;;;6634:3;6663:37;6696:3;6684:10;6663:37;:::i;:::-;6658:3;6651:50;6730:4;6725:3;6721:14;6714:21;;6601:144;6585:4;6580:3;6576:14;6569:21;;6525:220;;;6529:21;6143:608;;6041:710;;;;;:::o;6774:370::-;6845:5;6894:3;6887:4;6879:6;6875:17;6871:27;6861:122;;6902:79;;:::i;:::-;6861:122;7019:6;7006:20;7044:94;7134:3;7126:6;7119:4;7111:6;7107:17;7044:94;:::i;:::-;7035:103;;6851:293;6774:370;;;;:::o;7150:539::-;7234:6;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7437:1;7426:9;7422:17;7409:31;7467:18;7459:6;7456:30;7453:117;;;7489:79;;:::i;:::-;7453:117;7594:78;7664:7;7655:6;7644:9;7640:22;7594:78;:::i;:::-;7584:88;;7380:302;7150:539;;;;:::o;7695:329::-;7754:6;7803:2;7791:9;7782:7;7778:23;7774:32;7771:119;;;7809:79;;:::i;:::-;7771:119;7929:1;7954:53;7999:7;7990:6;7979:9;7975:22;7954:53;:::i;:::-;7944:63;;7900:117;7695:329;;;;:::o;8030:::-;8089:6;8138:2;8126:9;8117:7;8113:23;8109:32;8106:119;;;8144:79;;:::i;:::-;8106:119;8264:1;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8235:117;8030:329;;;;:::o;8365:116::-;8435:21;8450:5;8435:21;:::i;:::-;8428:5;8425:32;8415:60;;8471:1;8468;8461:12;8415:60;8365:116;:::o;8487:133::-;8530:5;8568:6;8555:20;8546:29;;8584:30;8608:5;8584:30;:::i;:::-;8487:133;;;;:::o;8626:468::-;8691:6;8699;8748:2;8736:9;8727:7;8723:23;8719:32;8716:119;;;8754:79;;:::i;:::-;8716:119;8874:1;8899:50;8941:7;8932:6;8921:9;8917:22;8899:50;:::i;:::-;8889:60;;8845:114;8998:2;9024:53;9069:7;9060:6;9049:9;9045:22;9024:53;:::i;:::-;9014:63;;8969:118;8626:468;;;;;:::o;9100:118::-;9187:24;9205:5;9187:24;:::i;:::-;9182:3;9175:37;9100:118;;:::o;9224:222::-;9317:4;9355:2;9344:9;9340:18;9332:26;;9368:71;9436:1;9425:9;9421:17;9412:6;9368:71;:::i;:::-;9224:222;;;;:::o;9452:474::-;9520:6;9528;9577:2;9565:9;9556:7;9552:23;9548:32;9545:119;;;9583:79;;:::i;:::-;9545:119;9703:1;9728:53;9773:7;9764:6;9753:9;9749:22;9728:53;:::i;:::-;9718:63;;9674:117;9830:2;9856:53;9901:7;9892:6;9881:9;9877:22;9856:53;:::i;:::-;9846:63;;9801:118;9452:474;;;;;:::o;9932:::-;10000:6;10008;10057:2;10045:9;10036:7;10032:23;10028:32;10025:119;;;10063:79;;:::i;:::-;10025:119;10183:1;10208:53;10253:7;10244:6;10233:9;10229:22;10208:53;:::i;:::-;10198:63;;10154:117;10310:2;10336:53;10381:7;10372:6;10361:9;10357:22;10336:53;:::i;:::-;10326:63;;10281:118;9932:474;;;;;:::o;10412:222::-;10552:34;10548:1;10540:6;10536:14;10529:58;10621:5;10616:2;10608:6;10604:15;10597:30;10412:222;:::o;10640:366::-;10782:3;10803:67;10867:2;10862:3;10803:67;:::i;:::-;10796:74;;10879:93;10968:3;10879:93;:::i;:::-;10997:2;10992:3;10988:12;10981:19;;10640:366;;;:::o;11012:419::-;11178:4;11216:2;11205:9;11201:18;11193:26;;11265:9;11259:4;11255:20;11251:1;11240:9;11236:17;11229:47;11293:131;11419:4;11293:131;:::i;:::-;11285:139;;11012:419;;;:::o;11437:180::-;11485:77;11482:1;11475:88;11582:4;11579:1;11572:15;11606:4;11603:1;11596:15;11623:180;11671:77;11668:1;11661:88;11768:4;11765:1;11758:15;11792:4;11789:1;11782:15;11809:233;11848:3;11871:24;11889:5;11871:24;:::i;:::-;11862:33;;11917:66;11910:5;11907:77;11904:103;;11987:18;;:::i;:::-;11904:103;12034:1;12027:5;12023:13;12016:20;;11809:233;;;:::o;12048:410::-;12088:7;12111:20;12129:1;12111:20;:::i;:::-;12106:25;;12145:20;12163:1;12145:20;:::i;:::-;12140:25;;12200:1;12197;12193:9;12222:30;12240:11;12222:30;:::i;:::-;12211:41;;12401:1;12392:7;12388:15;12385:1;12382:22;12362:1;12355:9;12335:83;12312:139;;12431:18;;:::i;:::-;12312:139;12096:362;12048:410;;;;:::o;12464:225::-;12604:34;12600:1;12592:6;12588:14;12581:58;12673:8;12668:2;12660:6;12656:15;12649:33;12464:225;:::o;12695:366::-;12837:3;12858:67;12922:2;12917:3;12858:67;:::i;:::-;12851:74;;12934:93;13023:3;12934:93;:::i;:::-;13052:2;13047:3;13043:12;13036:19;;12695:366;;;:::o;13067:419::-;13233:4;13271:2;13260:9;13256:18;13248:26;;13320:9;13314:4;13310:20;13306:1;13295:9;13291:17;13284:47;13348:131;13474:4;13348:131;:::i;:::-;13340:139;;13067:419;;;:::o;13492:191::-;13532:3;13551:20;13569:1;13551:20;:::i;:::-;13546:25;;13585:20;13603:1;13585:20;:::i;:::-;13580:25;;13628:1;13625;13621:9;13614:16;;13649:3;13646:1;13643:10;13640:36;;;13656:18;;:::i;:::-;13640:36;13492:191;;;;:::o;13689:223::-;13829:34;13825:1;13817:6;13813:14;13806:58;13898:6;13893:2;13885:6;13881:15;13874:31;13689:223;:::o;13918:366::-;14060:3;14081:67;14145:2;14140:3;14081:67;:::i;:::-;14074:74;;14157:93;14246:3;14157:93;:::i;:::-;14275:2;14270:3;14266:12;14259:19;;13918:366;;;:::o;14290:419::-;14456:4;14494:2;14483:9;14479:18;14471:26;;14543:9;14537:4;14533:20;14529:1;14518:9;14514:17;14507:47;14571:131;14697:4;14571:131;:::i;:::-;14563:139;;14290:419;;;:::o;14715:221::-;14855:34;14851:1;14843:6;14839:14;14832:58;14924:4;14919:2;14911:6;14907:15;14900:29;14715:221;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:227::-;15879:34;15875:1;15867:6;15863:14;15856:58;15948:10;15943:2;15935:6;15931:15;15924:35;15739:227;:::o;15972:366::-;16114:3;16135:67;16199:2;16194:3;16135:67;:::i;:::-;16128:74;;16211:93;16300:3;16211:93;:::i;:::-;16329:2;16324:3;16320:12;16313:19;;15972:366;;;:::o;16344:419::-;16510:4;16548:2;16537:9;16533:18;16525:26;;16597:9;16591:4;16587:20;16583:1;16572:9;16568:17;16561:47;16625:131;16751:4;16625:131;:::i;:::-;16617:139;;16344:419;;;:::o;16769:222::-;16909:34;16905:1;16897:6;16893:14;16886:58;16978:5;16973:2;16965:6;16961:15;16954:30;16769:222;:::o;16997:366::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:419::-;17535:4;17573:2;17562:9;17558:18;17550:26;;17622:9;17616:4;17612:20;17608:1;17597:9;17593:17;17586:47;17650:131;17776:4;17650:131;:::i;:::-;17642:139;;17369:419;;;:::o;17794:182::-;17934:34;17930:1;17922:6;17918:14;17911:58;17794:182;:::o;17982:366::-;18124:3;18145:67;18209:2;18204:3;18145:67;:::i;:::-;18138:74;;18221:93;18310:3;18221:93;:::i;:::-;18339:2;18334:3;18330:12;18323:19;;17982:366;;;:::o;18354:419::-;18520:4;18558:2;18547:9;18543:18;18535:26;;18607:9;18601:4;18597:20;18593:1;18582:9;18578:17;18571:47;18635:131;18761:4;18635:131;:::i;:::-;18627:139;;18354:419;;;:::o;18779:220::-;18919:34;18915:1;18907:6;18903:14;18896:58;18988:3;18983:2;18975:6;18971:15;18964:28;18779:220;:::o;19005:366::-;19147:3;19168:67;19232:2;19227:3;19168:67;:::i;:::-;19161:74;;19244:93;19333:3;19244:93;:::i;:::-;19362:2;19357:3;19353:12;19346:19;;19005:366;;;:::o;19377:419::-;19543:4;19581:2;19570:9;19566:18;19558:26;;19630:9;19624:4;19620:20;19616:1;19605:9;19601:17;19594:47;19658:131;19784:4;19658:131;:::i;:::-;19650:139;;19377:419;;;:::o;19802:85::-;19847:7;19876:5;19865:16;;19802:85;;;:::o;19893:60::-;19921:3;19942:5;19935:12;;19893:60;;;:::o;19959:158::-;20017:9;20050:61;20068:42;20077:32;20103:5;20077:32;:::i;:::-;20068:42;:::i;:::-;20050:61;:::i;:::-;20037:74;;19959:158;;;:::o;20123:147::-;20218:45;20257:5;20218:45;:::i;:::-;20213:3;20206:58;20123:147;;:::o;20276:807::-;20525:4;20563:3;20552:9;20548:19;20540:27;;20577:71;20645:1;20634:9;20630:17;20621:6;20577:71;:::i;:::-;20658:72;20726:2;20715:9;20711:18;20702:6;20658:72;:::i;:::-;20740:80;20816:2;20805:9;20801:18;20792:6;20740:80;:::i;:::-;20830;20906:2;20895:9;20891:18;20882:6;20830:80;:::i;:::-;20920:73;20988:3;20977:9;20973:19;20964:6;20920:73;:::i;:::-;21003;21071:3;21060:9;21056:19;21047:6;21003:73;:::i;:::-;20276:807;;;;;;;;;:::o;21089:143::-;21146:5;21177:6;21171:13;21162:22;;21193:33;21220:5;21193:33;:::i;:::-;21089:143;;;;:::o;21238:663::-;21326:6;21334;21342;21391:2;21379:9;21370:7;21366:23;21362:32;21359:119;;;21397:79;;:::i;:::-;21359:119;21517:1;21542:64;21598:7;21589:6;21578:9;21574:22;21542:64;:::i;:::-;21532:74;;21488:128;21655:2;21681:64;21737:7;21728:6;21717:9;21713:22;21681:64;:::i;:::-;21671:74;;21626:129;21794:2;21820:64;21876:7;21867:6;21856:9;21852:22;21820:64;:::i;:::-;21810:74;;21765:129;21238:663;;;;;:::o;21907:180::-;21955:77;21952:1;21945:88;22052:4;22049:1;22042:15;22076:4;22073:1;22066:15;22093:185;22133:1;22150:20;22168:1;22150:20;:::i;:::-;22145:25;;22184:20;22202:1;22184:20;:::i;:::-;22179:25;;22223:1;22213:35;;22228:18;;:::i;:::-;22213:35;22270:1;22267;22263:9;22258:14;;22093:185;;;;:::o;22284:224::-;22424:34;22420:1;22412:6;22408:14;22401:58;22493:7;22488:2;22480:6;22476:15;22469:32;22284:224;:::o;22514:366::-;22656:3;22677:67;22741:2;22736:3;22677:67;:::i;:::-;22670:74;;22753:93;22842:3;22753:93;:::i;:::-;22871:2;22866:3;22862:12;22855:19;;22514:366;;;:::o;22886:419::-;23052:4;23090:2;23079:9;23075:18;23067:26;;23139:9;23133:4;23129:20;23125:1;23114:9;23110:17;23103:47;23167:131;23293:4;23167:131;:::i;:::-;23159:139;;22886:419;;;:::o;23311:222::-;23451:34;23447:1;23439:6;23435:14;23428:58;23520:5;23515:2;23507:6;23503:15;23496:30;23311:222;:::o;23539:366::-;23681:3;23702:67;23766:2;23761:3;23702:67;:::i;:::-;23695:74;;23778:93;23867:3;23778:93;:::i;:::-;23896:2;23891:3;23887:12;23880:19;;23539:366;;;:::o;23911:419::-;24077:4;24115:2;24104:9;24100:18;24092:26;;24164:9;24158:4;24154:20;24150:1;24139:9;24135:17;24128:47;24192:131;24318:4;24192:131;:::i;:::-;24184:139;;23911:419;;;:::o;24336:228::-;24476:34;24472:1;24464:6;24460:14;24453:58;24545:11;24540:2;24532:6;24528:15;24521:36;24336:228;:::o;24570:366::-;24712:3;24733:67;24797:2;24792:3;24733:67;:::i;:::-;24726:74;;24809:93;24898:3;24809:93;:::i;:::-;24927:2;24922:3;24918:12;24911:19;;24570:366;;;:::o;24942:419::-;25108:4;25146:2;25135:9;25131:18;25123:26;;25195:9;25189:4;25185:20;25181:1;25170:9;25166:17;25159:47;25223:131;25349:4;25223:131;:::i;:::-;25215:139;;24942:419;;;:::o;25367:194::-;25407:4;25427:20;25445:1;25427:20;:::i;:::-;25422:25;;25461:20;25479:1;25461:20;:::i;:::-;25456:25;;25505:1;25502;25498:9;25490:17;;25529:1;25523:4;25520:11;25517:37;;;25534:18;;:::i;:::-;25517:37;25367:194;;;;:::o
Swarm Source
ipfs://8dcb74a7ff9e7e643077f6487b9c7daacddf561ddafc04b5e8365a604951d1af
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.
Add Token to MetaMask (Web3)