Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 42 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 21553634 | 447 days ago | IN | 0 ETH | 0.00036949 | ||||
| Approve | 21336033 | 477 days ago | IN | 0 ETH | 0.00055961 | ||||
| Approve | 21336011 | 477 days ago | IN | 0 ETH | 0.00054817 | ||||
| Approve | 21336010 | 477 days ago | IN | 0 ETH | 0.00092276 | ||||
| Approve | 20724928 | 562 days ago | IN | 0 ETH | 0.00016122 | ||||
| Transfer | 20683075 | 568 days ago | IN | 0 ETH | 0.00018938 | ||||
| Transfer | 20683056 | 568 days ago | IN | 0 ETH | 0.00013396 | ||||
| Approve | 20682993 | 568 days ago | IN | 0 ETH | 0.00011129 | ||||
| Transfer | 20680357 | 568 days ago | IN | 0 ETH | 0.00014144 | ||||
| Set Automated Ma... | 20678878 | 569 days ago | IN | 0 ETH | 0.00024506 | ||||
| Approve | 20677413 | 569 days ago | IN | 0 ETH | 0.00031478 | ||||
| Transfer | 20677248 | 569 days ago | IN | 0 ETH | 0.00010843 | ||||
| Transfer | 20677096 | 569 days ago | IN | 0 ETH | 0.00009246 | ||||
| Approve | 20674214 | 569 days ago | IN | 0 ETH | 0.00008019 | ||||
| Set Automated Ma... | 20673695 | 569 days ago | IN | 0 ETH | 0.00007337 | ||||
| Approve | 20673689 | 569 days ago | IN | 0 ETH | 0.00014286 | ||||
| Approve | 20673601 | 569 days ago | IN | 0 ETH | 0.00004952 | ||||
| Set Automated Ma... | 20673585 | 569 days ago | IN | 0 ETH | 0.00007332 | ||||
| Set Automated Ma... | 20673471 | 569 days ago | IN | 0 ETH | 0.00003718 | ||||
| Approve | 20673362 | 569 days ago | IN | 0 ETH | 0.00003367 | ||||
| Set Automated Ma... | 20673350 | 569 days ago | IN | 0 ETH | 0.00004223 | ||||
| Set Automated Ma... | 20673322 | 569 days ago | IN | 0 ETH | 0.00004163 | ||||
| Approve | 20673259 | 569 days ago | IN | 0 ETH | 0.00004388 | ||||
| Approve | 20673255 | 569 days ago | IN | 0 ETH | 0.00003479 | ||||
| Approve | 20673253 | 569 days ago | IN | 0 ETH | 0.00005856 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
EBULL
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-09-03
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
// pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
// pragma solidity ^0.8.0;
// import "../utils/Context.sol";
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. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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 XTRUMP 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);
}
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
// 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 XTRUMP`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.
*
* 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);
}
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
// pragma solidity ^0.8.0;
// import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
_Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
// pragma solidity ^0.8.0;
// import "./IERC20.sol";
// import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
lly, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
uint256 public _maxlSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account)
public
view
virtual
override
returns (uint256)
{
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount)
public
virtual
override
returns (bool)
{
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender)
public
view
virtual
override
returns (uint256)
{
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount)
public
virtual
override
returns (bool)
{
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
function increaseAllowance(address spender, uint256 addedValue)
public
virtual
returns (bool)
{
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue)
public
virtual
returns (bool)
{
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(
currentAllowance >= subtractedValue,
"ERC20: decreased allowance below zero"
);
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(
fromBalance >= amount,
"ERC20: transfer amount exceeds balance"
);
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount XTRUMP exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
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 _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(
currentAllowance >= amount,
"ERC20: insufficient allowance"
);
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
// pragma solidity ^0.8.0;
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.
* - 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.
*
*
* - 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, XTRUMP reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* 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.
*
*
* 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.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;
}
// 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 swapTokensForExactETH(
uint256 amountOut,
uint256 amountInMax, address[] calldata path,
address to,
uint256 deadline
) external 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 quote(
uint256 amountA,
uint256 reserveA,
uint256 reserveB
) external pure returns (uint256 amountB);
function getAmountOut(
uint256 amountIn, uint256 reserveIn,
uint256 reserveOut
) external pure returns (uint256 amountOut);
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 getAmountsIn(uint256 amountOut, address[] calldata path)
external
view
returns (uint256[] memory amounts);
}
contract EBULL is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public uniswapV2Pair;
address public marketingWallet;
address public developmentWallet;
address public liquidityWallet;
address public constant deadAddress = address(0xdead);
bool public tradingEnabled;
bool public swapEnabled;
bool private _swapping;
uint256 public swapTokensAtAmount;
uint256 public buyTotalFees;
uint256 private _buyMarketingFee;
uint256 private _buyDevelopmentFee;
uint256 private _buyLiquidityFee;
uint256 public sellTotalFees;
uint256 private _sellMarketingFee;
uint256 private _sellDevelopmentFee;
uint256 private _sellLiquidityFee;
uint256 private _tokensForMarketing; uint256 private _tokensForDevelopment;
uint256 private _tokensForLiquidity;
uint256 private _previousFee;
mapping (address => bool) private _isExcludedFromEnableTrad;
mapping(address => bool) private _automatedMarketMakerPairs;
event ExcludeFromLimits(address indexed account, bool isExcluded);
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event marketingWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event developmentWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event liquidityWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiquidity
);
event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);
constructor() ERC20(unicode"ELON IS GOOD", unicode"EBULL") {
uint256 totalSupply = 10000000000 * (10 ** 18);
uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
_approve(address(this), address(uniswapV2Router), type(uint256).max);
_buyMarketingFee = 0;
_buyDevelopmentFee = 0;
_buyLiquidityFee = 0;
buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;
_sellMarketingFee = 0;
_sellDevelopmentFee = 0;
_sellLiquidityFee = 0;
sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
_previousFee = sellTotalFees;
_isExcludedFromEnableTrad[owner()] = true;
_isExcludedFromEnableTrad[address(this)] = true;
_isExcludedFromEnableTrad[deadAddress] = true;
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
_mint(owner(), totalSupply);
tradingEnabled = true;
swapEnabled = true;
}
receive() external payable {}
function excludeFromEnobleTrading(address account,
bool excluded) external onlyOwner{
_isExcludedFromEnableTrad[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function _setAutomatedMarketMakerPair(address pair, bool value) internal {
_automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");
_setAutomatedMarketMakerPair(pair, value);
}
function setAutomatedMarketMakerPair(address[] memory accounts, bool value) public onlyOwner {
for (uint256 i = 0; i < accounts.length; i++) {
if(accounts[i] == uniswapV2Pair) continue;
_setAutomatedMarketMakerPair(accounts[i], value);
}
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not yet enabled!");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
!_isExcludedFromEnableTrad[from] &&
!_isExcludedFromEnableTrad[to]
) {
_swapping = true;
_swapBack();
_swapping = false;
}
bool takeFee = !_swapping;
if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to]) {
takeFee = false;
}
uint256 fees = 0;
if (takeFee) {
// on sell
if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
fees = amount.mul(sellTotalFees).div(10000);
_tokensForLiquidity +=
(fees * _sellLiquidityFee) /
sellTotalFees;
_tokensForMarketing +=
(fees * _sellMarketingFee) /
sellTotalFees;
_tokensForDevelopment +=
(fees * _sellDevelopmentFee) /
sellTotalFees;
}
// on buy
else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(10000);
_tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
_tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
_tokensForDevelopment +=
(fees * _buyDevelopmentFee) /
buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
sellTotalFees = _previousFee;
}
function _swapTokensForETH(uint256 tokenAmount) internal {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
_approve(address(this), address(uniswapV2Router), tokenAmount);
uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0,
0,
liquidityWallet,
block.timestamp
);
}
function _swapBack() internal {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = _tokensForLiquidity +
_tokensForMarketing +
_tokensForDevelopment;
bool success;
uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
totalTokensToSwap /
2;
uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
uint256 initialETHBalance = address(this).balance;
_swapTokensForETH(amountToSwapForETH);
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
totalTokensToSwap
);
uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
totalTokensToSwap
);
uint256 ethForLiquidity = ethBalance -
ethForMarketing -
ethForDevelopment;
_tokensForLiquidity = 0;
_tokensForMarketing = 0;
_tokensForDevelopment = 0;
if (liquidityTokens > 0 && ethForLiquidity > 0) {
_addLiquidity(liquidityTokens, ethForLiquidity);
emit SwapAndLiquify(
amountToSwapForETH,
ethForLiquidity,
_tokensForLiquidity
);
}
(success, ) = address(developmentWallet).call{value: ethForDevelopment}("");
(success, ) = address(marketingWallet).call{
value: address(this).balance
}("");
}
}
// pragma solidity >=0.6.2;
// import './IUniswapV2Router01.sol';
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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromEnobleTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60a06040523480156200001157600080fd5b506040518060400160405280600c81526020017f454c4f4e20495320474f4f4400000000000000000000000000000000000000008152506040518060400160405280600581526020017f4542554c4c00000000000000000000000000000000000000000000000000000081525081600490816200008f919062000bb3565b508060059081620000a1919062000bb3565b505050620000c4620000b8620004f960201b60201c565b6200050160201b60201c565b60006b204fce5e3e250261100000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000152306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620005c760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017f919062000cc9565b6200018b919062000cc9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001be919062000cc9565b620001ca919062000cc9565b601081905550601054601781905550600160186000620001ef6200079860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000340573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000366919062000d6e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f6919062000d6e565b6040518363ffffffff1660e01b81526004016200041592919062000db1565b6020604051808303816000875af115801562000435573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045b919062000d6e565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004bc620004af6200079860201b60201c565b82620007c260201b60201c565b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff0219169083151502179055505062000fbf565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006309062000e65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a29062000efd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200078b919062000f30565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000834576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082b9062000f9d565b60405180910390fd5b62000848600083836200092f60201b60201c565b80600260008282546200085c919062000cc9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200090f919062000f30565b60405180910390a36200092b600083836200093460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009bb57607f821691505b602082108103620009d157620009d062000973565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a3b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009fc565b62000a478683620009fc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a9462000a8e62000a888462000a5f565b62000a69565b62000a5f565b9050919050565b6000819050919050565b62000ab08362000a73565b62000ac862000abf8262000a9b565b84845462000a09565b825550505050565b600090565b62000adf62000ad0565b62000aec81848462000aa5565b505050565b5b8181101562000b145762000b0860008262000ad5565b60018101905062000af2565b5050565b601f82111562000b635762000b2d81620009d7565b62000b3884620009ec565b8101602085101562000b48578190505b62000b6062000b5785620009ec565b83018262000af1565b50505b505050565b600082821c905092915050565b600062000b886000198460080262000b68565b1980831691505092915050565b600062000ba3838362000b75565b9150826002028217905092915050565b62000bbe8262000939565b67ffffffffffffffff81111562000bda5762000bd962000944565b5b62000be68254620009a2565b62000bf382828562000b18565b600060209050601f83116001811462000c2b576000841562000c16578287015190505b62000c22858262000b95565b86555062000c92565b601f19841662000c3b86620009d7565b60005b8281101562000c655784890151825560018201915060208501945060208101905062000c3e565b8683101562000c85578489015162000c81601f89168262000b75565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cd68262000a5f565b915062000ce38362000a5f565b925082820190508082111562000cfe5762000cfd62000c9a565b5b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d368262000d09565b9050919050565b62000d488162000d29565b811462000d5457600080fd5b50565b60008151905062000d688162000d3d565b92915050565b60006020828403121562000d875762000d8662000d04565b5b600062000d978482850162000d57565b91505092915050565b62000dab8162000d29565b82525050565b600060408201905062000dc8600083018562000da0565b62000dd7602083018462000da0565b9392505050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000e4d60248362000dde565b915062000e5a8262000def565b604082019050919050565b6000602082019050818103600083015262000e808162000e3e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000ee560228362000dde565b915062000ef28262000e87565b604082019050919050565b6000602082019050818103600083015262000f188162000ed6565b9050919050565b62000f2a8162000a5f565b82525050565b600060208201905062000f47600083018462000f1f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f85601f8362000dde565b915062000f928262000f4d565b602082019050919050565b6000602082019050818103600083015262000fb88162000f76565b9050919050565b60805161328962000ffe600039600081816107ca01528181611f2f0152818161201001528181612037015281816120d301526120fa01526132896000f3fe6080604052600436106101c65760003560e01c8063715018a6116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610657578063dd62ed3e14610682578063e2f45605146106bf578063f2fde38b146106ea576101cd565b8063a9059cbb1461059b578063c04a5414146105d8578063d2c7219114610603578063d46980161461062c576101cd565b806393ec52de116100d157806393ec52de146104df57806395d89b411461050a5780639a7a23d614610535578063a457c2d71461055e576101cd565b8063715018a61461047257806375f0a874146104895780638da5cb5b146104b4576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103b45780636a486a8e146103df5780636ddd17131461040a57806370a0823114610435576101cd565b8063313ce56714610321578063395093511461034c57806349bd5a5e14610389576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a41461029057806323b872dd146102b957806327c8f835146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610713565b6040516101f49190612259565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612323565b6107a5565b604051610231919061237e565b60405180910390f35b34801561024657600080fd5b5061024f6107c8565b60405161025c91906123f8565b60405180910390f35b34801561027157600080fd5b5061027a6107ec565b6040516102879190612422565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612469565b6107f6565b005b3480156102c557600080fd5b506102e060048036038101906102db91906124a9565b6108a7565b6040516102ed919061237e565b60405180910390f35b34801561030257600080fd5b5061030b6108d6565b604051610318919061250b565b60405180910390f35b34801561032d57600080fd5b506103366108dc565b6040516103439190612542565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612323565b6108e5565b604051610380919061237e565b60405180910390f35b34801561039557600080fd5b5061039e61091c565b6040516103ab919061250b565b60405180910390f35b3480156103c057600080fd5b506103c9610942565b6040516103d6919061237e565b60405180910390f35b3480156103eb57600080fd5b506103f4610955565b6040516104019190612422565b60405180910390f35b34801561041657600080fd5b5061041f61095b565b60405161042c919061237e565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061255d565b61096e565b6040516104699190612422565b60405180910390f35b34801561047e57600080fd5b506104876109b6565b005b34801561049557600080fd5b5061049e6109ca565b6040516104ab919061250b565b60405180910390f35b3480156104c057600080fd5b506104c96109f0565b6040516104d6919061250b565b60405180910390f35b3480156104eb57600080fd5b506104f4610a1a565b6040516105019190612422565b60405180910390f35b34801561051657600080fd5b5061051f610a20565b60405161052c9190612259565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190612469565b610ab2565b005b34801561056a57600080fd5b5061058560048036038101906105809190612323565b610b58565b604051610592919061237e565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190612323565b610bcf565b6040516105cf919061237e565b60405180910390f35b3480156105e457600080fd5b506105ed610bf2565b6040516105fa919061250b565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906126d2565b610c18565b005b34801561063857600080fd5b50610641610cd9565b60405161064e919061250b565b60405180910390f35b34801561066357600080fd5b5061066c610cff565b6040516106799190612422565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a4919061272e565b610d05565b6040516106b69190612422565b60405180910390f35b3480156106cb57600080fd5b506106d4610d8c565b6040516106e19190612422565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c919061255d565b610d92565b005b6060600480546107229061279d565b80601f016020809104026020016040519081016040528092919081815260200182805461074e9061279d565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b6000806107b0610e15565b90506107bd818585610e1d565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107fe610fe6565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161089b919061237e565b60405180910390a25050565b6000806108b2610e15565b90506108bf858285611064565b6108ca8585856110f0565b60019150509392505050565b61dead81565b60006012905090565b6000806108f0610e15565b90506109118185856109028589610d05565b61090c91906127fd565b610e1d565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109be610fe6565b6109c860006117c5565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610a2f9061279d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5b9061279d565b8015610aa85780601f10610a7d57610100808354040283529160200191610aa8565b820191906000526020600020905b815481529060010190602001808311610a8b57829003601f168201915b5050505050905090565b610aba610fe6565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906128c9565b60405180910390fd5b610b54828261188b565b5050565b600080610b63610e15565b90506000610b718286610d05565b905083811015610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad9061295b565b60405180910390fd5b610bc38286868403610e1d565b60019250505092915050565b600080610bda610e15565b9050610be78185856110f0565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c20610fe6565b60005b8251811015610cd457600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610c7857610c7761297b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160315610cc157610cc0838281518110610cb257610cb161297b565b5b60200260200101518361188b565b5b8080610ccc906129aa565b915050610c23565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d9a610fe6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090612a64565b60405180910390fd5b610e12816117c5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612af6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290612b88565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fd99190612422565b60405180910390a3505050565b610fee610e15565b73ffffffffffffffffffffffffffffffffffffffff1661100c6109f0565b73ffffffffffffffffffffffffffffffffffffffff1614611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612bf4565b60405180910390fd5b565b60006110708484610d05565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110ea57818110156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390612c60565b60405180910390fd5b6110e98484848403610e1d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612cf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612d84565b60405180910390fd5b600a60149054906101000a900460ff16806112325750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112865750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612df0565b60405180910390fd5b600081036112de576112d98383600061192c565b6117c0565b60006112e93061096e565b90506000600b54821015905080801561130e5750600a60159054906101000a900460ff165b80156113275750600a60169054906101000a900460ff16155b801561137c5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113d25750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114285750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561146c576001600a60166101000a81548160ff021916908315150217905550611450611ba2565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115225750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561152c57600090505b600081156117a757601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561158f57506000601054115b1561165d576115bd6127106115af60105488611e4490919063ffffffff16565b611e5a90919063ffffffff16565b9050601054601354826115d09190612e10565b6115da9190612e81565b601660008282546115eb91906127fd565b92505081905550601054601154826116039190612e10565b61160d9190612e81565b6014600082825461161e91906127fd565b92505081905550601054601254826116369190612e10565b6116409190612e81565b6015600082825461165191906127fd565b92505081905550611783565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156116b857506000600c54115b15611782576116e66127106116d8600c5488611e4490919063ffffffff16565b611e5a90919063ffffffff16565b9050600c54600f54826116f99190612e10565b6117039190612e81565b6016600082825461171491906127fd565b92505081905550600c54600d548261172c9190612e10565b6117369190612e81565b6014600082825461174791906127fd565b92505081905550600c54600e548261175f9190612e10565b6117699190612e81565b6015600082825461177a91906127fd565b925050819055505b5b60008111156117985761179787308361192c565b5b80856117a49190612eb2565b94505b6117b287878761192c565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290612cf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190612d84565b60405180910390fd5b611a15838383611e70565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290612f58565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b899190612422565b60405180910390a3611b9c848484611e75565b50505050565b6000611bad3061096e565b90506000601554601454601654611bc491906127fd565b611bce91906127fd565b905060008060028360165486611be49190612e10565b611bee9190612e81565b611bf89190612e81565b90506000611c0f8286611e7a90919063ffffffff16565b90506000479050611c1f82611e90565b6000611c348247611e7a90919063ffffffff16565b90506000611c5f87611c5160145485611e4490919063ffffffff16565b611e5a90919063ffffffff16565b90506000611c8a88611c7c60155486611e4490919063ffffffff16565b611e5a90919063ffffffff16565b90506000818385611c9b9190612eb2565b611ca59190612eb2565b9050600060168190555060006014819055506000601581905550600087118015611ccf5750600081115b15611d1c57611cde87826120cd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d1393929190612f78565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d6290612fe0565b60006040518083038185875af1925050503d8060008114611d9f576040519150601f19603f3d011682016040523d82523d6000602084013e611da4565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611df090612fe0565b60006040518083038185875af1925050503d8060008114611e2d576040519150601f19603f3d011682016040523d82523d6000602084013e611e32565b606091505b50508098505050505050505050505050565b60008183611e529190612e10565b905092915050565b60008183611e689190612e81565b905092915050565b505050565b505050565b60008183611e889190612eb2565b905092915050565b6000600267ffffffffffffffff811115611ead57611eac61258f565b5b604051908082528060200260200182016040528015611edb5781602001602082028036833780820191505090505b5090503081600081518110611ef357611ef261297b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbc919061300a565b81600181518110611fd057611fcf61297b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612035307f000000000000000000000000000000000000000000000000000000000000000084610e1d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612097959493929190613130565b600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b505050505050565b6120f8307f000000000000000000000000000000000000000000000000000000000000000084610e1d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161217f9695949392919061318a565b60606040518083038185885af115801561219d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121c29190613200565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122035780820151818401526020810190506121e8565b60008484015250505050565b6000601f19601f8301169050919050565b600061222b826121c9565b61223581856121d4565b93506122458185602086016121e5565b61224e8161220f565b840191505092915050565b600060208201905081810360008301526122738184612220565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122ba8261228f565b9050919050565b6122ca816122af565b81146122d557600080fd5b50565b6000813590506122e7816122c1565b92915050565b6000819050919050565b612300816122ed565b811461230b57600080fd5b50565b60008135905061231d816122f7565b92915050565b6000806040838503121561233a57612339612285565b5b6000612348858286016122d8565b92505060206123598582860161230e565b9150509250929050565b60008115159050919050565b61237881612363565b82525050565b6000602082019050612393600083018461236f565b92915050565b6000819050919050565b60006123be6123b96123b48461228f565b612399565b61228f565b9050919050565b60006123d0826123a3565b9050919050565b60006123e2826123c5565b9050919050565b6123f2816123d7565b82525050565b600060208201905061240d60008301846123e9565b92915050565b61241c816122ed565b82525050565b60006020820190506124376000830184612413565b92915050565b61244681612363565b811461245157600080fd5b50565b6000813590506124638161243d565b92915050565b600080604083850312156124805761247f612285565b5b600061248e858286016122d8565b925050602061249f85828601612454565b9150509250929050565b6000806000606084860312156124c2576124c1612285565b5b60006124d0868287016122d8565b93505060206124e1868287016122d8565b92505060406124f28682870161230e565b9150509250925092565b612505816122af565b82525050565b600060208201905061252060008301846124fc565b92915050565b600060ff82169050919050565b61253c81612526565b82525050565b60006020820190506125576000830184612533565b92915050565b60006020828403121561257357612572612285565b5b6000612581848285016122d8565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125c78261220f565b810181811067ffffffffffffffff821117156125e6576125e561258f565b5b80604052505050565b60006125f961227b565b905061260582826125be565b919050565b600067ffffffffffffffff8211156126255761262461258f565b5b602082029050602081019050919050565b600080fd5b600061264e6126498461260a565b6125ef565b9050808382526020820190506020840283018581111561267157612670612636565b5b835b8181101561269a578061268688826122d8565b845260208401935050602081019050612673565b5050509392505050565b600082601f8301126126b9576126b861258a565b5b81356126c984826020860161263b565b91505092915050565b600080604083850312156126e9576126e8612285565b5b600083013567ffffffffffffffff8111156127075761270661228a565b5b612713858286016126a4565b925050602061272485828601612454565b9150509250929050565b6000806040838503121561274557612744612285565b5b6000612753858286016122d8565b9250506020612764858286016122d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127b557607f821691505b6020821081036127c8576127c761276e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612808826122ed565b9150612813836122ed565b925082820190508082111561282b5761282a6127ce565b5b92915050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265207260008201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b60006128b36045836121d4565b91506128be82612831565b606082019050919050565b600060208201905081810360008301526128e2816128a6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006129456025836121d4565b9150612950826128e9565b604082019050919050565b6000602082019050818103600083015261297481612938565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006129b5826122ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129e7576129e66127ce565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f205860008201527f5452554d50206164647265737300000000000000000000000000000000000000602082015250565b6000612a4e602d836121d4565b9150612a59826129f2565b604082019050919050565b60006020820190508181036000830152612a7d81612a41565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612ae06024836121d4565b9150612aeb82612a84565b604082019050919050565b60006020820190508181036000830152612b0f81612ad3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b726022836121d4565b9150612b7d82612b16565b604082019050919050565b60006020820190508181036000830152612ba181612b65565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bde6020836121d4565b9150612be982612ba8565b602082019050919050565b60006020820190508181036000830152612c0d81612bd1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612c4a601d836121d4565b9150612c5582612c14565b602082019050919050565b60006020820190508181036000830152612c7981612c3d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612cdc6025836121d4565b9150612ce782612c80565b604082019050919050565b60006020820190508181036000830152612d0b81612ccf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612d6e6023836121d4565b9150612d7982612d12565b604082019050919050565b60006020820190508181036000830152612d9d81612d61565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612dda6018836121d4565b9150612de582612da4565b602082019050919050565b60006020820190508181036000830152612e0981612dcd565b9050919050565b6000612e1b826122ed565b9150612e26836122ed565b9250828202612e34816122ed565b91508282048414831517612e4b57612e4a6127ce565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e8c826122ed565b9150612e97836122ed565b925082612ea757612ea6612e52565b5b828204905092915050565b6000612ebd826122ed565b9150612ec8836122ed565b9250828203905081811115612ee057612edf6127ce565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f426026836121d4565b9150612f4d82612ee6565b604082019050919050565b60006020820190508181036000830152612f7181612f35565b9050919050565b6000606082019050612f8d6000830186612413565b612f9a6020830185612413565b612fa76040830184612413565b949350505050565b600081905092915050565b50565b6000612fca600083612faf565b9150612fd582612fba565b600082019050919050565b6000612feb82612fbd565b9150819050919050565b600081519050613004816122c1565b92915050565b6000602082840312156130205761301f612285565b5b600061302e84828501612ff5565b91505092915050565b6000819050919050565b600061305c61305761305284613037565b612399565b6122ed565b9050919050565b61306c81613041565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130a7816122af565b82525050565b60006130b9838361309e565b60208301905092915050565b6000602082019050919050565b60006130dd82613072565b6130e7818561307d565b93506130f28361308e565b8060005b8381101561312357815161310a88826130ad565b9750613115836130c5565b9250506001810190506130f6565b5085935050505092915050565b600060a0820190506131456000830188612413565b6131526020830187613063565b818103604083015261316481866130d2565b905061317360608301856124fc565b6131806080830184612413565b9695505050505050565b600060c08201905061319f60008301896124fc565b6131ac6020830188612413565b6131b96040830187613063565b6131c66060830186613063565b6131d360808301856124fc565b6131e060a0830184612413565b979650505050505050565b6000815190506131fa816122f7565b92915050565b60008060006060848603121561321957613218612285565b5b6000613227868287016131eb565b9350506020613238868287016131eb565b9250506040613249868287016131eb565b915050925092509256fea2646970667358221220d13565c36554a978269eeaec62b07cb8ee29b6e0f7d73261f32e8746a57b7e3164736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101c65760003560e01c8063715018a6116100f7578063a9059cbb11610095578063d85ba06311610064578063d85ba06314610657578063dd62ed3e14610682578063e2f45605146106bf578063f2fde38b146106ea576101cd565b8063a9059cbb1461059b578063c04a5414146105d8578063d2c7219114610603578063d46980161461062c576101cd565b806393ec52de116100d157806393ec52de146104df57806395d89b411461050a5780639a7a23d614610535578063a457c2d71461055e576101cd565b8063715018a61461047257806375f0a874146104895780638da5cb5b146104b4576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103b45780636a486a8e146103df5780636ddd17131461040a57806370a0823114610435576101cd565b8063313ce56714610321578063395093511461034c57806349bd5a5e14610389576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a41461029057806323b872dd146102b957806327c8f835146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610713565b6040516101f49190612259565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612323565b6107a5565b604051610231919061237e565b60405180910390f35b34801561024657600080fd5b5061024f6107c8565b60405161025c91906123f8565b60405180910390f35b34801561027157600080fd5b5061027a6107ec565b6040516102879190612422565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612469565b6107f6565b005b3480156102c557600080fd5b506102e060048036038101906102db91906124a9565b6108a7565b6040516102ed919061237e565b60405180910390f35b34801561030257600080fd5b5061030b6108d6565b604051610318919061250b565b60405180910390f35b34801561032d57600080fd5b506103366108dc565b6040516103439190612542565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612323565b6108e5565b604051610380919061237e565b60405180910390f35b34801561039557600080fd5b5061039e61091c565b6040516103ab919061250b565b60405180910390f35b3480156103c057600080fd5b506103c9610942565b6040516103d6919061237e565b60405180910390f35b3480156103eb57600080fd5b506103f4610955565b6040516104019190612422565b60405180910390f35b34801561041657600080fd5b5061041f61095b565b60405161042c919061237e565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061255d565b61096e565b6040516104699190612422565b60405180910390f35b34801561047e57600080fd5b506104876109b6565b005b34801561049557600080fd5b5061049e6109ca565b6040516104ab919061250b565b60405180910390f35b3480156104c057600080fd5b506104c96109f0565b6040516104d6919061250b565b60405180910390f35b3480156104eb57600080fd5b506104f4610a1a565b6040516105019190612422565b60405180910390f35b34801561051657600080fd5b5061051f610a20565b60405161052c9190612259565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190612469565b610ab2565b005b34801561056a57600080fd5b5061058560048036038101906105809190612323565b610b58565b604051610592919061237e565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190612323565b610bcf565b6040516105cf919061237e565b60405180910390f35b3480156105e457600080fd5b506105ed610bf2565b6040516105fa919061250b565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906126d2565b610c18565b005b34801561063857600080fd5b50610641610cd9565b60405161064e919061250b565b60405180910390f35b34801561066357600080fd5b5061066c610cff565b6040516106799190612422565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a4919061272e565b610d05565b6040516106b69190612422565b60405180910390f35b3480156106cb57600080fd5b506106d4610d8c565b6040516106e19190612422565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c919061255d565b610d92565b005b6060600480546107229061279d565b80601f016020809104026020016040519081016040528092919081815260200182805461074e9061279d565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b6000806107b0610e15565b90506107bd818585610e1d565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6107fe610fe6565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161089b919061237e565b60405180910390a25050565b6000806108b2610e15565b90506108bf858285611064565b6108ca8585856110f0565b60019150509392505050565b61dead81565b60006012905090565b6000806108f0610e15565b90506109118185856109028589610d05565b61090c91906127fd565b610e1d565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109be610fe6565b6109c860006117c5565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610a2f9061279d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5b9061279d565b8015610aa85780601f10610a7d57610100808354040283529160200191610aa8565b820191906000526020600020905b815481529060010190602001808311610a8b57829003601f168201915b5050505050905090565b610aba610fe6565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b41906128c9565b60405180910390fd5b610b54828261188b565b5050565b600080610b63610e15565b90506000610b718286610d05565b905083811015610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad9061295b565b60405180910390fd5b610bc38286868403610e1d565b60019250505092915050565b600080610bda610e15565b9050610be78185856110f0565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c20610fe6565b60005b8251811015610cd457600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610c7857610c7761297b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160315610cc157610cc0838281518110610cb257610cb161297b565b5b60200260200101518361188b565b5b8080610ccc906129aa565b915050610c23565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d9a610fe6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090612a64565b60405180910390fd5b610e12816117c5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612af6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290612b88565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fd99190612422565b60405180910390a3505050565b610fee610e15565b73ffffffffffffffffffffffffffffffffffffffff1661100c6109f0565b73ffffffffffffffffffffffffffffffffffffffff1614611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612bf4565b60405180910390fd5b565b60006110708484610d05565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110ea57818110156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390612c60565b60405180910390fd5b6110e98484848403610e1d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612cf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612d84565b60405180910390fd5b600a60149054906101000a900460ff16806112325750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112865750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90612df0565b60405180910390fd5b600081036112de576112d98383600061192c565b6117c0565b60006112e93061096e565b90506000600b54821015905080801561130e5750600a60159054906101000a900460ff165b80156113275750600a60169054906101000a900460ff16155b801561137c5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113d25750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114285750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561146c576001600a60166101000a81548160ff021916908315150217905550611450611ba2565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115225750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561152c57600090505b600081156117a757601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561158f57506000601054115b1561165d576115bd6127106115af60105488611e4490919063ffffffff16565b611e5a90919063ffffffff16565b9050601054601354826115d09190612e10565b6115da9190612e81565b601660008282546115eb91906127fd565b92505081905550601054601154826116039190612e10565b61160d9190612e81565b6014600082825461161e91906127fd565b92505081905550601054601254826116369190612e10565b6116409190612e81565b6015600082825461165191906127fd565b92505081905550611783565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156116b857506000600c54115b15611782576116e66127106116d8600c5488611e4490919063ffffffff16565b611e5a90919063ffffffff16565b9050600c54600f54826116f99190612e10565b6117039190612e81565b6016600082825461171491906127fd565b92505081905550600c54600d548261172c9190612e10565b6117369190612e81565b6014600082825461174791906127fd565b92505081905550600c54600e548261175f9190612e10565b6117699190612e81565b6015600082825461177a91906127fd565b925050819055505b5b60008111156117985761179787308361192c565b5b80856117a49190612eb2565b94505b6117b287878761192c565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290612cf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190612d84565b60405180910390fd5b611a15838383611e70565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290612f58565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b899190612422565b60405180910390a3611b9c848484611e75565b50505050565b6000611bad3061096e565b90506000601554601454601654611bc491906127fd565b611bce91906127fd565b905060008060028360165486611be49190612e10565b611bee9190612e81565b611bf89190612e81565b90506000611c0f8286611e7a90919063ffffffff16565b90506000479050611c1f82611e90565b6000611c348247611e7a90919063ffffffff16565b90506000611c5f87611c5160145485611e4490919063ffffffff16565b611e5a90919063ffffffff16565b90506000611c8a88611c7c60155486611e4490919063ffffffff16565b611e5a90919063ffffffff16565b90506000818385611c9b9190612eb2565b611ca59190612eb2565b9050600060168190555060006014819055506000601581905550600087118015611ccf5750600081115b15611d1c57611cde87826120cd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611d1393929190612f78565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d6290612fe0565b60006040518083038185875af1925050503d8060008114611d9f576040519150601f19603f3d011682016040523d82523d6000602084013e611da4565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611df090612fe0565b60006040518083038185875af1925050503d8060008114611e2d576040519150601f19603f3d011682016040523d82523d6000602084013e611e32565b606091505b50508098505050505050505050505050565b60008183611e529190612e10565b905092915050565b60008183611e689190612e81565b905092915050565b505050565b505050565b60008183611e889190612eb2565b905092915050565b6000600267ffffffffffffffff811115611ead57611eac61258f565b5b604051908082528060200260200182016040528015611edb5781602001602082028036833780820191505090505b5090503081600081518110611ef357611ef261297b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbc919061300a565b81600181518110611fd057611fcf61297b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612035307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e1d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612097959493929190613130565b600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b505050505050565b6120f8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e1d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161217f9695949392919061318a565b60606040518083038185885af115801561219d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121c29190613200565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122035780820151818401526020810190506121e8565b60008484015250505050565b6000601f19601f8301169050919050565b600061222b826121c9565b61223581856121d4565b93506122458185602086016121e5565b61224e8161220f565b840191505092915050565b600060208201905081810360008301526122738184612220565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122ba8261228f565b9050919050565b6122ca816122af565b81146122d557600080fd5b50565b6000813590506122e7816122c1565b92915050565b6000819050919050565b612300816122ed565b811461230b57600080fd5b50565b60008135905061231d816122f7565b92915050565b6000806040838503121561233a57612339612285565b5b6000612348858286016122d8565b92505060206123598582860161230e565b9150509250929050565b60008115159050919050565b61237881612363565b82525050565b6000602082019050612393600083018461236f565b92915050565b6000819050919050565b60006123be6123b96123b48461228f565b612399565b61228f565b9050919050565b60006123d0826123a3565b9050919050565b60006123e2826123c5565b9050919050565b6123f2816123d7565b82525050565b600060208201905061240d60008301846123e9565b92915050565b61241c816122ed565b82525050565b60006020820190506124376000830184612413565b92915050565b61244681612363565b811461245157600080fd5b50565b6000813590506124638161243d565b92915050565b600080604083850312156124805761247f612285565b5b600061248e858286016122d8565b925050602061249f85828601612454565b9150509250929050565b6000806000606084860312156124c2576124c1612285565b5b60006124d0868287016122d8565b93505060206124e1868287016122d8565b92505060406124f28682870161230e565b9150509250925092565b612505816122af565b82525050565b600060208201905061252060008301846124fc565b92915050565b600060ff82169050919050565b61253c81612526565b82525050565b60006020820190506125576000830184612533565b92915050565b60006020828403121561257357612572612285565b5b6000612581848285016122d8565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125c78261220f565b810181811067ffffffffffffffff821117156125e6576125e561258f565b5b80604052505050565b60006125f961227b565b905061260582826125be565b919050565b600067ffffffffffffffff8211156126255761262461258f565b5b602082029050602081019050919050565b600080fd5b600061264e6126498461260a565b6125ef565b9050808382526020820190506020840283018581111561267157612670612636565b5b835b8181101561269a578061268688826122d8565b845260208401935050602081019050612673565b5050509392505050565b600082601f8301126126b9576126b861258a565b5b81356126c984826020860161263b565b91505092915050565b600080604083850312156126e9576126e8612285565b5b600083013567ffffffffffffffff8111156127075761270661228a565b5b612713858286016126a4565b925050602061272485828601612454565b9150509250929050565b6000806040838503121561274557612744612285565b5b6000612753858286016122d8565b9250506020612764858286016122d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127b557607f821691505b6020821081036127c8576127c761276e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612808826122ed565b9150612813836122ed565b925082820190508082111561282b5761282a6127ce565b5b92915050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265207260008201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b60006128b36045836121d4565b91506128be82612831565b606082019050919050565b600060208201905081810360008301526128e2816128a6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006129456025836121d4565b9150612950826128e9565b604082019050919050565b6000602082019050818103600083015261297481612938565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006129b5826122ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129e7576129e66127ce565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f205860008201527f5452554d50206164647265737300000000000000000000000000000000000000602082015250565b6000612a4e602d836121d4565b9150612a59826129f2565b604082019050919050565b60006020820190508181036000830152612a7d81612a41565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612ae06024836121d4565b9150612aeb82612a84565b604082019050919050565b60006020820190508181036000830152612b0f81612ad3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b726022836121d4565b9150612b7d82612b16565b604082019050919050565b60006020820190508181036000830152612ba181612b65565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bde6020836121d4565b9150612be982612ba8565b602082019050919050565b60006020820190508181036000830152612c0d81612bd1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612c4a601d836121d4565b9150612c5582612c14565b602082019050919050565b60006020820190508181036000830152612c7981612c3d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612cdc6025836121d4565b9150612ce782612c80565b604082019050919050565b60006020820190508181036000830152612d0b81612ccf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612d6e6023836121d4565b9150612d7982612d12565b604082019050919050565b60006020820190508181036000830152612d9d81612d61565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612dda6018836121d4565b9150612de582612da4565b602082019050919050565b60006020820190508181036000830152612e0981612dcd565b9050919050565b6000612e1b826122ed565b9150612e26836122ed565b9250828202612e34816122ed565b91508282048414831517612e4b57612e4a6127ce565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e8c826122ed565b9150612e97836122ed565b925082612ea757612ea6612e52565b5b828204905092915050565b6000612ebd826122ed565b9150612ec8836122ed565b9250828203905081811115612ee057612edf6127ce565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f426026836121d4565b9150612f4d82612ee6565b604082019050919050565b60006020820190508181036000830152612f7181612f35565b9050919050565b6000606082019050612f8d6000830186612413565b612f9a6020830185612413565b612fa76040830184612413565b949350505050565b600081905092915050565b50565b6000612fca600083612faf565b9150612fd582612fba565b600082019050919050565b6000612feb82612fbd565b9150819050919050565b600081519050613004816122c1565b92915050565b6000602082840312156130205761301f612285565b5b600061302e84828501612ff5565b91505092915050565b6000819050919050565b600061305c61305761305284613037565b612399565b6122ed565b9050919050565b61306c81613041565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130a7816122af565b82525050565b60006130b9838361309e565b60208301905092915050565b6000602082019050919050565b60006130dd82613072565b6130e7818561307d565b93506130f28361308e565b8060005b8381101561312357815161310a88826130ad565b9750613115836130c5565b9250506001810190506130f6565b5085935050505092915050565b600060a0820190506131456000830188612413565b6131526020830187613063565b818103604083015261316481866130d2565b905061317360608301856124fc565b6131806080830184612413565b9695505050505050565b600060c08201905061319f60008301896124fc565b6131ac6020830188612413565b6131b96040830187613063565b6131c66060830186613063565b6131d360808301856124fc565b6131e060a0830184612413565b979650505050505050565b6000815190506131fa816122f7565b92915050565b60008060006060848603121561321957613218612285565b5b6000613227868287016131eb565b9350506020613238868287016131eb565b9250506040613249868287016131eb565b915050925092509256fea2646970667358221220d13565c36554a978269eeaec62b07cb8ee29b6e0f7d73261f32e8746a57b7e3164736f6c63430008110033
Deployed Bytecode Sourcemap
25252:8976:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7565:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9470:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25327:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8431:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28298:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9720:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25535:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8273:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10023:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25385:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25597:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25891:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25633:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8602:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1808:103;;;;;;;;;;;;;:::i;:::-;;25422:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1167:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7104:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7784:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28703:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10301:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8964:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25459:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28969:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25498:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25736:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9261:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25694:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2066:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7565:100;7619:13;7652:5;7645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7565:100;:::o;9470:242::-;9589:4;9611:13;9627:12;:10;:12::i;:::-;9611:28;;9650:32;9659:5;9666:7;9675:6;9650:8;:32::i;:::-;9700:4;9693:11;;;9470:242;;;;:::o;25327:51::-;;;:::o;8431:108::-;8492:7;8519:12;;8512:19;;8431:108;:::o;28298:205::-;1053:13;:11;:13::i;:::-;28437:8:::1;28400:25;:34;28426:7;28400:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;28477:7;28461:34;;;28486:8;28461:34;;;;;;:::i;:::-;;;;;;;;28298:205:::0;;:::o;9720:295::-;9851:4;9868:15;9886:12;:10;:12::i;:::-;9868:30;;9909:38;9925:4;9931:7;9940:6;9909:15;:38::i;:::-;9958:27;9968:4;9974:2;9978:6;9958:9;:27::i;:::-;10003:4;9996:11;;;9720:295;;;;;:::o;25535:53::-;25581:6;25535:53;:::o;8273:93::-;8331:5;8356:2;8349:9;;8273:93;:::o;10023:270::-;10138:4;10160:13;10176:12;:10;:12::i;:::-;10160:28;;10199:64;10208:5;10215:7;10252:10;10224:25;10234:5;10241:7;10224:9;:25::i;:::-;:38;;;;:::i;:::-;10199:8;:64::i;:::-;10281:4;10274:11;;;10023:270;;;;:::o;25385:28::-;;;;;;;;;;;;;:::o;25597:26::-;;;;;;;;;;;;;:::o;25891:28::-;;;;:::o;25633:23::-;;;;;;;;;;;;;:::o;8602:177::-;8721:7;8753:9;:18;8763:7;8753:18;;;;;;;;;;;;;;;;8746:25;;8602:177;;;:::o;1808:103::-;1053:13;:11;:13::i;:::-;1873:30:::1;1900:1;1873:18;:30::i;:::-;1808:103::o:0;25422:30::-;;;;;;;;;;;;;:::o;1167:87::-;1213:7;1240:6;;;;;;;;;;;1233:13;;1167:87;:::o;7104:26::-;;;;:::o;7784:104::-;7840:13;7873:7;7866:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7784:104;:::o;28703:254::-;1053:13;:11;:13::i;:::-;28810::::1;;;;;;;;;;;28802:21;;:4;:21;;::::0;28794:103:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;28908:41;28937:4;28943:5;28908:28;:41::i;:::-;28703:254:::0;;:::o;10301:505::-;10421:4;10443:13;10459:12;:10;:12::i;:::-;10443:28;;10482:24;10509:25;10519:5;10526:7;10509:9;:25::i;:::-;10482:52;;10587:15;10567:16;:35;;10545:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;10703:60;10712:5;10719:7;10747:15;10728:16;:34;10703:8;:60::i;:::-;10794:4;10787:11;;;;10301:505;;;;:::o;8964:234::-;9079:4;9101:13;9117:12;:10;:12::i;:::-;9101:28;;9140;9150:5;9157:2;9161:6;9140:9;:28::i;:::-;9186:4;9179:11;;;8964:234;;;;:::o;25459:32::-;;;;;;;;;;;;;:::o;28969:288::-;1053:13;:11;:13::i;:::-;29078:9:::1;29073:177;29097:8;:15;29093:1;:19;29073:177;;;29152:13;;;;;;;;;;;29137:28;;:8;29146:1;29137:11;;;;;;;;:::i;:::-;;;;;;;;:28;;::::0;29134:41;29167:8:::1;29134:41;29190:48;29219:8;29228:1;29219:11;;;;;;;;:::i;:::-;;;;;;;;29232:5;29190:28;:48::i;:::-;29073:177;29114:3;;;;;:::i;:::-;;;;29073:177;;;;28969:288:::0;;:::o;25498:30::-;;;;;;;;;;;;;:::o;25736:27::-;;;;:::o;9261:201::-;9395:7;9427:11;:18;9439:5;9427:18;;;;;;;;;;;;;;;:27;9446:7;9427:27;;;;;;;;;;;;;;;;9420:34;;9261:201;;;;:::o;25694:33::-;;;;:::o;2066:245::-;1053:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2147:117:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:28;2294:8;2275:18;:28::i;:::-;2066:245:::0;:::o;218:98::-;271:7;298:10;291:17;;218:98;:::o;12945:380::-;13098:1;13081:19;;:5;:19;;;13073:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13179:1;13160:21;;:7;:21;;;13152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13263:6;13233:11;:18;13245:5;13233:18;;;;;;;;;;;;;;;:27;13252:7;13233:27;;;;;;;;;;;;;;;:36;;;;13301:7;13285:32;;13294:5;13285:32;;;13310:6;13285:32;;;;;;:::i;:::-;;;;;;;;12945:380;;;:::o;1332:132::-;1407:12;:10;:12::i;:::-;1396:23;;:7;:5;:7::i;:::-;:23;;;1388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1332:132::o;13333:502::-;13468:24;13495:25;13505:5;13512:7;13495:9;:25::i;:::-;13468:52;;13555:17;13535:16;:37;13531:297;;13635:6;13615:16;:26;;13589:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13750:51;13759:5;13766:7;13794:6;13775:16;:25;13750:8;:51::i;:::-;13531:297;13457:378;13333:502;;;:::o;29269:2448::-;29417:1;29401:18;;:4;:18;;;29393:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29494:1;29480:16;;:2;:16;;;29472:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29555:14;;;;;;;;;;;:49;;;;29573:25;:31;29599:4;29573:31;;;;;;;;;;;;;;;;;;;;;;;;;29555:49;:82;;;;29608:25;:29;29634:2;29608:29;;;;;;;;;;;;;;;;;;;;;;;;;29555:82;29547:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;29691:1;29681:6;:11;29677:93;;29709:28;29725:4;29731:2;29735:1;29709:15;:28::i;:::-;29752:7;;29677:93;29784:28;29815:24;29833:4;29815:9;:24::i;:::-;29784:55;;29852:12;29891:18;;29867:20;:42;;29852:57;;29940:7;:35;;;;;29964:11;;;;;;;;;;;29940:35;:48;;;;;29979:9;;;;;;;;;;;29978:10;29940:48;:82;;;;;29990:26;:32;30017:4;29990:32;;;;;;;;;;;;;;;;;;;;;;;;;29940:82;:131;;;;;30040:25;:31;30066:4;30040:31;;;;;;;;;;;;;;;;;;;;;;;;;30039:32;29940:131;:178;;;;;30089:25;:29;30115:2;30089:29;;;;;;;;;;;;;;;;;;;;;;;;;30088:30;29940:178;29922:313;;;30157:4;30145:9;;:16;;;;;;;;;;;;;;;;;;30178:11;:9;:11::i;:::-;30218:5;30206:9;;:17;;;;;;;;;;;;;;;;;;29922:313;30247:12;30263:9;;;;;;;;;;;30262:10;30247:25;;30289;:31;30315:4;30289:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;30324:25;:29;30350:2;30324:29;;;;;;;;;;;;;;;;;;;;;;;;;30289:64;30285:112;;;30380:5;30370:15;;30285:112;30409:12;30442:7;30438:1187;;;30494:26;:30;30521:2;30494:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;30544:1;30528:13;;:17;30494:51;30490:986;;;30573:36;30603:5;30573:25;30584:13;;30573:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;30566:43;;30722:13;;30680:17;;30673:4;:24;;;;:::i;:::-;30672:63;;;;:::i;:::-;30628:19;;:107;;;;;;;:::i;:::-;;;;;;;;30848:13;;30806:17;;30799:4;:24;;;;:::i;:::-;30798:63;;;;:::i;:::-;30754:19;;:107;;;;;;;:::i;:::-;;;;;;;;30978:13;;30934:19;;30927:4;:26;;;;:::i;:::-;30926:65;;;;:::i;:::-;30880:21;;:111;;;;;;;:::i;:::-;;;;;;;;30490:986;;;31053:26;:32;31080:4;31053:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;31104:1;31089:12;;:16;31053:52;31049:427;;;31133:35;31162:5;31133:24;31144:12;;31133:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;31126:42;;31238:12;;31218:16;;31211:4;:23;;;;:::i;:::-;31210:40;;;;:::i;:::-;31187:19;;:63;;;;;;;:::i;:::-;;;;;;;;31320:12;;31300:16;;31293:4;:23;;;;:::i;:::-;31292:40;;;;:::i;:::-;31269:19;;:63;;;;;;;:::i;:::-;;;;;;;;31448:12;;31405:18;;31398:4;:25;;;;:::i;:::-;31397:63;;;;:::i;:::-;31351:21;;:109;;;;;;;:::i;:::-;;;;;;;;31049:427;30490:986;31503:1;31496:4;:8;31492:91;;;31525:42;31541:4;31555;31562;31525:15;:42::i;:::-;31492:91;31609:4;31599:14;;;;;:::i;:::-;;;30438:1187;31637:33;31653:4;31659:2;31663:6;31637:15;:33::i;:::-;31697:12;;31681:13;:28;;;;29382:2335;;;;29269:2448;;;;:::o;2471:191::-;2545:16;2564:6;;;;;;;;;;;2545:25;;2590:8;2581:6;;:17;;;;;;;;;;;;;;;;;;2645:8;2614:40;;2635:8;2614:40;;;;;;;;;;;;2534:128;2471:191;:::o;28509:188::-;28628:5;28593:26;:32;28620:4;28593:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;28683:5;28649:40;;28677:4;28649:40;;;;;;;;;;;;28509:188;;:::o;10814:877::-;10961:1;10945:18;;:4;:18;;;10937:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11038:1;11024:16;;:2;:16;;;11016:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11093:38;11114:4;11120:2;11124:6;11093:20;:38::i;:::-;11144:19;11166:9;:15;11176:4;11166:15;;;;;;;;;;;;;;;;11144:37;;11229:6;11214:11;:21;;11192:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;11369:6;11355:11;:20;11337:9;:15;11347:4;11337:15;;;;;;;;;;;;;;;:38;;;;11572:6;11555:9;:13;11565:2;11555:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11622:2;11607:26;;11616:4;11607:26;;;11626:6;11607:26;;;;;;:::i;:::-;;;;;;;;11646:37;11666:4;11672:2;11676:6;11646:19;:37::i;:::-;10926:765;10814:877;;;:::o;32616:1607::-;32657:23;32683:24;32701:4;32683:9;:24::i;:::-;32657:50;;32718:25;32816:21;;32781:19;;32746;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;32718:119;;32848:12;32875:23;32989:1;32956:17;32920:19;;32902:15;:37;;;;:::i;:::-;32901:72;;;;:::i;:::-;:89;;;;:::i;:::-;32875:115;;33001:26;33030:36;33050:15;33030;:19;;:36;;;;:::i;:::-;33001:65;;33079:25;33107:21;33079:49;;33141:37;33159:18;33141:17;:37::i;:::-;33191:18;33212:44;33238:17;33212:21;:25;;:44;;;;:::i;:::-;33191:65;;33269:23;33295:82;33349:17;33295:35;33310:19;;33295:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;33269:108;;33390:25;33418:84;33474:17;33418:37;33433:21;;33418:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;33390:112;;33515:23;33598:17;33567:15;33541:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;33515:100;;33650:1;33628:19;:23;;;;33684:1;33662:19;:23;;;;33720:1;33696:21;:25;;;;33756:1;33738:15;:19;:42;;;;;33779:1;33761:15;:19;33738:42;33734:280;;;33797:47;33811:15;33828;33797:13;:47::i;:::-;33864:138;33897:18;33934:15;33968:19;;33864:138;;;;;;;;:::i;:::-;;;;;;;;33734:280;34048:17;;;;;;;;;;;34040:31;;34079:17;34040:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34026:75;;;;;34136:15;;;;;;;;;;;34128:29;;34179:21;34128:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34114:101;;;;;32646:1577;;;;;;;;;;32616:1607::o;17426:98::-;17484:7;17515:1;17511;:5;;;;:::i;:::-;17504:12;;17426:98;;;;:::o;17749:::-;17807:7;17838:1;17834;:5;;;;:::i;:::-;17827:12;;17749:98;;;;:::o;13843:125::-;;;;:::o;13976:124::-;;;;:::o;17069:98::-;17127:7;17158:1;17154;:5;;;;:::i;:::-;17147:12;;17069:98;;;;:::o;31725:503::-;31793:21;31831:1;31817:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31793:40;;31862:4;31844;31849:1;31844:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;31888:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31878:4;31883:1;31878:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;31923:62;31940:4;31955:15;31973:11;31923:8;:62::i;:::-;32024:15;:66;;;32105:11;32131:1;32147:4;32174;32194:15;32024:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31782:446;31725:503;:::o;32236:372::-;32319:62;32336:4;32351:15;32369:11;32319:8;:62::i;:::-;32394:15;:31;;;32433:9;32466:4;32486:11;32512:1;32528;32544:15;;;;;;;;;;;32574;32394:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;32236:372;;:::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:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:116::-;4846:21;4861:5;4846:21;:::i;:::-;4839:5;4836:32;4826:60;;4882:1;4879;4872:12;4826:60;4776:116;:::o;4898:133::-;4941:5;4979:6;4966:20;4957:29;;4995:30;5019:5;4995:30;:::i;:::-;4898:133;;;;:::o;5037:468::-;5102:6;5110;5159:2;5147:9;5138:7;5134:23;5130:32;5127:119;;;5165:79;;:::i;:::-;5127:119;5285:1;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5256:117;5412:2;5438:50;5480:7;5471:6;5460:9;5456:22;5438:50;:::i;:::-;5428:60;;5383:115;5037:468;;;;;:::o;5511:619::-;5588:6;5596;5604;5653:2;5641:9;5632:7;5628:23;5624:32;5621:119;;;5659:79;;:::i;:::-;5621:119;5779:1;5804:53;5849:7;5840:6;5829:9;5825:22;5804:53;:::i;:::-;5794:63;;5750:117;5906:2;5932:53;5977:7;5968:6;5957:9;5953:22;5932:53;:::i;:::-;5922:63;;5877:118;6034:2;6060:53;6105:7;6096:6;6085:9;6081:22;6060:53;:::i;:::-;6050:63;;6005:118;5511:619;;;;;:::o;6136:118::-;6223:24;6241:5;6223:24;:::i;:::-;6218:3;6211:37;6136:118;;:::o;6260:222::-;6353:4;6391:2;6380:9;6376:18;6368:26;;6404:71;6472:1;6461:9;6457:17;6448:6;6404:71;:::i;:::-;6260:222;;;;:::o;6488:86::-;6523:7;6563:4;6556:5;6552:16;6541:27;;6488:86;;;:::o;6580:112::-;6663:22;6679:5;6663:22;:::i;:::-;6658:3;6651:35;6580:112;;:::o;6698:214::-;6787:4;6825:2;6814:9;6810:18;6802:26;;6838:67;6902:1;6891:9;6887:17;6878:6;6838:67;:::i;:::-;6698:214;;;;:::o;6918:329::-;6977:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;6918:329;;;;:::o;7253:117::-;7362:1;7359;7352:12;7376:180;7424:77;7421:1;7414:88;7521:4;7518:1;7511:15;7545:4;7542:1;7535:15;7562:281;7645:27;7667:4;7645:27;:::i;:::-;7637:6;7633:40;7775:6;7763:10;7760:22;7739:18;7727:10;7724:34;7721:62;7718:88;;;7786:18;;:::i;:::-;7718:88;7826:10;7822:2;7815:22;7605:238;7562:281;;:::o;7849:129::-;7883:6;7910:20;;:::i;:::-;7900:30;;7939:33;7967:4;7959:6;7939:33;:::i;:::-;7849:129;;;:::o;7984:311::-;8061:4;8151:18;8143:6;8140:30;8137:56;;;8173:18;;:::i;:::-;8137:56;8223:4;8215:6;8211:17;8203:25;;8283:4;8277;8273:15;8265:23;;7984:311;;;:::o;8301:117::-;8410:1;8407;8400:12;8441:710;8537:5;8562:81;8578:64;8635:6;8578:64;:::i;:::-;8562:81;:::i;:::-;8553:90;;8663:5;8692:6;8685:5;8678:21;8726:4;8719:5;8715:16;8708:23;;8779:4;8771:6;8767:17;8759:6;8755:30;8808:3;8800:6;8797:15;8794:122;;;8827:79;;:::i;:::-;8794:122;8942:6;8925:220;8959:6;8954:3;8951:15;8925:220;;;9034:3;9063:37;9096:3;9084:10;9063:37;:::i;:::-;9058:3;9051:50;9130:4;9125:3;9121:14;9114:21;;9001:144;8985:4;8980:3;8976:14;8969:21;;8925:220;;;8929:21;8543:608;;8441:710;;;;;:::o;9174:370::-;9245:5;9294:3;9287:4;9279:6;9275:17;9271:27;9261:122;;9302:79;;:::i;:::-;9261:122;9419:6;9406:20;9444:94;9534:3;9526:6;9519:4;9511:6;9507:17;9444:94;:::i;:::-;9435:103;;9251:293;9174:370;;;;:::o;9550:678::-;9640:6;9648;9697:2;9685:9;9676:7;9672:23;9668:32;9665:119;;;9703:79;;:::i;:::-;9665:119;9851:1;9840:9;9836:17;9823:31;9881:18;9873:6;9870:30;9867:117;;;9903:79;;:::i;:::-;9867:117;10008:78;10078:7;10069:6;10058:9;10054:22;10008:78;:::i;:::-;9998:88;;9794:302;10135:2;10161:50;10203:7;10194:6;10183:9;10179:22;10161:50;:::i;:::-;10151:60;;10106:115;9550:678;;;;;:::o;10234:474::-;10302:6;10310;10359:2;10347:9;10338:7;10334:23;10330:32;10327:119;;;10365:79;;:::i;:::-;10327:119;10485:1;10510:53;10555:7;10546:6;10535:9;10531:22;10510:53;:::i;:::-;10500:63;;10456:117;10612:2;10638:53;10683:7;10674:6;10663:9;10659:22;10638:53;:::i;:::-;10628:63;;10583:118;10234:474;;;;;:::o;10714:180::-;10762:77;10759:1;10752:88;10859:4;10856:1;10849:15;10883:4;10880:1;10873:15;10900:320;10944:6;10981:1;10975:4;10971:12;10961:22;;11028:1;11022:4;11018:12;11049:18;11039:81;;11105:4;11097:6;11093:17;11083:27;;11039:81;11167:2;11159:6;11156:14;11136:18;11133:38;11130:84;;11186:18;;:::i;:::-;11130:84;10951:269;10900:320;;;:::o;11226:180::-;11274:77;11271:1;11264:88;11371:4;11368:1;11361:15;11395:4;11392:1;11385:15;11412:191;11452:3;11471:20;11489:1;11471:20;:::i;:::-;11466:25;;11505:20;11523:1;11505:20;:::i;:::-;11500:25;;11548:1;11545;11541:9;11534:16;;11569:3;11566:1;11563:10;11560:36;;;11576:18;;:::i;:::-;11560:36;11412:191;;;;:::o;11609:293::-;11749:34;11745:1;11737:6;11733:14;11726:58;11818:34;11813:2;11805:6;11801:15;11794:59;11887:7;11882:2;11874:6;11870:15;11863:32;11609:293;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;11908:366;;;:::o;12280:419::-;12446:4;12484:2;12473:9;12469:18;12461:26;;12533:9;12527:4;12523:20;12519:1;12508:9;12504:17;12497:47;12561:131;12687:4;12561:131;:::i;:::-;12553:139;;12280:419;;;:::o;12705:224::-;12845:34;12841:1;12833:6;12829:14;12822:58;12914:7;12909:2;12901:6;12897:15;12890:32;12705:224;:::o;12935:366::-;13077:3;13098:67;13162:2;13157:3;13098:67;:::i;:::-;13091:74;;13174:93;13263:3;13174:93;:::i;:::-;13292:2;13287:3;13283:12;13276:19;;12935:366;;;:::o;13307:419::-;13473:4;13511:2;13500:9;13496:18;13488:26;;13560:9;13554:4;13550:20;13546:1;13535:9;13531:17;13524:47;13588:131;13714:4;13588:131;:::i;:::-;13580:139;;13307:419;;;:::o;13732:180::-;13780:77;13777:1;13770:88;13877:4;13874:1;13867:15;13901:4;13898:1;13891:15;13918:233;13957:3;13980:24;13998:5;13980:24;:::i;:::-;13971:33;;14026:66;14019:5;14016:77;14013:103;;14096:18;;:::i;:::-;14013:103;14143:1;14136:5;14132:13;14125:20;;13918:233;;;:::o;14157:232::-;14297:34;14293:1;14285:6;14281:14;14274:58;14366:15;14361:2;14353:6;14349:15;14342:40;14157:232;:::o;14395:366::-;14537:3;14558:67;14622:2;14617:3;14558:67;:::i;:::-;14551:74;;14634:93;14723:3;14634:93;:::i;:::-;14752:2;14747:3;14743:12;14736:19;;14395:366;;;:::o;14767:419::-;14933:4;14971:2;14960:9;14956:18;14948:26;;15020:9;15014:4;15010:20;15006:1;14995:9;14991:17;14984:47;15048:131;15174:4;15048:131;:::i;:::-;15040:139;;14767:419;;;:::o;15192:223::-;15332:34;15328:1;15320:6;15316:14;15309:58;15401:6;15396:2;15388:6;15384:15;15377:31;15192:223;:::o;15421:366::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:419::-;15959:4;15997:2;15986:9;15982:18;15974:26;;16046:9;16040:4;16036:20;16032:1;16021:9;16017:17;16010:47;16074:131;16200:4;16074:131;:::i;:::-;16066:139;;15793:419;;;:::o;16218:221::-;16358:34;16354:1;16346:6;16342:14;16335:58;16427:4;16422:2;16414:6;16410:15;16403:29;16218:221;:::o;16445:366::-;16587:3;16608:67;16672:2;16667:3;16608:67;:::i;:::-;16601:74;;16684:93;16773:3;16684:93;:::i;:::-;16802:2;16797:3;16793:12;16786:19;;16445:366;;;:::o;16817:419::-;16983:4;17021:2;17010:9;17006:18;16998:26;;17070:9;17064:4;17060:20;17056:1;17045:9;17041:17;17034:47;17098:131;17224:4;17098:131;:::i;:::-;17090:139;;16817:419;;;:::o;17242:182::-;17382:34;17378:1;17370:6;17366:14;17359:58;17242:182;:::o;17430:366::-;17572:3;17593:67;17657:2;17652:3;17593:67;:::i;:::-;17586:74;;17669:93;17758:3;17669:93;:::i;:::-;17787:2;17782:3;17778:12;17771:19;;17430:366;;;:::o;17802:419::-;17968:4;18006:2;17995:9;17991:18;17983:26;;18055:9;18049:4;18045:20;18041:1;18030:9;18026:17;18019:47;18083:131;18209:4;18083:131;:::i;:::-;18075:139;;17802:419;;;:::o;18227:179::-;18367:31;18363:1;18355:6;18351:14;18344:55;18227:179;:::o;18412:366::-;18554:3;18575:67;18639:2;18634:3;18575:67;:::i;:::-;18568:74;;18651:93;18740:3;18651:93;:::i;:::-;18769:2;18764:3;18760:12;18753:19;;18412:366;;;:::o;18784:419::-;18950:4;18988:2;18977:9;18973:18;18965:26;;19037:9;19031:4;19027:20;19023:1;19012:9;19008:17;19001:47;19065:131;19191:4;19065:131;:::i;:::-;19057:139;;18784:419;;;:::o;19209:224::-;19349:34;19345:1;19337:6;19333:14;19326:58;19418:7;19413:2;19405:6;19401:15;19394:32;19209:224;:::o;19439:366::-;19581:3;19602:67;19666:2;19661:3;19602:67;:::i;:::-;19595:74;;19678:93;19767:3;19678:93;:::i;:::-;19796:2;19791:3;19787:12;19780:19;;19439:366;;;:::o;19811:419::-;19977:4;20015:2;20004:9;20000:18;19992:26;;20064:9;20058:4;20054:20;20050:1;20039:9;20035:17;20028:47;20092:131;20218:4;20092:131;:::i;:::-;20084:139;;19811:419;;;:::o;20236:222::-;20376:34;20372:1;20364:6;20360:14;20353:58;20445:5;20440:2;20432:6;20428:15;20421:30;20236:222;:::o;20464:366::-;20606:3;20627:67;20691:2;20686:3;20627:67;:::i;:::-;20620:74;;20703:93;20792:3;20703:93;:::i;:::-;20821:2;20816:3;20812:12;20805:19;;20464:366;;;:::o;20836:419::-;21002:4;21040:2;21029:9;21025:18;21017:26;;21089:9;21083:4;21079:20;21075:1;21064:9;21060:17;21053:47;21117:131;21243:4;21117:131;:::i;:::-;21109:139;;20836:419;;;:::o;21261:174::-;21401:26;21397:1;21389:6;21385:14;21378:50;21261:174;:::o;21441:366::-;21583:3;21604:67;21668:2;21663:3;21604:67;:::i;:::-;21597:74;;21680:93;21769:3;21680:93;:::i;:::-;21798:2;21793:3;21789:12;21782:19;;21441:366;;;:::o;21813:419::-;21979:4;22017:2;22006:9;22002:18;21994:26;;22066:9;22060:4;22056:20;22052:1;22041:9;22037:17;22030:47;22094:131;22220:4;22094:131;:::i;:::-;22086:139;;21813:419;;;:::o;22238:410::-;22278:7;22301:20;22319:1;22301:20;:::i;:::-;22296:25;;22335:20;22353:1;22335:20;:::i;:::-;22330:25;;22390:1;22387;22383:9;22412:30;22430:11;22412:30;:::i;:::-;22401:41;;22591:1;22582:7;22578:15;22575:1;22572:22;22552:1;22545:9;22525:83;22502:139;;22621:18;;:::i;:::-;22502:139;22286:362;22238:410;;;;:::o;22654:180::-;22702:77;22699:1;22692:88;22799:4;22796:1;22789:15;22823:4;22820:1;22813:15;22840:185;22880:1;22897:20;22915:1;22897:20;:::i;:::-;22892:25;;22931:20;22949:1;22931:20;:::i;:::-;22926:25;;22970:1;22960:35;;22975:18;;:::i;:::-;22960:35;23017:1;23014;23010:9;23005:14;;22840:185;;;;:::o;23031:194::-;23071:4;23091:20;23109:1;23091:20;:::i;:::-;23086:25;;23125:20;23143:1;23125:20;:::i;:::-;23120:25;;23169:1;23166;23162:9;23154:17;;23193:1;23187:4;23184:11;23181:37;;;23198:18;;:::i;:::-;23181:37;23031:194;;;;:::o;23231:225::-;23371:34;23367:1;23359:6;23355:14;23348:58;23440:8;23435:2;23427:6;23423:15;23416:33;23231:225;:::o;23462:366::-;23604:3;23625:67;23689:2;23684:3;23625:67;:::i;:::-;23618:74;;23701:93;23790:3;23701:93;:::i;:::-;23819:2;23814:3;23810:12;23803:19;;23462:366;;;:::o;23834:419::-;24000:4;24038:2;24027:9;24023:18;24015:26;;24087:9;24081:4;24077:20;24073:1;24062:9;24058:17;24051:47;24115:131;24241:4;24115:131;:::i;:::-;24107:139;;23834:419;;;:::o;24259:442::-;24408:4;24446:2;24435:9;24431:18;24423:26;;24459:71;24527:1;24516:9;24512:17;24503:6;24459:71;:::i;:::-;24540:72;24608:2;24597:9;24593:18;24584:6;24540:72;:::i;:::-;24622;24690:2;24679:9;24675:18;24666:6;24622:72;:::i;:::-;24259:442;;;;;;:::o;24707:147::-;24808:11;24845:3;24830:18;;24707:147;;;;:::o;24860:114::-;;:::o;24980:398::-;25139:3;25160:83;25241:1;25236:3;25160:83;:::i;:::-;25153:90;;25252:93;25341:3;25252:93;:::i;:::-;25370:1;25365:3;25361:11;25354:18;;24980:398;;;:::o;25384:379::-;25568:3;25590:147;25733:3;25590:147;:::i;:::-;25583:154;;25754:3;25747:10;;25384:379;;;:::o;25769:143::-;25826:5;25857:6;25851:13;25842:22;;25873:33;25900:5;25873:33;:::i;:::-;25769:143;;;;:::o;25918:351::-;25988:6;26037:2;26025:9;26016:7;26012:23;26008:32;26005:119;;;26043:79;;:::i;:::-;26005:119;26163:1;26188:64;26244:7;26235:6;26224:9;26220:22;26188:64;:::i;:::-;26178:74;;26134:128;25918:351;;;;:::o;26275:85::-;26320:7;26349:5;26338:16;;26275:85;;;:::o;26366:158::-;26424:9;26457:61;26475:42;26484:32;26510:5;26484:32;:::i;:::-;26475:42;:::i;:::-;26457:61;:::i;:::-;26444:74;;26366:158;;;:::o;26530:147::-;26625:45;26664:5;26625:45;:::i;:::-;26620:3;26613:58;26530:147;;:::o;26683:114::-;26750:6;26784:5;26778:12;26768:22;;26683:114;;;:::o;26803:184::-;26902:11;26936:6;26931:3;26924:19;26976:4;26971:3;26967:14;26952:29;;26803:184;;;;:::o;26993:132::-;27060:4;27083:3;27075:11;;27113:4;27108:3;27104:14;27096:22;;26993:132;;;:::o;27131:108::-;27208:24;27226:5;27208:24;:::i;:::-;27203:3;27196:37;27131:108;;:::o;27245:179::-;27314:10;27335:46;27377:3;27369:6;27335:46;:::i;:::-;27413:4;27408:3;27404:14;27390:28;;27245:179;;;;:::o;27430:113::-;27500:4;27532;27527:3;27523:14;27515:22;;27430:113;;;:::o;27579:732::-;27698:3;27727:54;27775:5;27727:54;:::i;:::-;27797:86;27876:6;27871:3;27797:86;:::i;:::-;27790:93;;27907:56;27957:5;27907:56;:::i;:::-;27986:7;28017:1;28002:284;28027:6;28024:1;28021:13;28002:284;;;28103:6;28097:13;28130:63;28189:3;28174:13;28130:63;:::i;:::-;28123:70;;28216:60;28269:6;28216:60;:::i;:::-;28206:70;;28062:224;28049:1;28046;28042:9;28037:14;;28002:284;;;28006:14;28302:3;28295:10;;27703:608;;;27579:732;;;;:::o;28317:831::-;28580:4;28618:3;28607:9;28603:19;28595:27;;28632:71;28700:1;28689:9;28685:17;28676:6;28632:71;:::i;:::-;28713:80;28789:2;28778:9;28774:18;28765:6;28713:80;:::i;:::-;28840:9;28834:4;28830:20;28825:2;28814:9;28810:18;28803:48;28868:108;28971:4;28962:6;28868:108;:::i;:::-;28860:116;;28986:72;29054:2;29043:9;29039:18;29030:6;28986:72;:::i;:::-;29068:73;29136:3;29125:9;29121:19;29112:6;29068:73;:::i;:::-;28317:831;;;;;;;;:::o;29154:807::-;29403:4;29441:3;29430:9;29426:19;29418:27;;29455:71;29523:1;29512:9;29508:17;29499:6;29455:71;:::i;:::-;29536:72;29604:2;29593:9;29589:18;29580:6;29536:72;:::i;:::-;29618:80;29694:2;29683:9;29679:18;29670:6;29618:80;:::i;:::-;29708;29784:2;29773:9;29769:18;29760:6;29708:80;:::i;:::-;29798:73;29866:3;29855:9;29851:19;29842:6;29798:73;:::i;:::-;29881;29949:3;29938:9;29934:19;29925:6;29881:73;:::i;:::-;29154:807;;;;;;;;;:::o;29967:143::-;30024:5;30055:6;30049:13;30040:22;;30071:33;30098:5;30071:33;:::i;:::-;29967:143;;;;:::o;30116:663::-;30204:6;30212;30220;30269:2;30257:9;30248:7;30244:23;30240:32;30237:119;;;30275:79;;:::i;:::-;30237:119;30395:1;30420:64;30476:7;30467:6;30456:9;30452:22;30420:64;:::i;:::-;30410:74;;30366:128;30533:2;30559:64;30615:7;30606:6;30595:9;30591:22;30559:64;:::i;:::-;30549:74;;30504:129;30672:2;30698:64;30754:7;30745:6;30734:9;30730:22;30698:64;:::i;:::-;30688:74;;30643:129;30116:663;;;;;:::o
Swarm Source
ipfs://d13565c36554a978269eeaec62b07cb8ee29b6e0f7d73261f32e8746a57b7e31
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.