ETH Price: $3,454.86 (+1.65%)

Token

MoonSoonDoge (MDOGE)
 

Overview

Max Total Supply

1,000,000,000,000 MDOGE

Holders

61

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
30,593,176,695.92725571 MDOGE

Value
$0.00
0x2065ca2e5a745f6e627e92e21d3036ed7d2bbdc1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MoonSoonDoge

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-03
*/

/**

MoonSoonDoge ERC20 
Tokenomics
Supply: 1000,000,000,000
Max TXN: 15%
No tax on buy
20% burning
2%  buy back
2% Marketing/Dev
3min cool down & anti dump
100% Locked
auto Renounced Contract after cool down
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
---------------------------------------------------------------------------
-------------------------------------------------------------------------


// SPDX-License-Identifier: Unlicensed
*/
pragma solidity ^0.8.4;

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


interface IERC20 {


    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    

}

/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
 * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this
 * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
 *
 * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
 * alternative consider {ERC20Votes}.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */
library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }


    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
     
library Address {

    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }


    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            
            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }   
    
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
    
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// 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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}



// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.
        
contract MoonSoonDoge is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    
    address payable public marketingAddress = payable(0x52533cE65a73f68f97e8FA8c1dFB01Da470957F5); // Marketing Address
    address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD;
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isSniper;
    address[] private _confirmedSnipers;
    mapping (address => uint) private cooldown;

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.
        
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000* 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.
        
        
        
        
    string private _name = "MoonSoonDoge";
    string private _symbol = "MDOGE";
    uint8 private _decimals = 9;

      // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        

    uint256 public _taxFee;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    uint256 private _feeRate = 4;
    uint256 launchTime;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool private cooldownEnabled = false;
    uint256 private _maxTxAmount = _tTotal;
    bool tradingOpen = false;
    
    event SwapETHForTokens(
        uint256 amountIn,
        address[] path
    );
    
    event SwapTokensForETH(
        uint256 amountIn,
        address[] path
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    

    constructor () {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }
    
    function liftMaxTx(uint256 taxFee) external onlyOwner{
        _maxTxAmount = taxFee;
    }

      // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        
        
    function initContract() external onlyOwner() {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        
        marketingAddress = payable(0x52533cE65a73f68f97e8FA8c1dFB01Da470957F5);
    }
    
    function openTrading() external onlyOwner() {
        _liquidityFee=3;
        _taxFee=10;
        tradingOpen = true;
        launchTime = block.timestamp;
        cooldownEnabled = true;
        _maxTxAmount = 1000000000000 * 10**9;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function setCooldownEnabled(bool onoff) external onlyOwner() {
        cooldownEnabled = onoff;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
  
    
    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }
  

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner() {

        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isSniper[to], "You have no power here!");
        require(!_isSniper[msg.sender], "You have no power here!");

       
        // buy
        if(from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to]) {
            require(tradingOpen, "Trading not yet enabled.");
            
            //antibot
            if (block.timestamp == launchTime) {
                _isSniper[to] = true;
                _confirmedSnipers.push(to);
            }
        }
        if (from != address(this)) {
            if (to == uniswapV2Pair && from != address(uniswapV2Router) && ! _isExcludedFromFee[from] && cooldownEnabled) {
                // Cooldown
                require(amount <= _maxTxAmount , "you are not allowed to trade bigger than 10000000 token in CoolDown time");
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        
        //sell        
        if (!inSwapAndLiquify && tradingOpen && to == uniswapV2Pair) {
            if(contractTokenBalance > 0) {
                if(contractTokenBalance > balanceOf(uniswapV2Pair).mul(_feeRate).div(100)) {
                    contractTokenBalance = balanceOf(uniswapV2Pair).mul(_feeRate).div(100);
                }
                swapTokens(contractTokenBalance);    
            }
          
        }
        
        bool takeFee = false;
        
        //take fee only on swaps
        if ( (from==uniswapV2Pair || to==uniswapV2Pair) && !(_isExcludedFromFee[from] || _isExcludedFromFee[to]) ) {
            takeFee = true;
        }
        






        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapTokens(uint256 contractTokenBalance) private lockTheSwap {
        swapTokensForEth(contractTokenBalance);
        
        //Send to Marketing address
        uint256 contractETHBalance = address(this).balance;
        if(contractETHBalance > 0) {
            sendETHToFee(address(this).balance);
        }
    }
    
    function sendETHToFee(uint256 amount) private {
        marketingAddress.transfer(amount);
    }
    

   
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this), // The contract
            block.timestamp
        );
        
        emit SwapTokensForETH(tokenAmount, path);
    }
    

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }
    
    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    
    function setMarketingAddress(address _marketingAddress) external onlyOwner() {
        marketingAddress = payable(_marketingAddress);
    }
   
    
    function transferToAddressETH(address payable recipient, uint256 amount) private {
        recipient.transfer(amount);
    }
    
    function isRemovedSniper(address account) public view returns (bool) {
        return _isSniper[account];
    }
    
    function _removeSniper(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap');
        require(!_isSniper[account], "Account is already blacklisted");
        _isSniper[account] = true;
        _confirmedSnipers.push(account);
    }

    function _amnestySniper(address account) external onlyOwner() {
        require(_isSniper[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _confirmedSnipers.length; i++) {
            if (_confirmedSnipers[i] == account) {
                _confirmedSnipers[i] = _confirmedSnipers[_confirmedSnipers.length - 1];
                _isSniper[account] = false;
                _confirmedSnipers.pop();
                break;
            }
        }
    }

    
    
     function setFeeRate(uint256 rate) external  onlyOwner() {
        _feeRate = rate;
    }

    
   
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"_amnestySniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"_removeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isRemovedSniper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"liftMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setFeeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingAddress","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600380546001600160a01b0319167352533ce65a73f68f97e8fa8c1dfb01da470957f51790556ddead000000000000000000000000608052683635c9adc5dea00000600d8190556200005990600019620002b8565b620000679060001962000257565b600e5560408051808201909152600c8082526b4d6f6f6e536f6f6e446f676560a01b60209092019182526200009f91601091620001b1565b50604080518082019091526005808252644d444f474560d81b6020909201918252620000ce91601191620001b1565b506012805460ff199081166009179091556013546014556015546016556004601755601a805460ff60a81b19169055600d54601b55601c805490911690553480156200011957600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e5433600081815260046020908152604080832094909455600d549351938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620002d9565b828054620001bf906200027b565b90600052602060002090601f016020900481019282620001e357600085556200022e565b82601f10620001fe57805160ff19168380011785556200022e565b828001600101855582156200022e579182015b828111156200022e57825182559160200191906001019062000211565b506200023c92915062000240565b5090565b5b808211156200023c576000815560010162000241565b6000828210156200027657634e487b7160e01b81526011600452602481fd5b500390565b600181811c908216806200029057607f821691505b60208210811415620002b257634e487b7160e01b600052602260045260246000fd5b50919050565b600082620002d457634e487b7160e01b81526012600452602481fd5b500690565b60805160601c612e17620002f860003960006103710152612e176000f3fe60806040526004361061024a5760003560e01c80635342acb411610139578063906e9dd0116100b6578063c9567bf91161007a578063c9567bf914610709578063dd62ed3e1461071e578063ea2f0b3714610764578063ec0b778b14610784578063f2fde38b146107a4578063f375b253146107c457600080fd5b8063906e9dd01461067457806395d89b4114610694578063a457c2d7146106a9578063a5ece941146106c9578063a9059cbb146106e957600080fd5b8063715018a6116100fd578063715018a6146105d35780638203f5fe146105e857806388f82020146105fd5780638da5cb5b146106365780638ee88c531461065457600080fd5b80635342acb41461050b5780635932ead114610544578063610d5b19146105645780636bc87c3a1461059d57806370a08231146105b357600080fd5b8063362a3c5d116101c7578063437823ec1161018b578063437823ec1461046b5780634549b0391461048b57806345596e2e146104ab57806349bd5a5e146104cb57806352390c02146104eb57600080fd5b8063362a3c5d146103d55780633685d419146103f557806339509351146104155780633b124fe7146104355780633bd5d1731461044b57600080fd5b806318160ddd1161020e57806318160ddd1461032a57806323b872dd1461033f57806327c8f8351461035f5780632d83811914610393578063313ce567146103b357600080fd5b8063061c82d01461025657806306fdde0314610278578063095ea7b3146102a357806313114a9d146102d35780631694505e146102f257600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004612b37565b6107e4565b005b34801561028457600080fd5b5061028d61081c565b60405161029a9190612bbd565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004612af2565b6108ae565b604051901515815260200161029a565b3480156102df57600080fd5b50600f545b60405190815260200161029a565b3480156102fe57600080fd5b50601954610312906001600160a01b031681565b6040516001600160a01b03909116815260200161029a565b34801561033657600080fd5b50600d546102e4565b34801561034b57600080fd5b506102c361035a366004612ab2565b6108c5565b34801561036b57600080fd5b506103127f000000000000000000000000000000000000000000000000000000000000000081565b34801561039f57600080fd5b506102e46103ae366004612b37565b61092e565b3480156103bf57600080fd5b5060125460405160ff909116815260200161029a565b3480156103e157600080fd5b506102766103f0366004612a42565b6109b2565b34801561040157600080fd5b50610276610410366004612a42565b610b98565b34801561042157600080fd5b506102c3610430366004612af2565b610d5d565b34801561044157600080fd5b506102e460135481565b34801561045757600080fd5b50610276610466366004612b37565b610d93565b34801561047757600080fd5b50610276610486366004612a42565b610e7d565b34801561049757600080fd5b506102e46104a6366004612b4f565b610ecb565b3480156104b757600080fd5b506102766104c6366004612b37565b610f58565b3480156104d757600080fd5b50601a54610312906001600160a01b031681565b3480156104f757600080fd5b50610276610506366004612a42565b610f87565b34801561051757600080fd5b506102c3610526366004612a42565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561055057600080fd5b5061027661055f366004612b1d565b6110da565b34801561057057600080fd5b506102c361057f366004612a42565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156105a957600080fd5b506102e460155481565b3480156105bf57600080fd5b506102e46105ce366004612a42565b611122565b3480156105df57600080fd5b50610276611181565b3480156105f457600080fd5b506102766111f5565b34801561060957600080fd5b506102c3610618366004612a42565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561064257600080fd5b506000546001600160a01b0316610312565b34801561066057600080fd5b5061027661066f366004612b37565b61142d565b34801561068057600080fd5b5061027661068f366004612a42565b61145c565b3480156106a057600080fd5b5061028d6114a8565b3480156106b557600080fd5b506102c36106c4366004612af2565b6114b7565b3480156106d557600080fd5b50600354610312906001600160a01b031681565b3480156106f557600080fd5b506102c3610704366004612af2565b611506565b34801561071557600080fd5b50610276611513565b34801561072a57600080fd5b506102e4610739366004612a7a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561077057600080fd5b5061027661077f366004612a42565b61157a565b34801561079057600080fd5b5061027661079f366004612b37565b6115c5565b3480156107b057600080fd5b506102766107bf366004612a42565b6115f4565b3480156107d057600080fd5b506102766107df366004612a42565b6116de565b6000546001600160a01b031633146108175760405162461bcd60e51b815260040161080e90612c10565b60405180910390fd5b601355565b60606010805461082b90612d10565b80601f016020809104026020016040519081016040528092919081815260200182805461085790612d10565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108bb338484611844565b5060015b92915050565b60006108d2848484611968565b610924843361091f85604051806060016040528060288152602001612d95602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190611eac565b611844565b5060019392505050565b6000600e548211156109955760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161080e565b600061099f611ee6565b90506109ab8382611f09565b9392505050565b6000546001600160a01b031633146109dc5760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b03811660009081526007602052604090205460ff16610a445760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015260640161080e565b60005b600854811015610b9457816001600160a01b031660088281548110610a7c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b825760088054610aa790600190612cf9565b81548110610ac557634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600880546001600160a01b039092169183908110610aff57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600790915260409020805460ff191690556008805480610b5c57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b8c81612d4b565b915050610a47565b5050565b6000546001600160a01b03163314610bc25760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b0381166000908152600b602052604090205460ff16610c2a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161080e565b60005b600c54811015610b9457816001600160a01b0316600c8281548110610c6257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610d4b57600c8054610c8d90600190612cf9565b81548110610cab57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600c80546001600160a01b039092169183908110610ce557634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600b90925220805460ff19169055600c805480610b5c57634e487b7160e01b600052603160045260246000fd5b80610d5581612d4b565b915050610c2d565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916108bb91859061091f9086611f4b565b336000818152600b602052604090205460ff1615610e085760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161080e565b6000610e1383611faa565b505050506001600160a01b038416600090815260046020526040902054919250610e3f91905082611ff9565b6001600160a01b038316600090815260046020526040902055600e54610e659082611ff9565b600e55600f54610e759084611f4b565b600f55505050565b6000546001600160a01b03163314610ea75760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000600d54831115610f1f5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161080e565b81610f3e576000610f2f84611faa565b509395506108bf945050505050565b6000610f4984611faa565b509295506108bf945050505050565b6000546001600160a01b03163314610f825760405162461bcd60e51b815260040161080e90612c10565b601755565b6000546001600160a01b03163314610fb15760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b0381166000908152600b602052604090205460ff161561101a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161080e565b6001600160a01b03811660009081526004602052604090205415611074576001600160a01b03811660009081526004602052604090205461105a9061092e565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b6000546001600160a01b031633146111045760405162461bcd60e51b815260040161080e90612c10565b601a8054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b0381166000908152600b602052604081205460ff161561115f57506001600160a01b031660009081526005602052604090205490565b6001600160a01b0382166000908152600460205260409020546108bf9061092e565b6000546001600160a01b031633146111ab5760405162461bcd60e51b815260040161080e90612c10565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461121f5760405162461bcd60e51b815260040161080e90612c10565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561127157600080fd5b505afa158015611285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a99190612a5e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156112f157600080fd5b505afa158015611305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113299190612a5e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b15801561137157600080fd5b505af1158015611385573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a99190612a5e565b601a80546001600160a01b03199081166001600160a01b039384161790915560198054821693831693909317909255600080549091168152600a6020526040808220805460ff1990811660019081179092553084529190922080549091169091179055600380549091167352533ce65a73f68f97e8fa8c1dfb01da470957f5179055565b6000546001600160a01b031633146114575760405162461bcd60e51b815260040161080e90612c10565b601555565b6000546001600160a01b031633146114865760405162461bcd60e51b815260040161080e90612c10565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b60606011805461082b90612d10565b60006108bb338461091f85604051806060016040528060258152602001612dbd602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190611eac565b60006108bb338484611968565b6000546001600160a01b0316331461153d5760405162461bcd60e51b815260040161080e90612c10565b6003601555600a601355601c805460ff1916600117905542601855601a805460ff60a81b1916600160a81b179055683635c9adc5dea00000601b55565b6000546001600160a01b031633146115a45760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6000546001600160a01b031633146115ef5760405162461bcd60e51b815260040161080e90612c10565b601b55565b6000546001600160a01b0316331461161e5760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b0381166116835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146117085760405162461bcd60e51b815260040161080e90612c10565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156117755760405162461bcd60e51b815260206004820152601c60248201527f57652063616e206e6f7420626c61636b6c69737420556e697377617000000000604482015260640161080e565b6001600160a01b03811660009081526007602052604090205460ff16156117de5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015260640161080e565b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b0383166118a65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161080e565b6001600160a01b0382166119075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161080e565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161080e565b6001600160a01b038216611a2e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161080e565b60008111611a905760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161080e565b6001600160a01b03821660009081526007602052604090205460ff1615611af35760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015260640161080e565b3360009081526007602052604090205460ff1615611b4d5760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015260640161080e565b601a546001600160a01b038481169116148015611b7857506019546001600160a01b03838116911614155b8015611b9d57506001600160a01b0382166000908152600a602052604090205460ff16155b15611c6457601c5460ff16611bf45760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e0000000000000000604482015260640161080e565b601854421415611c64576001600160a01b0382166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b03191690911790555b6001600160a01b0383163014611d6757601a546001600160a01b038381169116148015611c9f57506019546001600160a01b03848116911614155b8015611cc457506001600160a01b0383166000908152600a602052604090205460ff16155b8015611cd95750601a54600160a81b900460ff165b15611d6757601b54811115611d675760405162461bcd60e51b815260206004820152604860248201527f796f7520617265206e6f7420616c6c6f77656420746f2074726164652062696760448201527f676572207468616e20313030303030303020746f6b656e20696e20436f6f6c446064820152676f776e2074696d6560c01b608482015260a40161080e565b6000611d7230611122565b601a54909150600160a01b900460ff16158015611d915750601c5460ff165b8015611daa5750601a546001600160a01b038481169116145b15611e1c578015611e1c57601754601a54611de591606491611ddf9190611dd9906001600160a01b0316611122565b9061203b565b90611f09565b811115611e1357601754601a54611e1091606491611ddf9190611dd9906001600160a01b0316611122565b90505b611e1c816120ba565b601a546000906001600160a01b0386811691161480611e485750601a546001600160a01b038581169116145b8015611e9057506001600160a01b0385166000908152600a602052604090205460ff1680611e8e57506001600160a01b0384166000908152600a602052604090205460ff165b155b15611e99575060015b611ea5858585846120f7565b5050505050565b60008184841115611ed05760405162461bcd60e51b815260040161080e9190612bbd565b506000611edd8486612cf9565b95945050505050565b6000806000611ef3612222565b9092509050611f028282611f09565b9250505090565b60006109ab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123dc565b600080611f588385612ca2565b9050838110156109ab5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161080e565b6000806000806000806000806000611fc18a61240a565b9250925092506000806000611fdf8d8686611fda611ee6565b61244c565b919f909e50909c50959a5093985091965092945050505050565b60006109ab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611eac565b60008261204a575060006108bf565b60006120568385612cda565b9050826120638583612cba565b146109ab5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161080e565b601a805460ff60a01b1916600160a01b1790556120d68161249c565b4780156120e6576120e64761265a565b5050601a805460ff60a01b19169055565b8061210457612104612694565b6001600160a01b0384166000908152600b602052604090205460ff16801561214557506001600160a01b0383166000908152600b602052604090205460ff16155b1561215a576121558484846126c2565b612206565b6001600160a01b0384166000908152600b602052604090205460ff1615801561219b57506001600160a01b0383166000908152600b602052604090205460ff165b156121ab576121558484846127e8565b6001600160a01b0384166000908152600b602052604090205460ff1680156121eb57506001600160a01b0383166000908152600b602052604090205460ff165b156121fb57612155848484612891565b612206848484612904565b8061221c5761221c601454601355601654601555565b50505050565b600e54600d546000918291825b600c548110156123ac578260046000600c848154811061225f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122d857508160056000600c84815481106122b157634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122ee57600e54600d54945094505050509091565b61234260046000600c848154811061231657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ff9565b925061239860056000600c848154811061236c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ff9565b9150806123a481612d4b565b91505061222f565b50600d54600e546123bc91611f09565b8210156123d357600e54600d549350935050509091565b90939092509050565b600081836123fd5760405162461bcd60e51b815260040161080e9190612bbd565b506000611edd8486612cba565b60008060008061241985612948565b9050600061242686612964565b9050600061243e826124388986611ff9565b90611ff9565b979296509094509092505050565b600080808061245b888661203b565b90506000612469888761203b565b90506000612477888861203b565b90506000612489826124388686611ff9565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124df57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561253357600080fd5b505afa158015612547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256b9190612a5e565b8160018151811061258c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526019546125b29130911684611844565b60195460405163791ac94760e01b81526001600160a01b039091169063791ac947906125eb908590600090869030904290600401612c66565b600060405180830381600087803b15801561260557600080fd5b505af1158015612619573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161264e929190612c45565b60405180910390a15050565b6003546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b94573d6000803e3d6000fd5b6013541580156126a45750601554155b156126ab57565b601380546014556015805460165560009182905555565b6000806000806000806126d487611faa565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127069088611ff9565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546127359087611ff9565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546127649086611f4b565b6001600160a01b03891660009081526004602052604090205561278681612980565b6127908483612a09565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127d591815260200190565b60405180910390a3505050505050505050565b6000806000806000806127fa87611faa565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061282c9087611ff9565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546128629084611f4b565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546127649086611f4b565b6000806000806000806128a387611faa565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506128d59088611ff9565b6001600160a01b038a1660009081526005602090815260408083209390935560049052205461282c9087611ff9565b60008060008060008061291687611faa565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127359087611ff9565b60006108bf6064611ddf6013548561203b90919063ffffffff16565b60006108bf6064611ddf6015548561203b90919063ffffffff16565b600061298a611ee6565b90506000612998838361203b565b306000908152600460205260409020549091506129b59082611f4b565b30600090815260046020908152604080832093909355600b9052205460ff1615612a0457306000908152600560205260409020546129f39084611f4b565b306000908152600560205260409020555b505050565b600e54612a169083611ff9565b600e55600f54612a269082611f4b565b600f555050565b80358015158114612a3d57600080fd5b919050565b600060208284031215612a53578081fd5b81356109ab81612d7c565b600060208284031215612a6f578081fd5b81516109ab81612d7c565b60008060408385031215612a8c578081fd5b8235612a9781612d7c565b91506020830135612aa781612d7c565b809150509250929050565b600080600060608486031215612ac6578081fd5b8335612ad181612d7c565b92506020840135612ae181612d7c565b929592945050506040919091013590565b60008060408385031215612b04578182fd5b8235612b0f81612d7c565b946020939093013593505050565b600060208284031215612b2e578081fd5b6109ab82612a2d565b600060208284031215612b48578081fd5b5035919050565b60008060408385031215612b61578182fd5b82359150612b7160208401612a2d565b90509250929050565b6000815180845260208085019450808401835b83811015612bb25781516001600160a01b031687529582019590820190600101612b8d565b509495945050505050565b6000602080835283518082850152825b81811015612be957858101830151858201604001528201612bcd565b81811115612bfa5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b828152604060208201526000612c5e6040830184612b7a565b949350505050565b85815284602082015260a060408201526000612c8560a0830186612b7a565b6001600160a01b0394909416606083015250608001529392505050565b60008219821115612cb557612cb5612d66565b500190565b600082612cd557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612cf457612cf4612d66565b500290565b600082821015612d0b57612d0b612d66565b500390565b600181811c90821680612d2457607f821691505b60208210811415612d4557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d5f57612d5f612d66565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114612d9157600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b3fee133d733973041ade56a8b8b24a44a3cd59be0dd53f24d8a288315e76f0864736f6c63430008040033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80635342acb411610139578063906e9dd0116100b6578063c9567bf91161007a578063c9567bf914610709578063dd62ed3e1461071e578063ea2f0b3714610764578063ec0b778b14610784578063f2fde38b146107a4578063f375b253146107c457600080fd5b8063906e9dd01461067457806395d89b4114610694578063a457c2d7146106a9578063a5ece941146106c9578063a9059cbb146106e957600080fd5b8063715018a6116100fd578063715018a6146105d35780638203f5fe146105e857806388f82020146105fd5780638da5cb5b146106365780638ee88c531461065457600080fd5b80635342acb41461050b5780635932ead114610544578063610d5b19146105645780636bc87c3a1461059d57806370a08231146105b357600080fd5b8063362a3c5d116101c7578063437823ec1161018b578063437823ec1461046b5780634549b0391461048b57806345596e2e146104ab57806349bd5a5e146104cb57806352390c02146104eb57600080fd5b8063362a3c5d146103d55780633685d419146103f557806339509351146104155780633b124fe7146104355780633bd5d1731461044b57600080fd5b806318160ddd1161020e57806318160ddd1461032a57806323b872dd1461033f57806327c8f8351461035f5780632d83811914610393578063313ce567146103b357600080fd5b8063061c82d01461025657806306fdde0314610278578063095ea7b3146102a357806313114a9d146102d35780631694505e146102f257600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004612b37565b6107e4565b005b34801561028457600080fd5b5061028d61081c565b60405161029a9190612bbd565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004612af2565b6108ae565b604051901515815260200161029a565b3480156102df57600080fd5b50600f545b60405190815260200161029a565b3480156102fe57600080fd5b50601954610312906001600160a01b031681565b6040516001600160a01b03909116815260200161029a565b34801561033657600080fd5b50600d546102e4565b34801561034b57600080fd5b506102c361035a366004612ab2565b6108c5565b34801561036b57600080fd5b506103127f000000000000000000000000000000000000000000000000000000000000dead81565b34801561039f57600080fd5b506102e46103ae366004612b37565b61092e565b3480156103bf57600080fd5b5060125460405160ff909116815260200161029a565b3480156103e157600080fd5b506102766103f0366004612a42565b6109b2565b34801561040157600080fd5b50610276610410366004612a42565b610b98565b34801561042157600080fd5b506102c3610430366004612af2565b610d5d565b34801561044157600080fd5b506102e460135481565b34801561045757600080fd5b50610276610466366004612b37565b610d93565b34801561047757600080fd5b50610276610486366004612a42565b610e7d565b34801561049757600080fd5b506102e46104a6366004612b4f565b610ecb565b3480156104b757600080fd5b506102766104c6366004612b37565b610f58565b3480156104d757600080fd5b50601a54610312906001600160a01b031681565b3480156104f757600080fd5b50610276610506366004612a42565b610f87565b34801561051757600080fd5b506102c3610526366004612a42565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561055057600080fd5b5061027661055f366004612b1d565b6110da565b34801561057057600080fd5b506102c361057f366004612a42565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156105a957600080fd5b506102e460155481565b3480156105bf57600080fd5b506102e46105ce366004612a42565b611122565b3480156105df57600080fd5b50610276611181565b3480156105f457600080fd5b506102766111f5565b34801561060957600080fd5b506102c3610618366004612a42565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561064257600080fd5b506000546001600160a01b0316610312565b34801561066057600080fd5b5061027661066f366004612b37565b61142d565b34801561068057600080fd5b5061027661068f366004612a42565b61145c565b3480156106a057600080fd5b5061028d6114a8565b3480156106b557600080fd5b506102c36106c4366004612af2565b6114b7565b3480156106d557600080fd5b50600354610312906001600160a01b031681565b3480156106f557600080fd5b506102c3610704366004612af2565b611506565b34801561071557600080fd5b50610276611513565b34801561072a57600080fd5b506102e4610739366004612a7a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561077057600080fd5b5061027661077f366004612a42565b61157a565b34801561079057600080fd5b5061027661079f366004612b37565b6115c5565b3480156107b057600080fd5b506102766107bf366004612a42565b6115f4565b3480156107d057600080fd5b506102766107df366004612a42565b6116de565b6000546001600160a01b031633146108175760405162461bcd60e51b815260040161080e90612c10565b60405180910390fd5b601355565b60606010805461082b90612d10565b80601f016020809104026020016040519081016040528092919081815260200182805461085790612d10565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108bb338484611844565b5060015b92915050565b60006108d2848484611968565b610924843361091f85604051806060016040528060288152602001612d95602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190611eac565b611844565b5060019392505050565b6000600e548211156109955760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161080e565b600061099f611ee6565b90506109ab8382611f09565b9392505050565b6000546001600160a01b031633146109dc5760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b03811660009081526007602052604090205460ff16610a445760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015260640161080e565b60005b600854811015610b9457816001600160a01b031660088281548110610a7c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b825760088054610aa790600190612cf9565b81548110610ac557634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600880546001600160a01b039092169183908110610aff57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600790915260409020805460ff191690556008805480610b5c57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b8c81612d4b565b915050610a47565b5050565b6000546001600160a01b03163314610bc25760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b0381166000908152600b602052604090205460ff16610c2a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161080e565b60005b600c54811015610b9457816001600160a01b0316600c8281548110610c6257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610d4b57600c8054610c8d90600190612cf9565b81548110610cab57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600c80546001600160a01b039092169183908110610ce557634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600b90925220805460ff19169055600c805480610b5c57634e487b7160e01b600052603160045260246000fd5b80610d5581612d4b565b915050610c2d565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916108bb91859061091f9086611f4b565b336000818152600b602052604090205460ff1615610e085760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161080e565b6000610e1383611faa565b505050506001600160a01b038416600090815260046020526040902054919250610e3f91905082611ff9565b6001600160a01b038316600090815260046020526040902055600e54610e659082611ff9565b600e55600f54610e759084611f4b565b600f55505050565b6000546001600160a01b03163314610ea75760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000600d54831115610f1f5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161080e565b81610f3e576000610f2f84611faa565b509395506108bf945050505050565b6000610f4984611faa565b509295506108bf945050505050565b6000546001600160a01b03163314610f825760405162461bcd60e51b815260040161080e90612c10565b601755565b6000546001600160a01b03163314610fb15760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b0381166000908152600b602052604090205460ff161561101a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161080e565b6001600160a01b03811660009081526004602052604090205415611074576001600160a01b03811660009081526004602052604090205461105a9061092e565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b6000546001600160a01b031633146111045760405162461bcd60e51b815260040161080e90612c10565b601a8054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b0381166000908152600b602052604081205460ff161561115f57506001600160a01b031660009081526005602052604090205490565b6001600160a01b0382166000908152600460205260409020546108bf9061092e565b6000546001600160a01b031633146111ab5760405162461bcd60e51b815260040161080e90612c10565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461121f5760405162461bcd60e51b815260040161080e90612c10565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561127157600080fd5b505afa158015611285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a99190612a5e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156112f157600080fd5b505afa158015611305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113299190612a5e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b15801561137157600080fd5b505af1158015611385573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a99190612a5e565b601a80546001600160a01b03199081166001600160a01b039384161790915560198054821693831693909317909255600080549091168152600a6020526040808220805460ff1990811660019081179092553084529190922080549091169091179055600380549091167352533ce65a73f68f97e8fa8c1dfb01da470957f5179055565b6000546001600160a01b031633146114575760405162461bcd60e51b815260040161080e90612c10565b601555565b6000546001600160a01b031633146114865760405162461bcd60e51b815260040161080e90612c10565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b60606011805461082b90612d10565b60006108bb338461091f85604051806060016040528060258152602001612dbd602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190611eac565b60006108bb338484611968565b6000546001600160a01b0316331461153d5760405162461bcd60e51b815260040161080e90612c10565b6003601555600a601355601c805460ff1916600117905542601855601a805460ff60a81b1916600160a81b179055683635c9adc5dea00000601b55565b6000546001600160a01b031633146115a45760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6000546001600160a01b031633146115ef5760405162461bcd60e51b815260040161080e90612c10565b601b55565b6000546001600160a01b0316331461161e5760405162461bcd60e51b815260040161080e90612c10565b6001600160a01b0381166116835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146117085760405162461bcd60e51b815260040161080e90612c10565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156117755760405162461bcd60e51b815260206004820152601c60248201527f57652063616e206e6f7420626c61636b6c69737420556e697377617000000000604482015260640161080e565b6001600160a01b03811660009081526007602052604090205460ff16156117de5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015260640161080e565b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b0383166118a65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161080e565b6001600160a01b0382166119075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161080e565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161080e565b6001600160a01b038216611a2e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161080e565b60008111611a905760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161080e565b6001600160a01b03821660009081526007602052604090205460ff1615611af35760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015260640161080e565b3360009081526007602052604090205460ff1615611b4d5760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015260640161080e565b601a546001600160a01b038481169116148015611b7857506019546001600160a01b03838116911614155b8015611b9d57506001600160a01b0382166000908152600a602052604090205460ff16155b15611c6457601c5460ff16611bf45760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e0000000000000000604482015260640161080e565b601854421415611c64576001600160a01b0382166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b03191690911790555b6001600160a01b0383163014611d6757601a546001600160a01b038381169116148015611c9f57506019546001600160a01b03848116911614155b8015611cc457506001600160a01b0383166000908152600a602052604090205460ff16155b8015611cd95750601a54600160a81b900460ff165b15611d6757601b54811115611d675760405162461bcd60e51b815260206004820152604860248201527f796f7520617265206e6f7420616c6c6f77656420746f2074726164652062696760448201527f676572207468616e20313030303030303020746f6b656e20696e20436f6f6c446064820152676f776e2074696d6560c01b608482015260a40161080e565b6000611d7230611122565b601a54909150600160a01b900460ff16158015611d915750601c5460ff165b8015611daa5750601a546001600160a01b038481169116145b15611e1c578015611e1c57601754601a54611de591606491611ddf9190611dd9906001600160a01b0316611122565b9061203b565b90611f09565b811115611e1357601754601a54611e1091606491611ddf9190611dd9906001600160a01b0316611122565b90505b611e1c816120ba565b601a546000906001600160a01b0386811691161480611e485750601a546001600160a01b038581169116145b8015611e9057506001600160a01b0385166000908152600a602052604090205460ff1680611e8e57506001600160a01b0384166000908152600a602052604090205460ff165b155b15611e99575060015b611ea5858585846120f7565b5050505050565b60008184841115611ed05760405162461bcd60e51b815260040161080e9190612bbd565b506000611edd8486612cf9565b95945050505050565b6000806000611ef3612222565b9092509050611f028282611f09565b9250505090565b60006109ab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123dc565b600080611f588385612ca2565b9050838110156109ab5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161080e565b6000806000806000806000806000611fc18a61240a565b9250925092506000806000611fdf8d8686611fda611ee6565b61244c565b919f909e50909c50959a5093985091965092945050505050565b60006109ab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611eac565b60008261204a575060006108bf565b60006120568385612cda565b9050826120638583612cba565b146109ab5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161080e565b601a805460ff60a01b1916600160a01b1790556120d68161249c565b4780156120e6576120e64761265a565b5050601a805460ff60a01b19169055565b8061210457612104612694565b6001600160a01b0384166000908152600b602052604090205460ff16801561214557506001600160a01b0383166000908152600b602052604090205460ff16155b1561215a576121558484846126c2565b612206565b6001600160a01b0384166000908152600b602052604090205460ff1615801561219b57506001600160a01b0383166000908152600b602052604090205460ff165b156121ab576121558484846127e8565b6001600160a01b0384166000908152600b602052604090205460ff1680156121eb57506001600160a01b0383166000908152600b602052604090205460ff165b156121fb57612155848484612891565b612206848484612904565b8061221c5761221c601454601355601654601555565b50505050565b600e54600d546000918291825b600c548110156123ac578260046000600c848154811061225f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122d857508160056000600c84815481106122b157634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122ee57600e54600d54945094505050509091565b61234260046000600c848154811061231657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ff9565b925061239860056000600c848154811061236c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ff9565b9150806123a481612d4b565b91505061222f565b50600d54600e546123bc91611f09565b8210156123d357600e54600d549350935050509091565b90939092509050565b600081836123fd5760405162461bcd60e51b815260040161080e9190612bbd565b506000611edd8486612cba565b60008060008061241985612948565b9050600061242686612964565b9050600061243e826124388986611ff9565b90611ff9565b979296509094509092505050565b600080808061245b888661203b565b90506000612469888761203b565b90506000612477888861203b565b90506000612489826124388686611ff9565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124df57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561253357600080fd5b505afa158015612547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256b9190612a5e565b8160018151811061258c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526019546125b29130911684611844565b60195460405163791ac94760e01b81526001600160a01b039091169063791ac947906125eb908590600090869030904290600401612c66565b600060405180830381600087803b15801561260557600080fd5b505af1158015612619573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161264e929190612c45565b60405180910390a15050565b6003546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b94573d6000803e3d6000fd5b6013541580156126a45750601554155b156126ab57565b601380546014556015805460165560009182905555565b6000806000806000806126d487611faa565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127069088611ff9565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546127359087611ff9565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546127649086611f4b565b6001600160a01b03891660009081526004602052604090205561278681612980565b6127908483612a09565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127d591815260200190565b60405180910390a3505050505050505050565b6000806000806000806127fa87611faa565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061282c9087611ff9565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546128629084611f4b565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546127649086611f4b565b6000806000806000806128a387611faa565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506128d59088611ff9565b6001600160a01b038a1660009081526005602090815260408083209390935560049052205461282c9087611ff9565b60008060008060008061291687611faa565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127359087611ff9565b60006108bf6064611ddf6013548561203b90919063ffffffff16565b60006108bf6064611ddf6015548561203b90919063ffffffff16565b600061298a611ee6565b90506000612998838361203b565b306000908152600460205260409020549091506129b59082611f4b565b30600090815260046020908152604080832093909355600b9052205460ff1615612a0457306000908152600560205260409020546129f39084611f4b565b306000908152600560205260409020555b505050565b600e54612a169083611ff9565b600e55600f54612a269082611f4b565b600f555050565b80358015158114612a3d57600080fd5b919050565b600060208284031215612a53578081fd5b81356109ab81612d7c565b600060208284031215612a6f578081fd5b81516109ab81612d7c565b60008060408385031215612a8c578081fd5b8235612a9781612d7c565b91506020830135612aa781612d7c565b809150509250929050565b600080600060608486031215612ac6578081fd5b8335612ad181612d7c565b92506020840135612ae181612d7c565b929592945050506040919091013590565b60008060408385031215612b04578182fd5b8235612b0f81612d7c565b946020939093013593505050565b600060208284031215612b2e578081fd5b6109ab82612a2d565b600060208284031215612b48578081fd5b5035919050565b60008060408385031215612b61578182fd5b82359150612b7160208401612a2d565b90509250929050565b6000815180845260208085019450808401835b83811015612bb25781516001600160a01b031687529582019590820190600101612b8d565b509495945050505050565b6000602080835283518082850152825b81811015612be957858101830151858201604001528201612bcd565b81811115612bfa5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b828152604060208201526000612c5e6040830184612b7a565b949350505050565b85815284602082015260a060408201526000612c8560a0830186612b7a565b6001600160a01b0394909416606083015250608001529392505050565b60008219821115612cb557612cb5612d66565b500190565b600082612cd557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612cf457612cf4612d66565b500290565b600082821015612d0b57612d0b612d66565b500390565b600181811c90821680612d2457607f821691505b60208210811415612d4557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d5f57612d5f612d66565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114612d9157600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b3fee133d733973041ade56a8b8b24a44a3cd59be0dd53f24d8a288315e76f0864736f6c63430008040033

Deployed Bytecode Sourcemap

20149:22712:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41156:98;;;;;;;;;;-1:-1:-1;41156:98:0;;;;;:::i;:::-;;:::i;:::-;;26304:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27216:161;;;;;;;;;;-1:-1:-1;27216:161:0;;;;;:::i;:::-;;:::i;:::-;;;3938:14:1;;3931:22;3913:41;;3901:2;3886:18;27216:161:0;3868:92:1;28448:87:0;;;;;;;;;;-1:-1:-1;28517:10:0;;28448:87;;;12305:25:1;;;12293:2;12278:18;28448:87:0;12260:76:1;23835:41:0;;;;;;;;;;-1:-1:-1;23835:41:0;;;;-1:-1:-1;;;;;23835:41:0;;;;;;-1:-1:-1;;;;;3196:32:1;;;3178:51;;3166:2;3151:18;23835:41:0;3133:102:1;26581:95:0;;;;;;;;;;-1:-1:-1;26661:7:0;;26581:95;;27385:313;;;;;;;;;;-1:-1:-1;27385:313:0;;;;;:::i;:::-;;:::i;20398:81::-;;;;;;;;;;;;;;;29390:253;;;;;;;;;;-1:-1:-1;29390:253:0;;;;;:::i;:::-;;:::i;26490:83::-;;;;;;;;;;-1:-1:-1;26556:9:0;;26490:83;;26556:9;;;;13407:36:1;;13395:2;13380:18;26490:83:0;13362:87:1;42160:482:0;;;;;;;;;;-1:-1:-1;42160:482:0;;;;;:::i;:::-;;:::i;29994:479::-;;;;;;;;;;-1:-1:-1;29994:479:0;;;;;:::i;:::-;;:::i;27817:218::-;;;;;;;;;;-1:-1:-1;27817:218:0;;;;;:::i;:::-;;:::i;23589:22::-;;;;;;;;;;;;;;;;28557:377;;;;;;;;;;-1:-1:-1;28557:377:0;;;;;:::i;:::-;;:::i;40911:111::-;;;;;;;;;;-1:-1:-1;40911:111:0;;;;;:::i;:::-;;:::i;28946:436::-;;;;;;;;;;-1:-1:-1;28946:436:0;;;;;:::i;:::-;;:::i;42663:90::-;;;;;;;;;;-1:-1:-1;42663:90:0;;;;;:::i;:::-;;:::i;23883:28::-;;;;;;;;;;-1:-1:-1;23883:28:0;;;;-1:-1:-1;;;;;23883:28:0;;;29651:335;;;;;;;;;;-1:-1:-1;29651:335:0;;;;;:::i;:::-;;:::i;40776:123::-;;;;;;;;;;-1:-1:-1;40776:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;40864:27:0;40840:4;40864:27;;;:18;:27;;;;;;;;;40776:123;27706:103;;;;;;;;;;-1:-1:-1;27706:103:0;;;;;:::i;:::-;;:::i;41702:113::-;;;;;;;;;;-1:-1:-1;41702:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;41789:18:0;41765:4;41789:18;;;:9;:18;;;;;;;;;41702:113;23672:28;;;;;;;;;;;;;;;;26684:198;;;;;;;;;;-1:-1:-1;26684:198:0;;;;;:::i;:::-;;:::i;10655:148::-;;;;;;;;;;;;;:::i;25494:543::-;;;;;;;;;;;;;:::i;28320:120::-;;;;;;;;;;-1:-1:-1;28320:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;28412:20:0;28388:4;28412:20;;;:11;:20;;;;;;;;;28320:120;10430:79;;;;;;;;;;-1:-1:-1;10468:7:0;10495:6;-1:-1:-1;;;;;10495:6:0;10430:79;;41266:122;;;;;;;;;;-1:-1:-1;41266:122:0;;;;;:::i;:::-;;:::i;41406:141::-;;;;;;;;;;-1:-1:-1;41406:141:0;;;;;:::i;:::-;;:::i;26395:87::-;;;;;;;;;;;;;:::i;28043:269::-;;;;;;;;;;-1:-1:-1;28043:269:0;;;;;:::i;:::-;;:::i;20277:93::-;;;;;;;;;;-1:-1:-1;20277:93:0;;;;-1:-1:-1;;;;;20277:93:0;;;26890:167;;;;;;;;;;-1:-1:-1;26890:167:0;;;;;:::i;:::-;;:::i;26049:247::-;;;;;;;;;;;;;:::i;27065:143::-;;;;;;;;;;-1:-1:-1;27065:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;27173:18:0;;;27146:7;27173:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27065:143;41034:110;;;;;;;;;;-1:-1:-1;41034:110:0;;;;;:::i;:::-;;:::i;24525:93::-;;;;;;;;;;-1:-1:-1;24525:93:0;;;;;:::i;:::-;;:::i;10811:244::-;;;;;;;;;;-1:-1:-1;10811:244:0;;;;;:::i;:::-;;:::i;41827:325::-;;;;;;;;;;-1:-1:-1;41827:325:0;;;;;:::i;:::-;;:::i;41156:98::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;;;;;;;;;41230:7:::1;:16:::0;41156:98::o;26304:83::-;26341:13;26374:5;26367:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26304:83;:::o;27216:161::-;27291:4;27308:39;1502:10;27331:7;27340:6;27308:8;:39::i;:::-;-1:-1:-1;27365:4:0;27216:161;;;;;:::o;27385:313::-;27483:4;27500:36;27510:6;27518:9;27529:6;27500:9;:36::i;:::-;27547:121;27556:6;1502:10;27578:89;27616:6;27578:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27578:19:0;;;;;;:11;:19;;;;;;;;1502:10;27578:33;;;;;;;;;;:37;:89::i;:::-;27547:8;:121::i;:::-;-1:-1:-1;27686:4:0;27385:313;;;;;:::o;29390:253::-;29456:7;29495;;29484;:18;;29476:73;;;;-1:-1:-1;;;29476:73:0;;5414:2:1;29476:73:0;;;5396:21:1;5453:2;5433:18;;;5426:30;5492:34;5472:18;;;5465:62;-1:-1:-1;;;5543:18:1;;;5536:40;5593:19;;29476:73:0;5386:232:1;29476:73:0;29560:19;29583:10;:8;:10::i;:::-;29560:33;-1:-1:-1;29611:24:0;:7;29560:33;29611:11;:24::i;:::-;29604:31;29390:253;-1:-1:-1;;;29390:253:0:o;42160:482::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42241:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;42233:57;;;::::0;-1:-1:-1;;;42233:57:0;;9239:2:1;42233:57:0::1;::::0;::::1;9221:21:1::0;9278:2;9258:18;;;9251:30;9317:28;9297:18;;;9290:56;9363:18;;42233:57:0::1;9211:176:1::0;42233:57:0::1;42306:9;42301:334;42325:17;:24:::0;42321:28;::::1;42301:334;;;42399:7;-1:-1:-1::0;;;;;42375:31:0::1;:17;42393:1;42375:20;;;;;;-1:-1:-1::0;;;42375:20:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;42375:20:0::1;:31;42371:253;;;42450:17;42468:24:::0;;:28:::1;::::0;42495:1:::1;::::0;42468:28:::1;:::i;:::-;42450:47;;;;;;-1:-1:-1::0;;;42450:47:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;42427:17:::1;:20:::0;;-1:-1:-1;;;;;42450:47:0;;::::1;::::0;42445:1;;42427:20;::::1;;;-1:-1:-1::0;;;42427:20:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:70:::0;;-1:-1:-1;;;;;;42427:70:0::1;-1:-1:-1::0;;;;;42427:70:0;;::::1;;::::0;;42516:18;;::::1;::::0;;:9:::1;:18:::0;;;;;;:26;;-1:-1:-1;;42516:26:0::1;::::0;;42561:17:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;42561:23:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;42561:23:0;;;;;-1:-1:-1;;;;;;42561:23:0::1;::::0;;;;;42301:334:::1;42160:482:::0;:::o;42371:253::-:1;42351:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42301:334;;;;42160:482:::0;:::o;29994:479::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30076:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;30068:60;;;::::0;-1:-1:-1;;;30068:60:0;;6991:2:1;30068:60:0::1;::::0;::::1;6973:21:1::0;7030:2;7010:18;;;7003:30;7069:29;7049:18;;;7042:57;7116:18;;30068:60:0::1;6963:177:1::0;30068:60:0::1;30144:9;30139:327;30163:9;:16:::0;30159:20;::::1;30139:327;;;30221:7;-1:-1:-1::0;;;;;30205:23:0::1;:9;30215:1;30205:12;;;;;;-1:-1:-1::0;;;30205:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;30205:12:0::1;:23;30201:254;;;30264:9;30274:16:::0;;:20:::1;::::0;30293:1:::1;::::0;30274:20:::1;:::i;:::-;30264:31;;;;;;-1:-1:-1::0;;;30264:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;30249:9:::1;:12:::0;;-1:-1:-1;;;;;30264:31:0;;::::1;::::0;30259:1;;30249:12;::::1;;;-1:-1:-1::0;;;30249:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;30249:46:0::1;-1:-1:-1::0;;;;;30249:46:0;;::::1;;::::0;;30314:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;30353:11:::1;:20:::0;;;;:28;;-1:-1:-1;;30353:28:0::1;::::0;;30400:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;30400:15:0::1;;;;;;;;30201:254;30181:3:::0;::::1;::::0;::::1;:::i;:::-;;;;30139:327;;27817:218:::0;1502:10;27905:4;27954:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27954:34:0;;;;;;;;;;27905:4;;27922:83;;27945:7;;27954:50;;27993:10;27954:38;:50::i;28557:377::-;1502:10;28609:14;28658:19;;;:11;:19;;;;;;;;28657:20;28649:77;;;;-1:-1:-1;;;28649:77:0;;11596:2:1;28649:77:0;;;11578:21:1;11635:2;11615:18;;;11608:30;11674:34;11654:18;;;11647:62;-1:-1:-1;;;11725:18:1;;;11718:42;11777:19;;28649:77:0;11568:234:1;28649:77:0;28738:15;28762:19;28773:7;28762:10;:19::i;:::-;-1:-1:-1;;;;;;;;;28810:15:0;;;;;;:7;:15;;;;;;28737:44;;-1:-1:-1;28810:28:0;;:15;-1:-1:-1;28737:44:0;28810:19;:28::i;:::-;-1:-1:-1;;;;;28792:15:0;;;;;;:7;:15;;;;;:46;28859:7;;:20;;28871:7;28859:11;:20::i;:::-;28849:7;:30;28903:10;;:23;;28918:7;28903:14;:23::i;:::-;28890:10;:36;-1:-1:-1;;;28557:377:0:o;40911:111::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40980:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;40980:34:0::1;41010:4;40980:34;::::0;;40911:111::o;28946:436::-;29036:7;29075;;29064;:18;;29056:62;;;;-1:-1:-1;;;29056:62:0;;7706:2:1;29056:62:0;;;7688:21:1;7745:2;7725:18;;;7718:30;7784:33;7764:18;;;7757:61;7835:18;;29056:62:0;7678:181:1;29056:62:0;29134:17;29129:246;;29169:15;29193:19;29204:7;29193:10;:19::i;:::-;-1:-1:-1;29168:44:0;;-1:-1:-1;29227:14:0;;-1:-1:-1;;;;;29227:14:0;29129:246;29276:23;29307:19;29318:7;29307:10;:19::i;:::-;-1:-1:-1;29274:52:0;;-1:-1:-1;29341:22:0;;-1:-1:-1;;;;;29341:22:0;42663:90;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;42730:8:::1;:15:::0;42663:90::o;29651:335::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29736:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;29735:21;29727:61;;;::::0;-1:-1:-1;;;29727:61:0;;6991:2:1;29727:61:0::1;::::0;::::1;6973:21:1::0;7030:2;7010:18;;;7003:30;7069:29;7049:18;;;7042:57;7116:18;;29727:61:0::1;6963:177:1::0;29727:61:0::1;-1:-1:-1::0;;;;;29802:16:0;::::1;29821:1;29802:16:::0;;;:7:::1;:16;::::0;;;;;:20;29799:108:::1;;-1:-1:-1::0;;;;;29878:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;29858:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;29839:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;29799:108:::1;-1:-1:-1::0;;;;;29917:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;29917:27:0::1;29940:4;29917:27:::0;;::::1;::::0;;;29955:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;29955:23:0::1;::::0;;::::1;::::0;;29651:335::o;27706:103::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;27778:15:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;27778:23:0::1;-1:-1:-1::0;;;;27778:23:0;;::::1;::::0;;;::::1;::::0;;27706:103::o;26684:198::-;-1:-1:-1;;;;;26774:20:0;;26750:7;26774:20;;;:11;:20;;;;;;;;26770:49;;;-1:-1:-1;;;;;;26803:16:0;;;;;:7;:16;;;;;;;26684:198::o;26770:49::-;-1:-1:-1;;;;;26857:16:0;;;;;;:7;:16;;;;;;26837:37;;:19;:37::i;10655:148::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;10762:1:::1;10746:6:::0;;10725:40:::1;::::0;-1:-1:-1;;;;;10746:6:0;;::::1;::::0;10725:40:::1;::::0;10762:1;;10725:40:::1;10793:1;10776:19:::0;;-1:-1:-1;;;;;;10776:19:0::1;::::0;;10655:148::o;25494:543::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;25550:35:::1;25607:42;25550:100;;25695:16;-1:-1:-1::0;;;;;25695:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;25677:66:0::1;;25752:4;25759:16;-1:-1:-1::0;;;;;25759:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25677:106;::::0;-1:-1:-1;;;;;;25677:106:0::1;::::0;;;;;;-1:-1:-1;;;;;3694:15:1;;;25677:106:0::1;::::0;::::1;3676:34:1::0;3746:15;;3726:18;;;3719:43;3611:18;;25677:106:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25661:13;:122:::0;;-1:-1:-1;;;;;;25661:122:0;;::::1;-1:-1:-1::0;;;;;25661:122:0;;::::1;;::::0;;;25796:15:::1;:34:::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;10495:6:0;;;;;25843:27;;:18:::1;:27;::::0;;;;;:34;;-1:-1:-1;;25843:34:0;;::::1;-1:-1:-1::0;25843:34:0;;::::1;::::0;;;25915:4:::1;25888:33:::0;;;;;;:40;;;;::::1;::::0;;::::1;::::0;;25959:16:::1;:70:::0;;;;::::1;25986:42;25959:70;::::0;;25494:543::o;41266:122::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;41352:13:::1;:28:::0;41266:122::o;41406:141::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;41494:16:::1;:45:::0;;-1:-1:-1;;;;;;41494:45:0::1;-1:-1:-1::0;;;;;41494:45:0;;;::::1;::::0;;;::::1;::::0;;41406:141::o;26395:87::-;26434:13;26467:7;26460:14;;;;;:::i;28043:269::-;28136:4;28153:129;1502:10;28176:7;28185:96;28224:15;28185:96;;;;;;;;;;;;;;;;;1502:10;28185:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28185:34:0;;;;;;;;;;;;:38;:96::i;26890:167::-;26968:4;26985:42;1502:10;27009:9;27020:6;26985:9;:42::i;26049:247::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;26118:1:::1;26104:13;:15:::0;26138:2:::1;26130:7;:10:::0;26151:11:::1;:18:::0;;-1:-1:-1;;26151:18:0::1;26165:4;26151:18;::::0;;26193:15:::1;26180:10;:28:::0;26219:15:::1;:22:::0;;-1:-1:-1;;;;26219:22:0::1;-1:-1:-1::0;;;26219:22:0::1;::::0;;26267:21:::1;26252:12;:36:::0;26049:247::o;41034:110::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41101:27:0::1;41131:5;41101:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;41101:35:0::1;::::0;;41034:110::o;24525:93::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;24589:12:::1;:21:::0;24525:93::o;10811:244::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10900:22:0;::::1;10892:73;;;::::0;-1:-1:-1;;;10892:73:0;;5825:2:1;10892:73:0::1;::::0;::::1;5807:21:1::0;5864:2;5844:18;;;5837:30;5903:34;5883:18;;;5876:62;-1:-1:-1;;;5954:18:1;;;5947:36;6000:19;;10892:73:0::1;5797:228:1::0;10892:73:0::1;11002:6;::::0;;10981:38:::1;::::0;-1:-1:-1;;;;;10981:38:0;;::::1;::::0;11002:6;::::1;::::0;10981:38:::1;::::0;::::1;11030:6;:17:::0;;-1:-1:-1;;;;;;11030:17:0::1;-1:-1:-1::0;;;;;11030:17:0;;;::::1;::::0;;;::::1;::::0;;10811:244::o;41827:325::-;10564:6;;-1:-1:-1;;;;;10564:6:0;1502:10;10564:22;10556:67;;;;-1:-1:-1;;;10556:67:0;;;;;;;:::i;:::-;41918:42:::1;-1:-1:-1::0;;;;;41907:53:0;::::1;;;41899:94;;;::::0;-1:-1:-1;;;41899:94:0;;9594:2:1;41899:94:0::1;::::0;::::1;9576:21:1::0;9633:2;9613:18;;;9606:30;9672;9652:18;;;9645:58;9720:18;;41899:94:0::1;9566:178:1::0;41899:94:0::1;-1:-1:-1::0;;;;;42013:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;42012:19;42004:62;;;::::0;-1:-1:-1;;;42004:62:0;;7347:2:1;42004:62:0::1;::::0;::::1;7329:21:1::0;7386:2;7366:18;;;7359:30;7425:32;7405:18;;;7398:60;7475:18;;42004:62:0::1;7319:180:1::0;42004:62:0::1;-1:-1:-1::0;;;;;42077:18:0::1;;::::0;;;:9:::1;:18;::::0;;;;:25;;-1:-1:-1;;42077:25:0::1;42098:4;42077:25:::0;;::::1;::::0;;;42113:17:::1;:31:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;42113:31:0::1;::::0;;::::1;::::0;;41827:325::o;30481:337::-;-1:-1:-1;;;;;30574:19:0;;30566:68;;;;-1:-1:-1;;;30566:68:0;;10838:2:1;30566:68:0;;;10820:21:1;10877:2;10857:18;;;10850:30;10916:34;10896:18;;;10889:62;-1:-1:-1;;;10967:18:1;;;10960:34;11011:19;;30566:68:0;10810:226:1;30566:68:0;-1:-1:-1;;;;;30653:21:0;;30645:68;;;;-1:-1:-1;;;30645:68:0;;6232:2:1;30645:68:0;;;6214:21:1;6271:2;6251:18;;;6244:30;6310:34;6290:18;;;6283:62;-1:-1:-1;;;6361:18:1;;;6354:32;6403:19;;30645:68:0;6204:224:1;30645:68:0;-1:-1:-1;;;;;30726:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30778:32;;12305:25:1;;;30778:32:0;;12278:18:1;30778:32:0;;;;;;;30481:337;;;:::o;30826:2031::-;-1:-1:-1;;;;;30948:18:0;;30940:68;;;;-1:-1:-1;;;30940:68:0;;10432:2:1;30940:68:0;;;10414:21:1;10471:2;10451:18;;;10444:30;10510:34;10490:18;;;10483:62;-1:-1:-1;;;10561:18:1;;;10554:35;10606:19;;30940:68:0;10404:227:1;30940:68:0;-1:-1:-1;;;;;31027:16:0;;31019:64;;;;-1:-1:-1;;;31019:64:0;;5010:2:1;31019:64:0;;;4992:21:1;5049:2;5029:18;;;5022:30;5088:34;5068:18;;;5061:62;-1:-1:-1;;;5139:18:1;;;5132:33;5182:19;;31019:64:0;4982:225:1;31019:64:0;31111:1;31102:6;:10;31094:64;;;;-1:-1:-1;;;31094:64:0;;8829:2:1;31094:64:0;;;8811:21:1;8868:2;8848:18;;;8841:30;8907:34;8887:18;;;8880:62;-1:-1:-1;;;8958:18:1;;;8951:39;9007:19;;31094:64:0;8801:231:1;31094:64:0;-1:-1:-1;;;;;31178:13:0;;;;;;:9;:13;;;;;;;;31177:14;31169:50;;;;-1:-1:-1;;;31169:50:0;;12009:2:1;31169:50:0;;;11991:21:1;12048:2;12028:18;;;12021:30;-1:-1:-1;;;12067:18:1;;;12060:53;12130:18;;31169:50:0;11981:173:1;31169:50:0;31249:10;31239:21;;;;:9;:21;;;;;;;;31238:22;31230:58;;;;-1:-1:-1;;;31230:58:0;;12009:2:1;31230:58:0;;;11991:21:1;12048:2;12028:18;;;12021:30;-1:-1:-1;;;12067:18:1;;;12060:53;12130:18;;31230:58:0;11981:173:1;31230:58:0;31337:13;;-1:-1:-1;;;;;31329:21:0;;;31337:13;;31329:21;:55;;;;-1:-1:-1;31368:15:0;;-1:-1:-1;;;;;31354:30:0;;;31368:15;;31354:30;;31329:55;:82;;;;-1:-1:-1;;;;;;31389:22:0;;;;;;:18;:22;;;;;;;;31388:23;31329:82;31326:348;;;31436:11;;;;31428:48;;;;-1:-1:-1;;;31428:48:0;;11243:2:1;31428:48:0;;;11225:21:1;11282:2;11262:18;;;11255:30;11321:26;11301:18;;;11294:54;11365:18;;31428:48:0;11215:174:1;31428:48:0;31551:10;;31532:15;:29;31528:135;;;-1:-1:-1;;;;;31582:13:0;;;;;;:9;:13;;;;;:20;;-1:-1:-1;;31582:20:0;31598:4;31582:20;;;;;;31621:17;:26;;;;;;;;;;;;;;-1:-1:-1;;;;;;31621:26:0;;;;;;31528:135;-1:-1:-1;;;;;31688:21:0;;31704:4;31688:21;31684:335;;31736:13;;-1:-1:-1;;;;;31730:19:0;;;31736:13;;31730:19;:55;;;;-1:-1:-1;31769:15:0;;-1:-1:-1;;;;;31753:32:0;;;31769:15;;31753:32;;31730:55;:85;;;;-1:-1:-1;;;;;;31791:24:0;;;;;;:18;:24;;;;;;;;31789:26;31730:85;:104;;;;-1:-1:-1;31819:15:0;;-1:-1:-1;;;31819:15:0;;;;31730:104;31726:282;;;31902:12;;31892:6;:22;;31884:108;;;;-1:-1:-1;;;31884:108:0;;9951:2:1;31884:108:0;;;9933:21:1;9990:2;9970:18;;;9963:30;10029:34;10009:18;;;10002:62;10100:34;10080:18;;;10073:62;-1:-1:-1;;;10151:19:1;;;10144:39;10200:19;;31884:108:0;9923:302:1;31884:108:0;32031:28;32062:24;32080:4;32062:9;:24::i;:::-;32136:16;;32031:55;;-1:-1:-1;;;;32136:16:0;;;;32135:17;:32;;;;-1:-1:-1;32156:11:0;;;;32135:32;:55;;;;-1:-1:-1;32177:13:0;;-1:-1:-1;;;;;32171:19:0;;;32177:13;;32171:19;32135:55;32131:405;;;32210:24;;32207:306;;32310:8;;32291:13;;32281:47;;32324:3;;32281:38;;32310:8;32281:24;;-1:-1:-1;;;;;32291:13:0;32281:9;:24::i;:::-;:28;;:38::i;:::-;:42;;:47::i;:::-;32258:20;:70;32255:188;;;32405:8;;32386:13;;32376:47;;32419:3;;32376:38;;32405:8;32376:24;;-1:-1:-1;;;;;32386:13:0;32376:9;:24::i;:47::-;32353:70;;32255:188;32461:32;32472:20;32461:10;:32::i;:::-;32643:13;;32556:12;;-1:-1:-1;;;;;32637:19:0;;;32643:13;;32637:19;;:40;;-1:-1:-1;32664:13:0;;-1:-1:-1;;;;;32660:17:0;;;32664:13;;32660:17;32637:40;32636:99;;;;-1:-1:-1;;;;;;32684:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32712:22:0;;;;;;:18;:22;;;;;;;;32684:50;32682:53;32636:99;32631:148;;;-1:-1:-1;32763:4:0;32631:148;32811:38;32826:4;32831:2;32834:6;32841:7;32811:14;:38::i;:::-;30826:2031;;;;;:::o;5004:192::-;5090:7;5126:12;5118:6;;;;5110:29;;;;-1:-1:-1;;;5110:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5150:9:0;5162:5;5166:1;5162;:5;:::i;:::-;5150:17;5004:192;-1:-1:-1;;;;;5004:192:0:o;38926:163::-;38967:7;38988:15;39005;39024:19;:17;:19::i;:::-;38987:56;;-1:-1:-1;38987:56:0;-1:-1:-1;39061:20:0;38987:56;;39061:11;:20::i;:::-;39054:27;;;;38926:163;:::o;5464:132::-;5522:7;5549:39;5553:1;5556;5549:39;;;;;;;;;;;;;;;;;:3;:39::i;4671:181::-;4729:7;;4761:5;4765:1;4761;:5;:::i;:::-;4749:17;;4790:1;4785;:6;;4777:46;;;;-1:-1:-1;;;4777:46:0;;6635:2:1;4777:46:0;;;6617:21:1;6674:2;6654:18;;;6647:30;6713:29;6693:18;;;6686:57;6760:18;;4777:46:0;6607:177:1;37724:419:0;37783:7;37792;37801;37810;37819;37828;37849:23;37874:12;37888:18;37910:20;37922:7;37910:11;:20::i;:::-;37848:82;;;;;;37942:15;37959:23;37984:12;38000:50;38012:7;38021:4;38027:10;38039;:8;:10::i;:::-;38000:11;:50::i;:::-;37941:109;;;;-1:-1:-1;37941:109:0;;-1:-1:-1;38101:15:0;;-1:-1:-1;38118:4:0;;-1:-1:-1;38124:10:0;;-1:-1:-1;37724:419:0;;-1:-1:-1;;;;;37724:419:0:o;4860:136::-;4918:7;4945:43;4949:1;4952;4945:43;;;;;;;;;;;;;;;;;:3;:43::i;5204:250::-;5262:7;5286:6;5282:47;;-1:-1:-1;5316:1:0;5309:8;;5282:47;5341:9;5353:5;5357:1;5353;:5;:::i;:::-;5341:17;-1:-1:-1;5386:1:0;5377:5;5381:1;5341:17;5377:5;:::i;:::-;:10;5369:56;;;;-1:-1:-1;;;5369:56:0;;8066:2:1;5369:56:0;;;8048:21:1;8105:2;8085:18;;;8078:30;8144:34;8124:18;;;8117:62;-1:-1:-1;;;8195:18:1;;;8188:31;8236:19;;5369:56:0;8038:223:1;32865:334:0;24297:16;:23;;-1:-1:-1;;;;24297:23:0;-1:-1:-1;;;24297:23:0;;;32946:38:::1;32963:20:::0;32946:16:::1;:38::i;:::-;33071:21;33106:22:::0;;33103:89:::1;;33145:35;33158:21;33145:12;:35::i;:::-;-1:-1:-1::0;;24343:16:0;:24;;-1:-1:-1;;;;24343:24:0;;;32865:334::o;34529:704::-;34640:7;34636:40;;34662:14;:12;:14::i;:::-;-1:-1:-1;;;;;34701:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;34725:22:0;;;;;;:11;:22;;;;;;;;34724:23;34701:46;34697:467;;;34764:48;34786:6;34794:9;34805:6;34764:21;:48::i;:::-;34697:467;;;-1:-1:-1;;;;;34835:19:0;;;;;;:11;:19;;;;;;;;34834:20;:46;;;;-1:-1:-1;;;;;;34858:22:0;;;;;;:11;:22;;;;;;;;34834:46;34830:334;;;34897:46;34917:6;34925:9;34936:6;34897:19;:46::i;34830:334::-;-1:-1:-1;;;;;34965:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;34988:22:0;;;;;;:11;:22;;;;;;;;34965:45;34961:203;;;35027:48;35049:6;35057:9;35068:6;35027:21;:48::i;34961:203::-;35108:44;35126:6;35134:9;35145:6;35108:17;:44::i;:::-;35188:7;35184:41;;35210:15;40697;;40687:7;:25;40739:21;;40723:13;:37;40643:125;35210:15;34529:704;;;;:::o;39097:561::-;39194:7;;39230;;39147;;;;;39254:289;39278:9;:16;39274:20;;39254:289;;;39344:7;39320;:21;39328:9;39338:1;39328:12;;;;;;-1:-1:-1;;;39328:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39328:12:0;39320:21;;;;;;;;;;;;;:31;;:66;;;39379:7;39355;:21;39363:9;39373:1;39363:12;;;;;;-1:-1:-1;;;39363:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39363:12:0;39355:21;;;;;;;;;;;;;:31;39320:66;39316:97;;;39396:7;;39405;;39388:25;;;;;;;39097:561;;:::o;39316:97::-;39438:34;39450:7;:21;39458:9;39468:1;39458:12;;;;;;-1:-1:-1;;;39458:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39458:12:0;39450:21;;;;;;;;;;;;;39438:7;;:11;:34::i;:::-;39428:44;;39497:34;39509:7;:21;39517:9;39527:1;39517:12;;;;;;-1:-1:-1;;;39517:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39517:12:0;39509:21;;;;;;;;;;;;;39497:7;;:11;:34::i;:::-;39487:44;-1:-1:-1;39296:3:0;;;;:::i;:::-;;;;39254:289;;;-1:-1:-1;39579:7:0;;39567;;:20;;:11;:20::i;:::-;39557:7;:30;39553:61;;;39597:7;;39606;;39589:25;;;;;;39097:561;;:::o;39553:61::-;39633:7;;39642;;-1:-1:-1;39097:561:0;-1:-1:-1;39097:561:0:o;5604:278::-;5690:7;5725:12;5718:5;5710:28;;;;-1:-1:-1;;;5710:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5749:9:0;5761:5;5765:1;5761;:5;:::i;38151:330::-;38211:7;38220;38229;38249:12;38264:24;38280:7;38264:15;:24::i;:::-;38249:39;;38299:18;38320:30;38342:7;38320:21;:30::i;:::-;38299:51;-1:-1:-1;38361:23:0;38387:33;38299:51;38387:17;:7;38399:4;38387:11;:17::i;:::-;:21;;:33::i;:::-;38361:59;38456:4;;-1:-1:-1;38462:10:0;;-1:-1:-1;38151:330:0;;-1:-1:-1;;;38151:330:0:o;38489:429::-;38604:7;;;;38660:24;:7;38672:11;38660;:24::i;:::-;38642:42;-1:-1:-1;38695:12:0;38710:21;:4;38719:11;38710:8;:21::i;:::-;38695:36;-1:-1:-1;38742:18:0;38763:27;:10;38778:11;38763:14;:27::i;:::-;38742:48;-1:-1:-1;38801:23:0;38827:33;38742:48;38827:17;:7;38839:4;38827:11;:17::i;:33::-;38879:7;;;;-1:-1:-1;38905:4:0;;-1:-1:-1;38489:429:0;;-1:-1:-1;;;;;;;38489:429:0:o;33328:666::-;33478:16;;;33492:1;33478:16;;;;;;;;33454:21;;33478:16;;;;;;;;;;-1:-1:-1;33478:16:0;33454:40;;33523:4;33505;33510:1;33505:7;;;;;;-1:-1:-1;;;33505:7:0;;;;;;;;;-1:-1:-1;;;;;33505:23:0;;;:7;;;;;;;;;;:23;;;;33549:15;;:22;;;-1:-1:-1;;;33549:22:0;;;;:15;;;;;:20;;:22;;;;;33505:7;;33549:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33539:4;33544:1;33539:7;;;;;;-1:-1:-1;;;33539:7:0;;;;;;;;;-1:-1:-1;;;;;33539:32:0;;;:7;;;;;;;;;:32;33616:15;;33584:62;;33601:4;;33616:15;33634:11;33584:8;:62::i;:::-;33685:15;;:240;;-1:-1:-1;;;33685:240:0;;-1:-1:-1;;;;;33685:15:0;;;;:66;;:240;;33766:11;;33685:15;;33836:4;;33863;;33899:15;;33685:240;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33951:35;33968:11;33981:4;33951:35;;;;;;;:::i;:::-;;;;;;;;33328:666;;:::o;33211:98::-;33268:16;;:33;;-1:-1:-1;;;;;33268:16:0;;;;:33;;;;;33294:6;;33268:16;:33;:16;:33;33294:6;33268:16;:33;;;;;;;;;;;;;;;;;;;40381:250;40427:7;;:12;:34;;;;-1:-1:-1;40443:13:0;;:18;40427:34;40424:46;;;40381:250::o;40424:46::-;40508:7;;;40490:15;:25;40550:13;;;40526:21;:37;-1:-1:-1;40584:11:0;;;;40606:17;40381:250::o;36345:566::-;36448:15;36465:23;36490:12;36504:23;36529:12;36543:18;36565:19;36576:7;36565:10;:19::i;:::-;-1:-1:-1;;;;;36613:15:0;;;;;;:7;:15;;;;;;36447:137;;-1:-1:-1;36447:137:0;;-1:-1:-1;36447:137:0;;-1:-1:-1;36447:137:0;-1:-1:-1;36447:137:0;-1:-1:-1;36447:137:0;-1:-1:-1;36613:28:0;;36633:7;36613:19;:28::i;:::-;-1:-1:-1;;;;;36595:15:0;;;;;;:7;:15;;;;;;;;:46;;;;36670:7;:15;;;;:28;;36690:7;36670:19;:28::i;:::-;-1:-1:-1;;;;;36652:15:0;;;;;;;:7;:15;;;;;;:46;;;;36730:18;;;;;;;:39;;36753:15;36730:22;:39::i;:::-;-1:-1:-1;;;;;36709:18:0;;;;;;:7;:18;;;;;:60;36783:26;36798:10;36783:14;:26::i;:::-;36820:23;36832:4;36838;36820:11;:23::i;:::-;36876:9;-1:-1:-1;;;;;36859:44:0;36868:6;-1:-1:-1;;;;;36859:44:0;;36887:15;36859:44;;;;12305:25:1;;12293:2;12278:18;;12260:76;36859:44:0;;;;;;;;36345:566;;;;;;;;;:::o;35751:586::-;35852:15;35869:23;35894:12;35908:23;35933:12;35947:18;35969:19;35980:7;35969:10;:19::i;:::-;-1:-1:-1;;;;;36017:15:0;;;;;;:7;:15;;;;;;35851:137;;-1:-1:-1;35851:137:0;;-1:-1:-1;35851:137:0;;-1:-1:-1;35851:137:0;-1:-1:-1;35851:137:0;-1:-1:-1;35851:137:0;-1:-1:-1;36017:28:0;;35851:137;36017:19;:28::i;:::-;-1:-1:-1;;;;;35999:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;36077:18;;;;;:7;:18;;;;;:39;;36100:15;36077:22;:39::i;:::-;-1:-1:-1;;;;;36056:18:0;;;;;;:7;:18;;;;;;;;:60;;;;36148:7;:18;;;;:39;;36171:15;36148:22;:39::i;36919:642::-;37022:15;37039:23;37064:12;37078:23;37103:12;37117:18;37139:19;37150:7;37139:10;:19::i;:::-;-1:-1:-1;;;;;37187:15:0;;;;;;:7;:15;;;;;;37021:137;;-1:-1:-1;37021:137:0;;-1:-1:-1;37021:137:0;;-1:-1:-1;37021:137:0;-1:-1:-1;37021:137:0;-1:-1:-1;37021:137:0;-1:-1:-1;37187:28:0;;37207:7;37187:19;:28::i;:::-;-1:-1:-1;;;;;37169:15:0;;;;;;:7;:15;;;;;;;;:46;;;;37244:7;:15;;;;:28;;37264:7;37244:19;:28::i;35241:502::-;35340:15;35357:23;35382:12;35396:23;35421:12;35435:18;35457:19;35468:7;35457:10;:19::i;:::-;-1:-1:-1;;;;;35505:15:0;;;;;;:7;:15;;;;;;35339:137;;-1:-1:-1;35339:137:0;;-1:-1:-1;35339:137:0;;-1:-1:-1;35339:137:0;-1:-1:-1;35339:137:0;-1:-1:-1;35339:137:0;-1:-1:-1;35505:28:0;;35339:137;35505:19;:28::i;40037:154::-;40101:7;40128:55;40167:5;40128:20;40140:7;;40128;:11;;:20;;;;:::i;40203:166::-;40273:7;40300:61;40345:5;40300:26;40312:13;;40300:7;:11;;:26;;;;:::i;39670:355::-;39733:19;39756:10;:8;:10::i;:::-;39733:33;-1:-1:-1;39777:18:0;39798:27;:10;39733:33;39798:14;:27::i;:::-;39877:4;39861:22;;;;:7;:22;;;;;;39777:48;;-1:-1:-1;39861:38:0;;39777:48;39861:26;:38::i;:::-;39852:4;39836:22;;;;:7;:22;;;;;;;;:63;;;;39913:11;:26;;;;;;39910:107;;;39995:4;39979:22;;;;:7;:22;;;;;;:38;;40006:10;39979:26;:38::i;:::-;39970:4;39954:22;;;;:7;:22;;;;;:63;39910:107;39670:355;;;:::o;37569:147::-;37647:7;;:17;;37659:4;37647:11;:17::i;:::-;37637:7;:27;37688:10;;:20;;37703:4;37688:14;:20::i;:::-;37675:10;:33;-1:-1:-1;;37569:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:257::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;511:6;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;707:398::-;775:6;783;836:2;824:9;815:7;811:23;807:32;804:2;;;857:6;849;842:22;804:2;901:9;888:23;920:31;945:5;920:31;:::i;:::-;970:5;-1:-1:-1;1027:2:1;1012:18;;999:32;1040:33;999:32;1040:33;:::i;:::-;1092:7;1082:17;;;794:311;;;;;:::o;1110:466::-;1187:6;1195;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:31;1365:5;1340:31;:::i;:::-;1390:5;-1:-1:-1;1447:2:1;1432:18;;1419:32;1460:33;1419:32;1460:33;:::i;:::-;1214:362;;1512:7;;-1:-1:-1;;;1566:2:1;1551:18;;;;1538:32;;1214:362::o;1581:325::-;1649:6;1657;1710:2;1698:9;1689:7;1685:23;1681:32;1678:2;;;1731:6;1723;1716:22;1678:2;1775:9;1762:23;1794:31;1819:5;1794:31;:::i;:::-;1844:5;1896:2;1881:18;;;;1868:32;;-1:-1:-1;;;1668:238:1:o;1911:190::-;1967:6;2020:2;2008:9;1999:7;1995:23;1991:32;1988:2;;;2041:6;2033;2026:22;1988:2;2069:26;2085:9;2069:26;:::i;2106:190::-;2165:6;2218:2;2206:9;2197:7;2193:23;2189:32;2186:2;;;2239:6;2231;2224:22;2186:2;-1:-1:-1;2267:23:1;;2176:120;-1:-1:-1;2176:120:1:o;2301:258::-;2366:6;2374;2427:2;2415:9;2406:7;2402:23;2398:32;2395:2;;;2448:6;2440;2433:22;2395:2;2489:9;2476:23;2466:33;;2518:35;2549:2;2538:9;2534:18;2518:35;:::i;:::-;2508:45;;2385:174;;;;;:::o;2564:463::-;2617:3;2655:5;2649:12;2682:6;2677:3;2670:19;2708:4;2737:2;2732:3;2728:12;2721:19;;2774:2;2767:5;2763:14;2795:3;2807:195;2821:6;2818:1;2815:13;2807:195;;;2886:13;;-1:-1:-1;;;;;2882:39:1;2870:52;;2942:12;;;;2977:15;;;;2918:1;2836:9;2807:195;;;-1:-1:-1;3018:3:1;;2625:402;-1:-1:-1;;;;;2625:402:1:o;4200:603::-;4312:4;4341:2;4370;4359:9;4352:21;4402:6;4396:13;4445:6;4440:2;4429:9;4425:18;4418:34;4470:4;4483:140;4497:6;4494:1;4491:13;4483:140;;;4592:14;;;4588:23;;4582:30;4558:17;;;4577:2;4554:26;4547:66;4512:10;;4483:140;;;4641:6;4638:1;4635:13;4632:2;;;4711:4;4706:2;4697:6;4686:9;4682:22;4678:31;4671:45;4632:2;-1:-1:-1;4787:2:1;4766:15;-1:-1:-1;;4762:29:1;4747:45;;;;4794:2;4743:54;;4321:482;-1:-1:-1;;;4321:482:1:o;8266:356::-;8468:2;8450:21;;;8487:18;;;8480:30;8546:34;8541:2;8526:18;;8519:62;8613:2;8598:18;;8440:182::o;12341:332::-;12548:6;12537:9;12530:25;12591:2;12586;12575:9;12571:18;12564:30;12511:4;12611:56;12663:2;12652:9;12648:18;12640:6;12611:56;:::i;:::-;12603:64;12520:153;-1:-1:-1;;;;12520:153:1:o;12678:582::-;12977:6;12966:9;12959:25;13020:6;13015:2;13004:9;13000:18;12993:34;13063:3;13058:2;13047:9;13043:18;13036:31;12940:4;13084:57;13136:3;13125:9;13121:19;13113:6;13084:57;:::i;:::-;-1:-1:-1;;;;;13177:32:1;;;;13172:2;13157:18;;13150:60;-1:-1:-1;13241:3:1;13226:19;13219:35;13076:65;12949:311;-1:-1:-1;;;12949:311:1:o;13454:128::-;13494:3;13525:1;13521:6;13518:1;13515:13;13512:2;;;13531:18;;:::i;:::-;-1:-1:-1;13567:9:1;;13502:80::o;13587:217::-;13627:1;13653;13643:2;;-1:-1:-1;;;13678:31:1;;13732:4;13729:1;13722:15;13760:4;13685:1;13750:15;13643:2;-1:-1:-1;13789:9:1;;13633:171::o;13809:168::-;13849:7;13915:1;13911;13907:6;13903:14;13900:1;13897:21;13892:1;13885:9;13878:17;13874:45;13871:2;;;13922:18;;:::i;:::-;-1:-1:-1;13962:9:1;;13861:116::o;13982:125::-;14022:4;14050:1;14047;14044:8;14041:2;;;14055:18;;:::i;:::-;-1:-1:-1;14092:9:1;;14031:76::o;14112:380::-;14191:1;14187:12;;;;14234;;;14255:2;;14309:4;14301:6;14297:17;14287:27;;14255:2;14362;14354:6;14351:14;14331:18;14328:38;14325:2;;;14408:10;14403:3;14399:20;14396:1;14389:31;14443:4;14440:1;14433:15;14471:4;14468:1;14461:15;14325:2;;14167:325;;;:::o;14497:135::-;14536:3;-1:-1:-1;;14557:17:1;;14554:2;;;14577:18;;:::i;:::-;-1:-1:-1;14624:1:1;14613:13;;14544:88::o;14637:127::-;14698:10;14693:3;14689:20;14686:1;14679:31;14729:4;14726:1;14719:15;14753:4;14750:1;14743:15;14769:131;-1:-1:-1;;;;;14844:31:1;;14834:42;;14824:2;;14890:1;14887;14880:12;14824:2;14814:86;:::o

Swarm Source

ipfs://b3fee133d733973041ade56a8b8b24a44a3cd59be0dd53f24d8a288315e76f08
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.