Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 Civis
Holders
71
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
495.853388110593135786 CivisValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Civis
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-09 */ // MAGNA SERVITUS EST MAGNA FORTUNA // SPDX-License-Identifier: MIT pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function abnegoDominium() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function translatioDominium(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract Civis is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private fiscusPera; uint256 public MaxNegotium; uint256 public vertoSignaAdQuantitas; uint256 public MaxPera; bool public finesinEffectum = true; bool public commerciumOperans = false; bool public vertoConversus = false; mapping(address => uint256) private _holderLastTransferTimestamp; mapping (address => uint256) private _holderFirstBuyTimestamp; bool public TranslationemMoraConversus = true; uint256 public mercorSummaTributum; uint256 public mercorLiquidoTributum; uint256 public mercorFiscusTributum; uint256 public vendereSummaTributum; uint256 public vendereLiquidoTributum; uint256 public vendereFiscusTributum; uint256 public signaEnimLiquido; uint256 public signaEnimFiscus; uint256 launchedAt; /******************/ mapping (address => bool) private _esseExcludereAFeodis; mapping (address => bool) public esseExcludereAMaxNegotium; mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludereAFeodis(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event treasuryWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Civis Romanus", "Civis") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludereAMaxNegotium(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludereAMaxNegotium(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _mercorLiquidoTributum = 1; uint256 _mercorFiscusTributum = 4; uint256 _vendereLiquidoTributum = 2; uint256 _vendereFiscusTributum = 8; uint256 totalSupply = 1 * 1e6 * 1e18; MaxNegotium = totalSupply * 10 / 1000; // 1% MaxNegotiumTxn MaxPera = totalSupply * 20 / 1000; // 2% MaxPera vertoSignaAdQuantitas = totalSupply * 10 / 10000; // 0.1% mercorLiquidoTributum = _mercorLiquidoTributum; mercorFiscusTributum = _mercorFiscusTributum; mercorSummaTributum = mercorLiquidoTributum + mercorFiscusTributum; vendereLiquidoTributum = _vendereLiquidoTributum; vendereFiscusTributum = _vendereFiscusTributum; vendereSummaTributum = vendereLiquidoTributum + vendereFiscusTributum; fiscusPera = address(owner()); excludereAFeodis(owner(), true); excludereAFeodis(address(this), true); excludereAFeodis(address(0xdead), true); excludereAMaxNegotium(owner(), true); excludereAMaxNegotium(address(this), true); excludereAMaxNegotium(address(0xdead), true); _mint(msg.sender, totalSupply); } receive() external payable { } function VeniVidiVici() external onlyOwner { commerciumOperans = true; vertoConversus = true; launchedAt = block.number; } function auferoFines() external onlyOwner returns (bool){ finesinEffectum = false; return true; } function averteTranslationemMora() external onlyOwner returns (bool){ TranslationemMoraConversus = false; return true; } function renovatioVertoSignaAdQuantitas(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); vertoSignaAdQuantitas = newAmount; return true; } function renovatioMaxNegotiumQuantitas(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set MaxNegotium lower than 0.1%"); MaxNegotium = newNum * (10**18); } function renovatioMaxPeraQuantitas(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set MaxPera lower than 0.5%"); MaxPera = newNum * (10**18); } function excludereAMaxNegotium(address updAds, bool isEx) public onlyOwner { esseExcludereAMaxNegotium[updAds] = isEx; } function renovatioVertoConversus(bool enabled) external onlyOwner(){ vertoConversus = enabled; } function renovatioMercorTributum(uint256 _liquidityFee, uint256 _marketingFee) external onlyOwner { mercorLiquidoTributum = _liquidityFee; mercorFiscusTributum = _marketingFee; mercorSummaTributum = mercorLiquidoTributum + mercorFiscusTributum; require(mercorSummaTributum <= 20, "Must keep fees at 20% or less"); } function renovatioVendereTributum(uint256 _liquidityFee, uint256 _marketingFee) external onlyOwner { vendereLiquidoTributum = _liquidityFee; vendereFiscusTributum = _marketingFee; vendereSummaTributum = vendereLiquidoTributum + vendereFiscusTributum; } function excludereAFeodis(address account, bool excluded) public onlyOwner { _esseExcludereAFeodis[account] = excluded; emit ExcludereAFeodis(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function renovatioFiscusPera(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, fiscusPera); fiscusPera = newWallet; } function esseExcludereAFeodis(address account) public view returns(bool) { return _esseExcludereAFeodis[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(block.timestamp != launchedAt, "Don't be so fast"); if(amount == 0) { super._transfer(from, to, 0); return; } if(finesinEffectum){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!commerciumOperans){ require(_esseExcludereAFeodis[from] || _esseExcludereAFeodis[to], "Trading is not active."); } if (TranslationemMoraConversus){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } if (automatedMarketMakerPairs[from] && !esseExcludereAMaxNegotium[to]) { require(amount <= MaxNegotium, "Buy transfer amount exceeds the MaxNegotium."); require(amount + balanceOf(to) <= MaxPera, "Max wallet exceeded"); } else if (automatedMarketMakerPairs[to] && !esseExcludereAMaxNegotium[from]) { require(amount <= MaxNegotium, "Sell transfer amount exceeds the MaxNegotium."); } else if(!esseExcludereAMaxNegotium[to]){ require(amount + balanceOf(to) <= MaxPera, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= vertoSignaAdQuantitas; if( canSwap && vertoConversus && !swapping && !automatedMarketMakerPairs[from] && !_esseExcludereAFeodis[from] && !_esseExcludereAFeodis[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if(_esseExcludereAFeodis[from] || _esseExcludereAFeodis[to]) { takeFee = false; } uint256 fees = 0; if(takeFee){ if (automatedMarketMakerPairs[to] && vendereSummaTributum > 0){ fees = amount.mul(vendereSummaTributum).div(100); signaEnimLiquido += fees * vendereLiquidoTributum / vendereSummaTributum; signaEnimFiscus += fees * vendereFiscusTributum / vendereSummaTributum; } else if(automatedMarketMakerPairs[from] && mercorSummaTributum > 0) { fees = amount.mul(mercorSummaTributum).div(100); signaEnimLiquido += fees * mercorLiquidoTributum / mercorSummaTributum; signaEnimFiscus += fees * mercorFiscusTributum / mercorSummaTributum; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = signaEnimLiquido + signaEnimFiscus; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > vertoSignaAdQuantitas * 20){ contractBalance = vertoSignaAdQuantitas * 20; } uint256 liquidityTokens = contractBalance * signaEnimLiquido / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(signaEnimFiscus).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing; signaEnimLiquido = 0; signaEnimFiscus = 0; (success,) = address(fiscusPera).call{value: ethForMarketing}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, signaEnimLiquido); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludereAFeodis","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[],"name":"MaxNegotium","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxPera","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TranslationemMoraConversus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VeniVidiVici","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"abnegoDominium","outputs":[],"stateMutability":"nonpayable","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":[],"name":"auferoFines","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"averteTranslationemMora","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":"commerciumOperans","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"esseExcludereAFeodis","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"esseExcludereAMaxNegotium","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludereAFeodis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludereAMaxNegotium","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finesinEffectum","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mercorFiscusTributum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mercorLiquidoTributum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mercorSummaTributum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"renovatioFiscusPera","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"renovatioMaxNegotiumQuantitas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"renovatioMaxPeraQuantitas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"renovatioMercorTributum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"renovatioVendereTributum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"renovatioVertoConversus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"renovatioVertoSignaAdQuantitas","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signaEnimFiscus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"signaEnimLiquido","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"translatioDominium","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vendereFiscusTributum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vendereLiquidoTributum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vendereSummaTributum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vertoConversus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vertoSignaAdQuantitas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600a805462ffffff19166001908117909155600d805460ff191690911790553480156200003057600080fd5b50604080518082018252600d81526c436976697320526f6d616e757360981b602080830191825283518085019094526005845264436976697360d81b9084015281519192916200008391600391620006f3565b50805162000099906004906020840190620006f3565b5050506000620000ae6200041160201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200011e81600162000415565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200016457600080fd5b505afa15801562000179573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019f919062000799565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e857600080fd5b505afa158015620001fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000223919062000799565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200026c57600080fd5b505af115801562000281573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a7919062000799565b6001600160a01b031660a0819052620002c290600162000415565b60a051620002d29060016200048f565b600160046002600869d3c21bcecceda10000006103e8620002f582600a620007da565b620003019190620007fc565b6007556103e862000314826014620007da565b620003209190620007fc565b6009556127106200033382600a620007da565b6200033f9190620007fc565b600855600f85905560108490556200035884866200081f565b600e55601283905560138290556200037182846200081f565b601155600554600680546001600160a01b0319166001600160a01b039092169182179055620003a2906001620004e3565b620003af306001620004e3565b620003be61dead6001620004e3565b620003dd620003d56005546001600160a01b031690565b600162000415565b620003ea30600162000415565b620003f961dead600162000415565b6200040533826200058d565b50505050505062000877565b3390565b6005546001600160a01b03163314620004645760405162461bcd60e51b815260206004820181905260248201526000805160206200314483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200052e5760405162461bcd60e51b815260206004820181905260248201526000805160206200314483398151915260448201526064016200045b565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f55652577d7b391b050dad8806d8afc11b92fc1eee3996f541c9481ec50e0be08910160405180910390a25050565b6001600160a01b038216620005e55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200045b565b62000601816002546200068960201b620012c91790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000634918390620012c962000689821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000806200069883856200081f565b905083811015620006ec5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200045b565b9392505050565b82805462000701906200083a565b90600052602060002090601f01602090048101928262000725576000855562000770565b82601f106200074057805160ff191683800117855562000770565b8280016001018555821562000770579182015b828111156200077057825182559160200191906001019062000753565b506200077e92915062000782565b5090565b5b808211156200077e576000815560010162000783565b600060208284031215620007ac57600080fd5b81516001600160a01b0381168114620006ec57600080fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007f757620007f7620007c4565b500290565b6000826200081a57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620008355762000835620007c4565b500190565b600181811c908216806200084f57607f821691505b602082108114156200087157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161286f620008d5600039600081816104cd01528181610d47015261166f01526000818161035b0152818161163101528181612116015281816121de0152818161221a0152818161229401526122f0015261286f6000f3fe60806040526004361061028c5760003560e01c806384aace9a1161015a578063b2776f7b116100c1578063dd62ed3e1161007a578063dd62ed3e146107ab578063e5350c85146107f1578063e5cad8b014610811578063f210fd101461084a578063f33011071461086a578063f77e31d41461088057600080fd5b8063b2776f7b146106e5578063b62496f514610705578063bd5e3bd714610735578063c1c9531414610755578063c6efed8614610775578063da154c211461079557600080fd5b80639a7a23d6116101135780639a7a23d6146106455780639ba9d8e614610665578063a457c2d71461067a578063a69663501461069a578063a73c9d00146106af578063a9059cbb146106c557600080fd5b806384aace9a146105a6578063885105d8146105bc5780638a72c6d0146105dc5780638da5cb5b146105fc57806390c4c4f91461061a57806395d89b411461063057600080fd5b8063323bdaee116101fe578063512bd6d2116101b7578063512bd6d2146104ef5780635d4a02d51461050557806360ef5fca1461051b578063645d1b5e1461053b57806370a08231146105515780637949aa531461058757600080fd5b8063323bdaee1461043a578063395093511461044f5780633e529ccd1461046f57806342a5fcba146104855780634357cc41146104a557806349bd5a5e146104bb57600080fd5b80631694505e116102505780631694505e14610349578063175637891461039557806318160ddd146103b957806323b872dd146103ce5780632f5fb51f146103ee578063313ce5671461041e57600080fd5b806306fdde031461029857806307f80829146102c3578063095ea7b3146102ed5780630f737c6c1461030d5780631503279e1461032757600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610895565b6040516102ba91906123ab565b60405180910390f35b3480156102cf57600080fd5b50600d546102dd9060ff1681565b60405190151581526020016102ba565b3480156102f957600080fd5b506102dd610308366004612418565b610927565b34801561031957600080fd5b50600a546102dd9060ff1681565b34801561033357600080fd5b50610347610342366004612444565b61093e565b005b34801561035557600080fd5b5061037d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ba565b3480156103a157600080fd5b506103ab60075481565b6040519081526020016102ba565b3480156103c557600080fd5b506002546103ab565b3480156103da57600080fd5b506102dd6103e9366004612466565b61098c565b3480156103fa57600080fd5b506102dd6104093660046124a7565b60186020526000908152604090205460ff1681565b34801561042a57600080fd5b50604051601281526020016102ba565b34801561044657600080fd5b506103476109f5565b34801561045b57600080fd5b506102dd61046a366004612418565b610a69565b34801561047b57600080fd5b506103ab60125481565b34801561049157600080fd5b506102dd6104a03660046124c4565b610a9f565b3480156104b157600080fd5b506103ab60155481565b3480156104c757600080fd5b5061037d7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104fb57600080fd5b506103ab60085481565b34801561051157600080fd5b506103ab600e5481565b34801561052757600080fd5b506103476105363660046124ed565b610bf6565b34801561054757600080fd5b506103ab60115481565b34801561055d57600080fd5b506103ab61056c3660046124a7565b6001600160a01b031660009081526020819052604090205490565b34801561059357600080fd5b50600a546102dd90610100900460ff1681565b3480156105b257600080fd5b506103ab60135481565b3480156105c857600080fd5b506103476105d73660046124c4565b610c3c565b3480156105e857600080fd5b50600a546102dd9062010000900460ff1681565b34801561060857600080fd5b506005546001600160a01b031661037d565b34801561062657600080fd5b506103ab60105481565b34801561063c57600080fd5b506102ad610d0c565b34801561065157600080fd5b50610347610660366004612508565b610d1b565b34801561067157600080fd5b50610347610dfb565b34801561068657600080fd5b506102dd610695366004612418565b610e3c565b3480156106a657600080fd5b506102dd610e8b565b3480156106bb57600080fd5b506103ab60095481565b3480156106d157600080fd5b506102dd6106e0366004612418565b610ec8565b3480156106f157600080fd5b50610347610700366004612444565b610ed5565b34801561071157600080fd5b506102dd6107203660046124a7565b60196020526000908152604090205460ff1681565b34801561074157600080fd5b50610347610750366004612508565b610f68565b34801561076157600080fd5b506103476107703660046124a7565b610ff1565b34801561078157600080fd5b506103476107903660046124a7565b611078565b3480156107a157600080fd5b506103ab600f5481565b3480156107b757600080fd5b506103ab6107c636600461253d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107fd57600080fd5b5061034761080c3660046124c4565b611163565b34801561081d57600080fd5b506102dd61082c3660046124a7565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561085657600080fd5b50610347610865366004612508565b611237565b34801561087657600080fd5b506103ab60145481565b34801561088c57600080fd5b506102dd61128c565b6060600380546108a490612576565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090612576565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093433848461132f565b5060015b92915050565b6005546001600160a01b031633146109715760405162461bcd60e51b8152600401610968906125b1565b60405180910390fd5b6012829055601381905561098581836125fc565b6011555050565b6000610999848484611454565b6109eb84336109e6856040518060600160405280602881526020016127ed602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611c7b565b61132f565b5060019392505050565b6005546001600160a01b03163314610a1f5760405162461bcd60e51b8152600401610968906125b1565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109349185906109e690866112c9565b6005546000906001600160a01b03163314610acc5760405162461bcd60e51b8152600401610968906125b1565b620186a0610ad960025490565b610ae4906001612614565b610aee9190612633565b821015610b5b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610968565b6103e8610b6760025490565b610b72906005612614565b610b7c9190612633565b821115610be85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610968565b50600881905560015b919050565b6005546001600160a01b03163314610c205760405162461bcd60e51b8152600401610968906125b1565b600a8054911515620100000262ff000019909216919091179055565b6005546001600160a01b03163314610c665760405162461bcd60e51b8152600401610968906125b1565b670de0b6b3a76400006103e8610c7b60025490565b610c86906005612614565b610c909190612633565b610c9a9190612633565b811015610cf45760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574204d617850657261206c6f776572207468616e20302e604482015261352560f01b6064820152608401610968565b610d0681670de0b6b3a7640000612614565b60095550565b6060600480546108a490612576565b6005546001600160a01b03163314610d455760405162461bcd60e51b8152600401610968906125b1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610ded5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610968565b610df78282611cb5565b5050565b6005546001600160a01b03163314610e255760405162461bcd60e51b8152600401610968906125b1565b600a805462ffff0019166201010017905543601655565b600061093433846109e685604051806060016040528060258152602001612815602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611c7b565b6005546000906001600160a01b03163314610eb85760405162461bcd60e51b8152600401610968906125b1565b50600a805460ff19169055600190565b6000610934338484611454565b6005546001600160a01b03163314610eff5760405162461bcd60e51b8152600401610968906125b1565b600f8290556010819055610f1381836125fc565b600e81905560141015610df75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610968565b6005546001600160a01b03163314610f925760405162461bcd60e51b8152600401610968906125b1565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f55652577d7b391b050dad8806d8afc11b92fc1eee3996f541c9481ec50e0be08910160405180910390a25050565b6005546001600160a01b0316331461101b5760405162461bcd60e51b8152600401610968906125b1565b6006546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110a25760405162461bcd60e51b8152600401610968906125b1565b6001600160a01b0381166111075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610968565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461118d5760405162461bcd60e51b8152600401610968906125b1565b670de0b6b3a76400006103e86111a260025490565b6111ad906001612614565b6111b79190612633565b6111c19190612633565b81101561121f5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f7420736574204d61784e65676f7469756d206c6f776572207468616044820152656e20302e312560d01b6064820152608401610968565b61123181670de0b6b3a7640000612614565b60075550565b6005546001600160a01b031633146112615760405162461bcd60e51b8152600401610968906125b1565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546000906001600160a01b031633146112b95760405162461bcd60e51b8152600401610968906125b1565b50600d805460ff19169055600190565b6000806112d683856125fc565b9050838110156113285760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610968565b9392505050565b6001600160a01b0383166113915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610968565b6001600160a01b0382166113f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610968565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661147a5760405162461bcd60e51b815260040161096890612655565b6001600160a01b0382166114a05760405162461bcd60e51b81526004016109689061269a565b6016544214156114e55760405162461bcd60e51b815260206004820152601060248201526f111bdb89dd081899481cdbc819985cdd60821b6044820152606401610968565b806114fb576114f683836000611d09565b505050565b600a5460ff16156119a6576005546001600160a01b0384811691161480159061153257506005546001600160a01b03838116911614155b801561154657506001600160a01b03821615155b801561155d57506001600160a01b03821661dead14155b80156115735750600554600160a01b900460ff16155b156119a657600a54610100900460ff1661160b576001600160a01b03831660009081526017602052604090205460ff16806115c657506001600160a01b03821660009081526017602052604090205460ff165b61160b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610968565b600d5460ff1615611752576005546001600160a01b0383811691161480159061166657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156116a457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561175257326000908152600b6020526040902054431161173f5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610968565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff16801561179357506001600160a01b03821660009081526018602052604090205460ff16155b1561186e576007548111156117ff5760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b26b0bc2732b3b7ba34bab69760a11b6064820152608401610968565b6009546001600160a01b03831660009081526020819052604090205461182590836125fc565b11156118695760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610968565b6119a6565b6001600160a01b03821660009081526019602052604090205460ff1680156118af57506001600160a01b03831660009081526018602052604090205460ff16155b1561191c576007548111156118695760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1026b0bc2732b3b7ba34bab69760991b6064820152608401610968565b6001600160a01b03821660009081526018602052604090205460ff166119a6576009546001600160a01b03831660009081526020819052604090205461196290836125fc565b11156119a65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610968565b30600090815260208190526040902054600854811080159081906119d25750600a5462010000900460ff165b80156119e85750600554600160a01b900460ff16155b8015611a0d57506001600160a01b03851660009081526019602052604090205460ff16155b8015611a3257506001600160a01b03851660009081526017602052604090205460ff16155b8015611a5757506001600160a01b03841660009081526017602052604090205460ff16155b15611a85576005805460ff60a01b1916600160a01b179055611a77611e12565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611ad357506001600160a01b03851660009081526017602052604090205460ff165b15611adc575060005b60008115611c67576001600160a01b03861660009081526019602052604090205460ff168015611b0e57506000601154115b15611b9c57611b336064611b2d60115488611fbc90919063ffffffff16565b9061203b565b905060115460125482611b469190612614565b611b509190612633565b60146000828254611b6191906125fc565b9091555050601154601354611b769083612614565b611b809190612633565b60156000828254611b9191906125fc565b90915550611c499050565b6001600160a01b03871660009081526019602052604090205460ff168015611bc657506000600e54115b15611c4957611be56064611b2d600e5488611fbc90919063ffffffff16565b9050600e54600f5482611bf89190612614565b611c029190612633565b60146000828254611c1391906125fc565b9091555050600e54601054611c289083612614565b611c329190612633565b60156000828254611c4391906125fc565b90915550505b8015611c5a57611c5a873083611d09565b611c6481866126dd565b94505b611c72878787611d09565b50505050505050565b60008184841115611c9f5760405162461bcd60e51b815260040161096891906123ab565b506000611cac84866126dd565b95945050505050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d2f5760405162461bcd60e51b815260040161096890612655565b6001600160a01b038216611d555760405162461bcd60e51b81526004016109689061269a565b611d92816040518060600160405280602681526020016127c7602691396001600160a01b0386166000908152602081905260409020549190611c7b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611dc190826112c9565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611447565b3060009081526020819052604081205490506000601554601454611e3691906125fc565b90506000821580611e45575081155b15611e4f57505050565b600854611e5d906014612614565b831115611e7557600854611e72906014612614565b92505b600060028360145486611e889190612614565b611e929190612633565b611e9c9190612633565b90506000611eaa858361207d565b905047611eb6826120bf565b6000611ec2478361207d565b90506000611edf87611b2d60155485611fbc90919063ffffffff16565b90506000611eed82846126dd565b6000601481905560158190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114611f45576040519150601f19603f3d011682016040523d82523d6000602084013e611f4a565b606091505b50909750508515801590611f5e5750600081115b15611fb157611f6d868261228e565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b600082611fcb57506000610938565b6000611fd78385612614565b905082611fe48583612633565b146113285760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610968565b600061132883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061237d565b600061132883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c7b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120f4576120f46126f4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561216d57600080fd5b505afa158015612181573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a5919061270a565b816001815181106121b8576121b86126f4565b60200260200101906001600160a01b031690816001600160a01b031681525050612203307f00000000000000000000000000000000000000000000000000000000000000008461132f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612258908590600090869030904290600401612727565b600060405180830381600087803b15801561227257600080fd5b505af1158015612286573d6000803e3d6000fd5b505050505050565b6122b9307f00000000000000000000000000000000000000000000000000000000000000008461132f565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561233d57600080fd5b505af1158015612351573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906123769190612798565b5050505050565b6000818361239e5760405162461bcd60e51b815260040161096891906123ab565b506000611cac8486612633565b600060208083528351808285015260005b818110156123d8578581018301518582016040015282016123bc565b818111156123ea576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461241557600080fd5b50565b6000806040838503121561242b57600080fd5b823561243681612400565b946020939093013593505050565b6000806040838503121561245757600080fd5b50508035926020909101359150565b60008060006060848603121561247b57600080fd5b833561248681612400565b9250602084013561249681612400565b929592945050506040919091013590565b6000602082840312156124b957600080fd5b813561132881612400565b6000602082840312156124d657600080fd5b5035919050565b80358015158114610bf157600080fd5b6000602082840312156124ff57600080fd5b611328826124dd565b6000806040838503121561251b57600080fd5b823561252681612400565b9150612534602084016124dd565b90509250929050565b6000806040838503121561255057600080fd5b823561255b81612400565b9150602083013561256b81612400565b809150509250929050565b600181811c9082168061258a57607f821691505b602082108114156125ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561260f5761260f6125e6565b500190565b600081600019048311821515161561262e5761262e6125e6565b500290565b60008261265057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156126ef576126ef6125e6565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561271c57600080fd5b815161132881612400565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127775784516001600160a01b031683529383019391830191600101612752565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156127ad57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209fae613418a326316502ac36b2661b5dc3e0ac8a8f0ed23e8aa87907c6dce72364736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061028c5760003560e01c806384aace9a1161015a578063b2776f7b116100c1578063dd62ed3e1161007a578063dd62ed3e146107ab578063e5350c85146107f1578063e5cad8b014610811578063f210fd101461084a578063f33011071461086a578063f77e31d41461088057600080fd5b8063b2776f7b146106e5578063b62496f514610705578063bd5e3bd714610735578063c1c9531414610755578063c6efed8614610775578063da154c211461079557600080fd5b80639a7a23d6116101135780639a7a23d6146106455780639ba9d8e614610665578063a457c2d71461067a578063a69663501461069a578063a73c9d00146106af578063a9059cbb146106c557600080fd5b806384aace9a146105a6578063885105d8146105bc5780638a72c6d0146105dc5780638da5cb5b146105fc57806390c4c4f91461061a57806395d89b411461063057600080fd5b8063323bdaee116101fe578063512bd6d2116101b7578063512bd6d2146104ef5780635d4a02d51461050557806360ef5fca1461051b578063645d1b5e1461053b57806370a08231146105515780637949aa531461058757600080fd5b8063323bdaee1461043a578063395093511461044f5780633e529ccd1461046f57806342a5fcba146104855780634357cc41146104a557806349bd5a5e146104bb57600080fd5b80631694505e116102505780631694505e14610349578063175637891461039557806318160ddd146103b957806323b872dd146103ce5780632f5fb51f146103ee578063313ce5671461041e57600080fd5b806306fdde031461029857806307f80829146102c3578063095ea7b3146102ed5780630f737c6c1461030d5780631503279e1461032757600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610895565b6040516102ba91906123ab565b60405180910390f35b3480156102cf57600080fd5b50600d546102dd9060ff1681565b60405190151581526020016102ba565b3480156102f957600080fd5b506102dd610308366004612418565b610927565b34801561031957600080fd5b50600a546102dd9060ff1681565b34801561033357600080fd5b50610347610342366004612444565b61093e565b005b34801561035557600080fd5b5061037d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102ba565b3480156103a157600080fd5b506103ab60075481565b6040519081526020016102ba565b3480156103c557600080fd5b506002546103ab565b3480156103da57600080fd5b506102dd6103e9366004612466565b61098c565b3480156103fa57600080fd5b506102dd6104093660046124a7565b60186020526000908152604090205460ff1681565b34801561042a57600080fd5b50604051601281526020016102ba565b34801561044657600080fd5b506103476109f5565b34801561045b57600080fd5b506102dd61046a366004612418565b610a69565b34801561047b57600080fd5b506103ab60125481565b34801561049157600080fd5b506102dd6104a03660046124c4565b610a9f565b3480156104b157600080fd5b506103ab60155481565b3480156104c757600080fd5b5061037d7f000000000000000000000000ebb60df122ee3497c046b3ee467340ca6a14026281565b3480156104fb57600080fd5b506103ab60085481565b34801561051157600080fd5b506103ab600e5481565b34801561052757600080fd5b506103476105363660046124ed565b610bf6565b34801561054757600080fd5b506103ab60115481565b34801561055d57600080fd5b506103ab61056c3660046124a7565b6001600160a01b031660009081526020819052604090205490565b34801561059357600080fd5b50600a546102dd90610100900460ff1681565b3480156105b257600080fd5b506103ab60135481565b3480156105c857600080fd5b506103476105d73660046124c4565b610c3c565b3480156105e857600080fd5b50600a546102dd9062010000900460ff1681565b34801561060857600080fd5b506005546001600160a01b031661037d565b34801561062657600080fd5b506103ab60105481565b34801561063c57600080fd5b506102ad610d0c565b34801561065157600080fd5b50610347610660366004612508565b610d1b565b34801561067157600080fd5b50610347610dfb565b34801561068657600080fd5b506102dd610695366004612418565b610e3c565b3480156106a657600080fd5b506102dd610e8b565b3480156106bb57600080fd5b506103ab60095481565b3480156106d157600080fd5b506102dd6106e0366004612418565b610ec8565b3480156106f157600080fd5b50610347610700366004612444565b610ed5565b34801561071157600080fd5b506102dd6107203660046124a7565b60196020526000908152604090205460ff1681565b34801561074157600080fd5b50610347610750366004612508565b610f68565b34801561076157600080fd5b506103476107703660046124a7565b610ff1565b34801561078157600080fd5b506103476107903660046124a7565b611078565b3480156107a157600080fd5b506103ab600f5481565b3480156107b757600080fd5b506103ab6107c636600461253d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107fd57600080fd5b5061034761080c3660046124c4565b611163565b34801561081d57600080fd5b506102dd61082c3660046124a7565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561085657600080fd5b50610347610865366004612508565b611237565b34801561087657600080fd5b506103ab60145481565b34801561088c57600080fd5b506102dd61128c565b6060600380546108a490612576565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090612576565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600061093433848461132f565b5060015b92915050565b6005546001600160a01b031633146109715760405162461bcd60e51b8152600401610968906125b1565b60405180910390fd5b6012829055601381905561098581836125fc565b6011555050565b6000610999848484611454565b6109eb84336109e6856040518060600160405280602881526020016127ed602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611c7b565b61132f565b5060019392505050565b6005546001600160a01b03163314610a1f5760405162461bcd60e51b8152600401610968906125b1565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109349185906109e690866112c9565b6005546000906001600160a01b03163314610acc5760405162461bcd60e51b8152600401610968906125b1565b620186a0610ad960025490565b610ae4906001612614565b610aee9190612633565b821015610b5b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610968565b6103e8610b6760025490565b610b72906005612614565b610b7c9190612633565b821115610be85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610968565b50600881905560015b919050565b6005546001600160a01b03163314610c205760405162461bcd60e51b8152600401610968906125b1565b600a8054911515620100000262ff000019909216919091179055565b6005546001600160a01b03163314610c665760405162461bcd60e51b8152600401610968906125b1565b670de0b6b3a76400006103e8610c7b60025490565b610c86906005612614565b610c909190612633565b610c9a9190612633565b811015610cf45760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574204d617850657261206c6f776572207468616e20302e604482015261352560f01b6064820152608401610968565b610d0681670de0b6b3a7640000612614565b60095550565b6060600480546108a490612576565b6005546001600160a01b03163314610d455760405162461bcd60e51b8152600401610968906125b1565b7f000000000000000000000000ebb60df122ee3497c046b3ee467340ca6a1402626001600160a01b0316826001600160a01b03161415610ded5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610968565b610df78282611cb5565b5050565b6005546001600160a01b03163314610e255760405162461bcd60e51b8152600401610968906125b1565b600a805462ffff0019166201010017905543601655565b600061093433846109e685604051806060016040528060258152602001612815602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611c7b565b6005546000906001600160a01b03163314610eb85760405162461bcd60e51b8152600401610968906125b1565b50600a805460ff19169055600190565b6000610934338484611454565b6005546001600160a01b03163314610eff5760405162461bcd60e51b8152600401610968906125b1565b600f8290556010819055610f1381836125fc565b600e81905560141015610df75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610968565b6005546001600160a01b03163314610f925760405162461bcd60e51b8152600401610968906125b1565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f55652577d7b391b050dad8806d8afc11b92fc1eee3996f541c9481ec50e0be08910160405180910390a25050565b6005546001600160a01b0316331461101b5760405162461bcd60e51b8152600401610968906125b1565b6006546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110a25760405162461bcd60e51b8152600401610968906125b1565b6001600160a01b0381166111075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610968565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461118d5760405162461bcd60e51b8152600401610968906125b1565b670de0b6b3a76400006103e86111a260025490565b6111ad906001612614565b6111b79190612633565b6111c19190612633565b81101561121f5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f7420736574204d61784e65676f7469756d206c6f776572207468616044820152656e20302e312560d01b6064820152608401610968565b61123181670de0b6b3a7640000612614565b60075550565b6005546001600160a01b031633146112615760405162461bcd60e51b8152600401610968906125b1565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546000906001600160a01b031633146112b95760405162461bcd60e51b8152600401610968906125b1565b50600d805460ff19169055600190565b6000806112d683856125fc565b9050838110156113285760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610968565b9392505050565b6001600160a01b0383166113915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610968565b6001600160a01b0382166113f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610968565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661147a5760405162461bcd60e51b815260040161096890612655565b6001600160a01b0382166114a05760405162461bcd60e51b81526004016109689061269a565b6016544214156114e55760405162461bcd60e51b815260206004820152601060248201526f111bdb89dd081899481cdbc819985cdd60821b6044820152606401610968565b806114fb576114f683836000611d09565b505050565b600a5460ff16156119a6576005546001600160a01b0384811691161480159061153257506005546001600160a01b03838116911614155b801561154657506001600160a01b03821615155b801561155d57506001600160a01b03821661dead14155b80156115735750600554600160a01b900460ff16155b156119a657600a54610100900460ff1661160b576001600160a01b03831660009081526017602052604090205460ff16806115c657506001600160a01b03821660009081526017602052604090205460ff165b61160b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610968565b600d5460ff1615611752576005546001600160a01b0383811691161480159061166657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156116a457507f000000000000000000000000ebb60df122ee3497c046b3ee467340ca6a1402626001600160a01b0316826001600160a01b031614155b1561175257326000908152600b6020526040902054431161173f5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610968565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff16801561179357506001600160a01b03821660009081526018602052604090205460ff16155b1561186e576007548111156117ff5760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b26b0bc2732b3b7ba34bab69760a11b6064820152608401610968565b6009546001600160a01b03831660009081526020819052604090205461182590836125fc565b11156118695760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610968565b6119a6565b6001600160a01b03821660009081526019602052604090205460ff1680156118af57506001600160a01b03831660009081526018602052604090205460ff16155b1561191c576007548111156118695760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1026b0bc2732b3b7ba34bab69760991b6064820152608401610968565b6001600160a01b03821660009081526018602052604090205460ff166119a6576009546001600160a01b03831660009081526020819052604090205461196290836125fc565b11156119a65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610968565b30600090815260208190526040902054600854811080159081906119d25750600a5462010000900460ff165b80156119e85750600554600160a01b900460ff16155b8015611a0d57506001600160a01b03851660009081526019602052604090205460ff16155b8015611a3257506001600160a01b03851660009081526017602052604090205460ff16155b8015611a5757506001600160a01b03841660009081526017602052604090205460ff16155b15611a85576005805460ff60a01b1916600160a01b179055611a77611e12565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611ad357506001600160a01b03851660009081526017602052604090205460ff165b15611adc575060005b60008115611c67576001600160a01b03861660009081526019602052604090205460ff168015611b0e57506000601154115b15611b9c57611b336064611b2d60115488611fbc90919063ffffffff16565b9061203b565b905060115460125482611b469190612614565b611b509190612633565b60146000828254611b6191906125fc565b9091555050601154601354611b769083612614565b611b809190612633565b60156000828254611b9191906125fc565b90915550611c499050565b6001600160a01b03871660009081526019602052604090205460ff168015611bc657506000600e54115b15611c4957611be56064611b2d600e5488611fbc90919063ffffffff16565b9050600e54600f5482611bf89190612614565b611c029190612633565b60146000828254611c1391906125fc565b9091555050600e54601054611c289083612614565b611c329190612633565b60156000828254611c4391906125fc565b90915550505b8015611c5a57611c5a873083611d09565b611c6481866126dd565b94505b611c72878787611d09565b50505050505050565b60008184841115611c9f5760405162461bcd60e51b815260040161096891906123ab565b506000611cac84866126dd565b95945050505050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d2f5760405162461bcd60e51b815260040161096890612655565b6001600160a01b038216611d555760405162461bcd60e51b81526004016109689061269a565b611d92816040518060600160405280602681526020016127c7602691396001600160a01b0386166000908152602081905260409020549190611c7b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611dc190826112c9565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611447565b3060009081526020819052604081205490506000601554601454611e3691906125fc565b90506000821580611e45575081155b15611e4f57505050565b600854611e5d906014612614565b831115611e7557600854611e72906014612614565b92505b600060028360145486611e889190612614565b611e929190612633565b611e9c9190612633565b90506000611eaa858361207d565b905047611eb6826120bf565b6000611ec2478361207d565b90506000611edf87611b2d60155485611fbc90919063ffffffff16565b90506000611eed82846126dd565b6000601481905560158190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114611f45576040519150601f19603f3d011682016040523d82523d6000602084013e611f4a565b606091505b50909750508515801590611f5e5750600081115b15611fb157611f6d868261228e565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b600082611fcb57506000610938565b6000611fd78385612614565b905082611fe48583612633565b146113285760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610968565b600061132883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061237d565b600061132883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c7b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120f4576120f46126f4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561216d57600080fd5b505afa158015612181573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a5919061270a565b816001815181106121b8576121b86126f4565b60200260200101906001600160a01b031690816001600160a01b031681525050612203307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461132f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612258908590600090869030904290600401612727565b600060405180830381600087803b15801561227257600080fd5b505af1158015612286573d6000803e3d6000fd5b505050505050565b6122b9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461132f565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561233d57600080fd5b505af1158015612351573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906123769190612798565b5050505050565b6000818361239e5760405162461bcd60e51b815260040161096891906123ab565b506000611cac8486612633565b600060208083528351808285015260005b818110156123d8578581018301518582016040015282016123bc565b818111156123ea576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461241557600080fd5b50565b6000806040838503121561242b57600080fd5b823561243681612400565b946020939093013593505050565b6000806040838503121561245757600080fd5b50508035926020909101359150565b60008060006060848603121561247b57600080fd5b833561248681612400565b9250602084013561249681612400565b929592945050506040919091013590565b6000602082840312156124b957600080fd5b813561132881612400565b6000602082840312156124d657600080fd5b5035919050565b80358015158114610bf157600080fd5b6000602082840312156124ff57600080fd5b611328826124dd565b6000806040838503121561251b57600080fd5b823561252681612400565b9150612534602084016124dd565b90509250929050565b6000806040838503121561255057600080fd5b823561255b81612400565b9150602083013561256b81612400565b809150509250929050565b600181811c9082168061258a57607f821691505b602082108114156125ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561260f5761260f6125e6565b500190565b600081600019048311821515161561262e5761262e6125e6565b500290565b60008261265057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156126ef576126ef6125e6565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561271c57600080fd5b815161132881612400565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127775784516001600160a01b031683529383019391830191600101612752565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156127ad57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209fae613418a326316502ac36b2661b5dc3e0ac8a8f0ed23e8aa87907c6dce72364736f6c63430008090033
Deployed Bytecode Sourcemap
29343:12895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7443:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29965:45;;;;;;;;;;-1:-1:-1;29965:45:0;;;;;;;;;;;781:14:1;;774:22;756:41;;744:2;729:18;29965:45:0;616:187:1;9617:169:0;;;;;;;;;;-1:-1:-1;9617:169:0;;;;;:::i;:::-;;:::i;29700:34::-;;;;;;;;;;-1:-1:-1;29700:34:0;;;;;;;;34992:284;;;;;;;;;;-1:-1:-1;34992:284:0;;;;;:::i;:::-;;:::i;:::-;;29419:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1708:32:1;;;1690:51;;1678:2;1663:18;29419:51:0;1517:230:1;29592:26:0;;;;;;;;;;;;;;;;;;;1898:25:1;;;1886:2;1871:18;29592:26:0;1752:177:1;8566:108:0;;;;;;;;;;-1:-1:-1;8654:12:0;;8566:108;;10269:355;;;;;;;;;;-1:-1:-1;10269:355:0;;;;;:::i;:::-;;:::i;30475:58::-;;;;;;;;;;-1:-1:-1;30475:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8407:93;;;;;;;;;;-1:-1:-1;8407:93:0;;8490:2;2789:36:1;;2777:2;2762:18;8407:93:0;2647:184:1;21945:145:0;;;;;;;;;;;;;:::i;11034:218::-;;;;;;;;;;-1:-1:-1;11034:218:0;;;;;:::i;:::-;;:::i;30191:37::-;;;;;;;;;;;;;;;;33499:395;;;;;;;;;;-1:-1:-1;33499:395:0;;;;;:::i;:::-;;:::i;30319:30::-;;;;;;;;;;;;;;;;29477:38;;;;;;;;;;;;;;;29625:36;;;;;;;;;;;;;;;;30020:34;;;;;;;;;;;;;;;;34508:110;;;;;;;;;;-1:-1:-1;34508:110:0;;;;;:::i;:::-;;:::i;30149:35::-;;;;;;;;;;;;;;;;8738:127;;;;;;;;;;-1:-1:-1;8738:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8839:18:0;8812:7;8839:18;;;;;;;;;;;;8738:127;29741:37;;;;;;;;;;-1:-1:-1;29741:37:0;;;;;;;;;;;30235:36;;;;;;;;;;;;;;;;34139:215;;;;;;;;;;-1:-1:-1;34139:215:0;;;;;:::i;:::-;;:::i;29785:34::-;;;;;;;;;;-1:-1:-1;29785:34:0;;;;;;;;;;;21301:79;;;;;;;;;;-1:-1:-1;21366:6:0;;-1:-1:-1;;;;;21366:6:0;21301:79;;30104:35;;;;;;;;;;;;;;;;7663:104;;;;;;;;;;;;;:::i;35480:245::-;;;;;;;;;;-1:-1:-1;35480:245:0;;;;;:::i;:::-;;:::i;33049:154::-;;;;;;;;;;;;;:::i;11756:269::-;;;;;;;;;;-1:-1:-1;11756:269:0;;;;;:::i;:::-;;:::i;33214:120::-;;;;;;;;;;;;;:::i;29668:22::-;;;;;;;;;;;;;;;;9079:175;;;;;;;;;;-1:-1:-1;9079:175:0;;;;;:::i;:::-;;:::i;34627:356::-;;;;;;;;;;-1:-1:-1;34627:356:0;;;;;:::i;:::-;;:::i;30540:58::-;;;;;;;;;;-1:-1:-1;30540:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35285:186;;;;;;;;;;-1:-1:-1;35285:186:0;;;;;:::i;:::-;;:::i;35932:163::-;;;;;;;;;;-1:-1:-1;35932:163:0;;;;;:::i;:::-;;:::i;22246:245::-;;;;;;;;;;-1:-1:-1;22246:245:0;;;;;:::i;:::-;;:::i;30061:36::-;;;;;;;;;;;;;;;;9318:151;;;;;;;;;;-1:-1:-1;9318:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9434:18:0;;;9407:7;9434:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9318:151;33903:227;;;;;;;;;;-1:-1:-1;33903:227:0;;;;;:::i;:::-;;:::i;36107:129::-;;;;;;;;;;-1:-1:-1;36107:129:0;;;;;:::i;:::-;-1:-1:-1;;;;;36198:30:0;36174:4;36198:30;;;:21;:30;;;;;;;;;36107:129;34363:134;;;;;;;;;;-1:-1:-1;34363:134:0;;;;;:::i;:::-;;:::i;30281:31::-;;;;;;;;;;;;;;;;33345:143;;;;;;;;;;;;;:::i;7443:100::-;7497:13;7530:5;7523:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7443:100;:::o;9617:169::-;9700:4;9717:39;214:10;9740:7;9749:6;9717:8;:39::i;:::-;-1:-1:-1;9774:4:0;9617:169;;;;;:::o;34992:284::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;;;;;;;;;35102:22:::1;:38:::0;;;35151:21:::1;:37:::0;;;35222:46:::1;35175:13:::0;35127;35222:46:::1;:::i;:::-;35199:20;:69:::0;-1:-1:-1;;34992:284:0:o;10269:355::-;10409:4;10426:36;10436:6;10444:9;10455:6;10426:9;:36::i;:::-;10473:121;10482:6;214:10;10504:89;10542:6;10504:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10504:19:0;;;;;;:11;:19;;;;;;;;214:10;10504:33;;;;;;;;;;:37;:89::i;:::-;10473:8;:121::i;:::-;-1:-1:-1;10612:4:0;10269:355;;;;;:::o;21945:145::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;22033:6:::1;::::0;22012:40:::1;::::0;22049:1:::1;::::0;-1:-1:-1;;;;;22033:6:0::1;::::0;22012:40:::1;::::0;22049:1;;22012:40:::1;22063:6;:19:::0;;-1:-1:-1;;;;;;22063:19:0::1;::::0;;21945:145::o;11034:218::-;214:10;11122:4;11171:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11171:34:0;;;;;;;;;;11122:4;;11139:83;;11162:7;;11171:50;;11210:10;11171:38;:50::i;33499:395::-;21514:6;;33586:4;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;33643:6:::1;33623:13;8654:12:::0;;;8566:108;33623:13:::1;:17;::::0;33639:1:::1;33623:17;:::i;:::-;:26;;;;:::i;:::-;33610:9;:39;;33602:105;;;::::0;-1:-1:-1;;;33602:105:0;;5900:2:1;33602:105:0::1;::::0;::::1;5882:21:1::0;5939:2;5919:18;;;5912:30;5978:34;5958:18;;;5951:62;-1:-1:-1;;;6029:18:1;;;6022:51;6090:19;;33602:105:0::1;5698:417:1::0;33602:105:0::1;33759:4;33739:13;8654:12:::0;;;8566:108;33739:13:::1;:17;::::0;33755:1:::1;33739:17;:::i;:::-;:24;;;;:::i;:::-;33726:9;:37;;33718:102;;;::::0;-1:-1:-1;;;33718:102:0;;6322:2:1;33718:102:0::1;::::0;::::1;6304:21:1::0;6361:2;6341:18;;;6334:30;6400:34;6380:18;;;6373:62;-1:-1:-1;;;6451:18:1;;;6444:50;6511:19;;33718:102:0::1;6120:416:1::0;33718:102:0::1;-1:-1:-1::0;33831:21:0::1;:33:::0;;;33882:4:::1;21584:1;33499:395:::0;;;:::o;34508:110::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;34586:14:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;34586:24:0;;::::1;::::0;;;::::1;::::0;;34508:110::o;34139:215::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;34265:4:::1;34259;34239:13;8654:12:::0;;;8566:108;34239:13:::1;:17;::::0;34255:1:::1;34239:17;:::i;:::-;:24;;;;:::i;:::-;34238:31;;;;:::i;:::-;34228:6;:41;;34220:88;;;::::0;-1:-1:-1;;;34220:88:0;;6743:2:1;34220:88:0::1;::::0;::::1;6725:21:1::0;6782:2;6762:18;;;6755:30;6821:34;6801:18;;;6794:62;-1:-1:-1;;;6872:18:1;;;6865:32;6914:19;;34220:88:0::1;6541:398:1::0;34220:88:0::1;34329:17;:6:::0;34339::::1;34329:17;:::i;:::-;34319:7;:27:::0;-1:-1:-1;34139:215:0:o;7663:104::-;7719:13;7752:7;7745:14;;;;;:::i;35480:245::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;35587:13:::1;-1:-1:-1::0;;;;;35579:21:0::1;:4;-1:-1:-1::0;;;;;35579:21:0::1;;;35571:91;;;::::0;-1:-1:-1;;;35571:91:0;;7146:2:1;35571:91:0::1;::::0;::::1;7128:21:1::0;7185:2;7165:18;;;7158:30;7224:34;7204:18;;;7197:62;7295:27;7275:18;;;7268:55;7340:19;;35571:91:0::1;6944:421:1::0;35571:91:0::1;35676:41;35705:4;35711:5;35676:28;:41::i;:::-;35480:245:::0;;:::o;33049:154::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;33103:17:::1;:24:::0;;-1:-1:-1;;33138:21:0;;;;;33183:12:::1;33170:10;:25:::0;33049:154::o;11756:269::-;11849:4;11866:129;214:10;11889:7;11898:96;11937:15;11898:96;;;;;;;;;;;;;;;;;214:10;11898:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11898:34:0;;;;;;;;;;;;:38;:96::i;33214:120::-;21514:6;;33265:4;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;-1:-1:-1;33281:15:0::1;:23:::0;;-1:-1:-1;;33281:23:0::1;::::0;;;33214:120;:::o;9079:175::-;9165:4;9182:42;214:10;9206:9;9217:6;9182:9;:42::i;34627:356::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;34736:21:::1;:37:::0;;;34784:20:::1;:36:::0;;;34853:44:::1;34807:13:::0;34760;34853:44:::1;:::i;:::-;34831:19;:66:::0;;;34939:2:::1;-1:-1:-1::0;34916:25:0::1;34908:67;;;::::0;-1:-1:-1;;;34908:67:0;;7572:2:1;34908:67:0::1;::::0;::::1;7554:21:1::0;7611:2;7591:18;;;7584:30;7650:31;7630:18;;;7623:59;7699:18;;34908:67:0::1;7370:353:1::0;35285:186:0;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35371:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;;;;:41;;-1:-1:-1;;35371:41:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35428:35;;756:41:1;;;35428:35:0::1;::::0;729:18:1;35428:35:0::1;;;;;;;35285:186:::0;;:::o;35932:163::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;36043:10:::1;::::0;36015:39:::1;::::0;-1:-1:-1;;;;;36043:10:0;;::::1;::::0;36015:39;::::1;::::0;::::1;::::0;36043:10:::1;::::0;36015:39:::1;36065:10;:22:::0;;-1:-1:-1;;;;;;36065:22:0::1;-1:-1:-1::0;;;;;36065:22:0;;;::::1;::::0;;;::::1;::::0;;35932:163::o;22246:245::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22336:22:0;::::1;22328:73;;;::::0;-1:-1:-1;;;22328:73:0;;7930:2:1;22328:73:0::1;::::0;::::1;7912:21:1::0;7969:2;7949:18;;;7942:30;8008:34;7988:18;;;7981:62;-1:-1:-1;;;8059:18:1;;;8052:36;8105:19;;22328:73:0::1;7728:402:1::0;22328:73:0::1;22438:6;::::0;22417:38:::1;::::0;-1:-1:-1;;;;;22417:38:0;;::::1;::::0;22438:6:::1;::::0;22417:38:::1;::::0;22438:6:::1;::::0;22417:38:::1;22466:6;:17:::0;;-1:-1:-1;;;;;;22466:17:0::1;-1:-1:-1::0;;;;;22466:17:0;;;::::1;::::0;;;::::1;::::0;;22246:245::o;33903:227::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;34033:4:::1;34027;34007:13;8654:12:::0;;;8566:108;34007:13:::1;:17;::::0;34023:1:::1;34007:17;:::i;:::-;:24;;;;:::i;:::-;34006:31;;;;:::i;:::-;33996:6;:41;;33988:92;;;::::0;-1:-1:-1;;;33988:92:0;;8337:2:1;33988:92:0::1;::::0;::::1;8319:21:1::0;8376:2;8356:18;;;8349:30;8415:34;8395:18;;;8388:62;-1:-1:-1;;;8466:18:1;;;8459:36;8512:19;;33988:92:0::1;8135:402:1::0;33988:92:0::1;34105:17;:6:::0;34115::::1;34105:17;:::i;:::-;34091:11;:31:::0;-1:-1:-1;33903:227:0:o;34363:134::-;21514:6;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34449:33:0;;;::::1;;::::0;;;:25:::1;:33;::::0;;;;:40;;-1:-1:-1;;34449:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34363:134::o;33345:143::-;21514:6;;33408:4;;-1:-1:-1;;;;;21514:6:0;214:10;21514:22;21506:67;;;;-1:-1:-1;;;21506:67:0;;;;;;;:::i;:::-;-1:-1:-1;33424:26:0::1;:34:::0;;-1:-1:-1;;33424:34:0::1;::::0;;;33345:143;:::o;16333:182::-;16391:7;;16423:5;16427:1;16423;:5;:::i;:::-;16411:17;;16452:1;16447;:6;;16439:46;;;;-1:-1:-1;;;16439:46:0;;8744:2:1;16439:46:0;;;8726:21:1;8783:2;8763:18;;;8756:30;8822:29;8802:18;;;8795:57;8869:18;;16439:46:0;8542:351:1;16439:46:0;16506:1;16333:182;-1:-1:-1;;;16333:182:0:o;14952:381::-;-1:-1:-1;;;;;15088:19:0;;15080:68;;;;-1:-1:-1;;;15080:68:0;;9100:2:1;15080:68:0;;;9082:21:1;9139:2;9119:18;;;9112:30;9178:34;9158:18;;;9151:62;-1:-1:-1;;;9229:18:1;;;9222:34;9273:19;;15080:68:0;8898:400:1;15080:68:0;-1:-1:-1;;;;;15167:21:0;;15159:68;;;;-1:-1:-1;;;15159:68:0;;9505:2:1;15159:68:0;;;9487:21:1;9544:2;9524:18;;;9517:30;9583:34;9563:18;;;9556:62;-1:-1:-1;;;9634:18:1;;;9627:32;9676:19;;15159:68:0;9303:398:1;15159:68:0;-1:-1:-1;;;;;15241:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15293:32;;1898:25:1;;;15293:32:0;;1871:18:1;15293:32:0;;;;;;;;14952:381;;;:::o;36296:3715::-;-1:-1:-1;;;;;36428:18:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36507:16:0;;36499:64;;;;-1:-1:-1;;;36499:64:0;;;;;;;:::i;:::-;36601:10;;36582:15;:29;;36574:58;;;;-1:-1:-1;;;36574:58:0;;10718:2:1;36574:58:0;;;10700:21:1;10757:2;10737:18;;;10730:30;-1:-1:-1;;;10776:18:1;;;10769:46;10832:18;;36574:58:0;10516:340:1;36574:58:0;36647:11;36644:92;;36675:28;36691:4;36697:2;36701:1;36675:15;:28::i;:::-;36296:3715;;;:::o;36644:92::-;36752:15;;;;36749:1631;;;21366:6;;-1:-1:-1;;;;;36805:15:0;;;21366:6;;36805:15;;;;:49;;-1:-1:-1;21366:6:0;;-1:-1:-1;;;;;36841:13:0;;;21366:6;;36841:13;;36805:49;:86;;;;-1:-1:-1;;;;;;36875:16:0;;;;36805:86;:128;;;;-1:-1:-1;;;;;;36912:21:0;;36926:6;36912:21;;36805:128;:158;;;;-1:-1:-1;36955:8:0;;-1:-1:-1;;;36955:8:0;;;;36954:9;36805:158;36783:1586;;;37001:17;;;;;;;36997:156;;-1:-1:-1;;;;;37050:27:0;;;;;;:21;:27;;;;;;;;;:56;;-1:-1:-1;;;;;;37081:25:0;;;;;;:21;:25;;;;;;;;37050:56;37042:91;;;;-1:-1:-1;;;37042:91:0;;11063:2:1;37042:91:0;;;11045:21:1;11102:2;11082:18;;;11075:30;-1:-1:-1;;;11121:18:1;;;11114:52;11183:18;;37042:91:0;10861:346:1;37042:91:0;37196:26;;;;37192:429;;;21366:6;;-1:-1:-1;;;;;37250:13:0;;;21366:6;;37250:13;;;;:47;;;37281:15;-1:-1:-1;;;;;37267:30:0;:2;-1:-1:-1;;;;;37267:30:0;;;37250:47;:79;;;;;37315:13;-1:-1:-1;;;;;37301:28:0;:2;-1:-1:-1;;;;;37301:28:0;;;37250:79;37246:356;;;37394:9;37365:39;;;;:28;:39;;;;;;37407:12;-1:-1:-1;37357:140:0;;;;-1:-1:-1;;;37357:140:0;;11414:2:1;37357:140:0;;;11396:21:1;11453:2;11433:18;;;11426:30;11492:34;11472:18;;;11465:62;11563:34;11543:18;;;11536:62;-1:-1:-1;;;11614:19:1;;;11607:40;11664:19;;37357:140:0;11212:477:1;37357:140:0;37553:9;37524:39;;;;:28;:39;;;;;37566:12;37524:54;;37246:356;-1:-1:-1;;;;;37664:31:0;;;;;;:25;:31;;;;;;;;:65;;;;-1:-1:-1;;;;;;37700:29:0;;;;;;:25;:29;;;;;;;;37699:30;37664:65;37660:694;;;37776:11;;37766:6;:21;;37758:78;;;;-1:-1:-1;;;37758:78:0;;11896:2:1;37758:78:0;;;11878:21:1;11935:2;11915:18;;;11908:30;11974:34;11954:18;;;11947:62;-1:-1:-1;;;12025:18:1;;;12018:42;12077:19;;37758:78:0;11694:408:1;37758:78:0;37897:7;;-1:-1:-1;;;;;8839:18:0;;8812:7;8839:18;;;;;;;;;;;37871:22;;:6;:22;:::i;:::-;:33;;37863:65;;;;-1:-1:-1;;;37863:65:0;;12309:2:1;37863:65:0;;;12291:21:1;12348:2;12328:18;;;12321:30;-1:-1:-1;;;12367:18:1;;;12360:49;12426:18;;37863:65:0;12107:343:1;37863:65:0;37660:694;;;-1:-1:-1;;;;;37996:29:0;;;;;;:25;:29;;;;;;;;:65;;;;-1:-1:-1;;;;;;38030:31:0;;;;;;:25;:31;;;;;;;;38029:32;37996:65;37992:362;;;38108:11;;38098:6;:21;;38090:79;;;;-1:-1:-1;;;38090:79:0;;12657:2:1;38090:79:0;;;12639:21:1;12696:2;12676:18;;;12669:30;12735:34;12715:18;;;12708:62;-1:-1:-1;;;12786:18:1;;;12779:43;12839:19;;38090:79:0;12455:409:1;37992:362:0;-1:-1:-1;;;;;38216:29:0;;;;;;:25;:29;;;;;;;;38212:142;;38303:7;;-1:-1:-1;;;;;8839:18:0;;8812:7;8839:18;;;;;;;;;;;38277:22;;:6;:22;:::i;:::-;:33;;38269:65;;;;-1:-1:-1;;;38269:65:0;;12309:2:1;38269:65:0;;;12291:21:1;12348:2;12328:18;;;12321:30;-1:-1:-1;;;12367:18:1;;;12360:49;12426:18;;38269:65:0;12107:343:1;38269:65:0;38442:4;38393:28;8839:18;;;;;;;;;;;38501:21;;38477:45;;;;;;;38554:38;;-1:-1:-1;38578:14:0;;;;;;;38554:38;:64;;;;-1:-1:-1;38610:8:0;;-1:-1:-1;;;38610:8:0;;;;38609:9;38554:64;:113;;;;-1:-1:-1;;;;;;38636:31:0;;;;;;:25;:31;;;;;;;;38635:32;38554:113;:158;;;;-1:-1:-1;;;;;;38685:27:0;;;;;;:21;:27;;;;;;;;38684:28;38554:158;:201;;;;-1:-1:-1;;;;;;38730:25:0;;;;;;:21;:25;;;;;;;;38729:26;38554:201;38536:335;;;38782:8;:15;;-1:-1:-1;;;;38782:15:0;-1:-1:-1;;;38782:15:0;;;38815:10;:8;:10::i;:::-;38843:8;:16;;-1:-1:-1;;;;38843:16:0;;;38536:335;38900:8;;-1:-1:-1;;;;;38935:27:0;;38884:12;38935:27;;;:21;:27;;;;;;38900:8;-1:-1:-1;;;38900:8:0;;;;;38899:9;;38935:27;;:56;;-1:-1:-1;;;;;;38966:25:0;;;;;;:21;:25;;;;;;;;38935:56;38932:103;;;-1:-1:-1;39018:5:0;38932:103;39048:12;39088:7;39085:872;;;-1:-1:-1;;;;;39129:29:0;;;;;;:25;:29;;;;;;;;:57;;;;;39185:1;39162:20;;:24;39129:57;39125:679;;;39213:41;39250:3;39213:32;39224:20;;39213:6;:10;;:32;;;;:::i;:::-;:36;;:41::i;:::-;39206:48;;39325:20;;39300:22;;39293:4;:29;;;;:::i;:::-;:52;;;;:::i;:::-;39273:16;;:72;;;;;;;:::i;:::-;;;;-1:-1:-1;;39414:20:0;;39390:21;;39383:28;;:4;:28;:::i;:::-;:51;;;;:::i;:::-;39364:15;;:70;;;;;;;:::i;:::-;;;;-1:-1:-1;39125:679:0;;-1:-1:-1;39125:679:0;;-1:-1:-1;;;;;39486:31:0;;;;;;:25;:31;;;;;;;;:58;;;;;39543:1;39521:19;;:23;39486:58;39483:321;;;39572:40;39608:3;39572:31;39583:19;;39572:6;:10;;:31;;;;:::i;:40::-;39565:47;;39682:19;;39658:21;;39651:4;:28;;;;:::i;:::-;:50;;;;:::i;:::-;39631:16;;:70;;;;;;;:::i;:::-;;;;-1:-1:-1;;39769:19:0;;39746:20;;39739:27;;:4;:27;:::i;:::-;:49;;;;:::i;:::-;39720:15;;:68;;;;;;;:::i;:::-;;;;-1:-1:-1;;39483:321:0;39824:8;;39821:93;;39856:42;39872:4;39886;39893;39856:15;:42::i;:::-;39931:14;39941:4;39931:14;;:::i;:::-;;;39085:872;39970:33;39986:4;39992:2;39996:6;39970:15;:33::i;:::-;36409:3602;;;;36296:3715;;;:::o;17239:193::-;17325:7;17361:12;17353:6;;;;17345:29;;;;-1:-1:-1;;;17345:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17385:9:0;17397:5;17401:1;17397;:5;:::i;:::-;17385:17;17239:193;-1:-1:-1;;;;;17239:193:0:o;35734:189::-;-1:-1:-1;;;;;35817:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35817:39:0;;;;;;;;;;35875:40;;35817:39;;:31;35875:40;;;35734:189;;:::o;12516:575::-;-1:-1:-1;;;;;12656:20:0;;12648:70;;;;-1:-1:-1;;;12648:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12737:23:0;;12729:71;;;;-1:-1:-1;;;12729:71:0;;;;;;;:::i;:::-;12895;12917:6;12895:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12895:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;12875:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13000:20;;;;;;;:32;;13025:6;13000:24;:32::i;:::-;-1:-1:-1;;;;;12977:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13048:35;1898:25:1;;;12977:20:0;;13048:35;;;;;;1871:18:1;13048:35:0;1752:177:1;40933:1302:0;41016:4;40972:23;8839:18;;;;;;;;;;;40972:50;;41033:25;41080:15;;41061:16;;:34;;;;:::i;:::-;41033:62;-1:-1:-1;41106:12:0;41135:20;;;:46;;-1:-1:-1;41159:22:0;;41135:46;41132:60;;;41184:7;;;40933:1302::o;41132:60::-;41226:21;;:26;;41250:2;41226:26;:::i;:::-;41208:15;:44;41205:117;;;41284:21;;:26;;41308:2;41284:26;:::i;:::-;41266:44;;41205:117;41345:23;41428:1;41408:17;41389:16;;41371:15;:34;;;;:::i;:::-;:54;;;;:::i;:::-;:58;;;;:::i;:::-;41345:84;-1:-1:-1;41440:26:0;41469:36;:15;41345:84;41469:19;:36::i;:::-;41440:65;-1:-1:-1;41547:21:0;41582:36;41440:65;41582:16;:36::i;:::-;41633:18;41654:44;:21;41680:17;41654:25;:44::i;:::-;41633:65;;41712:23;41738:54;41774:17;41738:31;41753:15;;41738:10;:14;;:31;;;;:::i;:54::-;41712:80;-1:-1:-1;41803:23:0;41829:28;41712:80;41829:10;:28;:::i;:::-;41893:1;41874:16;:20;;;41905:15;:19;;;41959:10;;41951:52;;41803:54;;-1:-1:-1;;;;;;41959:10:0;;41983:15;;41951:52;41893:1;41951:52;41983:15;41959:10;41951:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41938:65:0;;-1:-1:-1;;42020:19:0;;;;;:42;;;42061:1;42043:15;:19;42020:42;42017:208;;;42078:46;42091:15;42108;42078:12;:46::i;:::-;42196:16;;42144:69;;;13411:25:1;;;13467:2;13452:18;;13445:34;;;13495:18;;;13488:34;;;;42144:69:0;;;;;;13399:2:1;42144:69:0;;;42017:208;40961:1274;;;;;;;;;40933:1302::o;17692:473::-;17750:7;17995:6;17991:47;;-1:-1:-1;18025:1:0;18018:8;;17991:47;18051:9;18063:5;18067:1;18063;:5;:::i;:::-;18051:17;-1:-1:-1;18096:1:0;18087:5;18091:1;18051:17;18087:5;:::i;:::-;:10;18079:56;;;;-1:-1:-1;;;18079:56:0;;13735:2:1;18079:56:0;;;13717:21:1;13774:2;13754:18;;;13747:30;13813:34;13793:18;;;13786:62;-1:-1:-1;;;13864:18:1;;;13857:31;13905:19;;18079:56:0;13533:397:1;18642:132:0;18700:7;18727:39;18731:1;18734;18727:39;;;;;;;;;;;;;;;;;:3;:39::i;16799:136::-;16857:7;16884:43;16888:1;16891;16884:43;;;;;;;;;;;;;;;;;:3;:43::i;40020:504::-;40123:16;;;40137:1;40123:16;;;;;;;;40099:21;;40123:16;;;;;;;;;;-1:-1:-1;40123:16:0;40099:40;;40168:4;40150;40155:1;40150:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40150:23:0;;;-1:-1:-1;;;;;40150:23:0;;;;;40194:15;-1:-1:-1;;;;;40194:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40184:4;40189:1;40184:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40184:32:0;;;-1:-1:-1;;;;;40184:32:0;;;;;40230:62;40247:4;40262:15;40280:11;40230:8;:62::i;:::-;40316:197;;-1:-1:-1;;;40316:197:0;;-1:-1:-1;;;;;40316:15:0;:66;;;;:197;;40397:11;;40423:1;;40440:4;;40467;;40487:15;;40316:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40075:449;40020:504;:::o;40533:391::-;40624:62;40641:4;40656:15;40674:11;40624:8;:62::i;:::-;40710:206;;-1:-1:-1;;;40710:206:0;;40782:4;40710:206;;;15781:34:1;;;15831:18;;;15824:34;;;40828:1:0;15874:18:1;;;15867:34;;;15917:18;;;15910:34;15960:19;;;15953:44;40890:15:0;16013:19:1;;;16006:35;40710:15:0;-1:-1:-1;;;;;40710:31:0;;;;40749:9;;15715:19:1;;40710:206:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40533:391;;:::o;19271:279::-;19357:7;19392:12;19385:5;19377:28;;;;-1:-1:-1;;;19377:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19416:9:0;19428:5;19432:1;19428;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;808:131::-;-1:-1:-1;;;;;883:31:1;;873:42;;863:70;;929:1;926;919:12;863:70;808:131;:::o;944:315::-;1012:6;1020;1073:2;1061:9;1052:7;1048:23;1044:32;1041:52;;;1089:1;1086;1079:12;1041:52;1128:9;1115:23;1147:31;1172:5;1147:31;:::i;:::-;1197:5;1249:2;1234:18;;;;1221:32;;-1:-1:-1;;;944:315:1:o;1264:248::-;1332:6;1340;1393:2;1381:9;1372:7;1368:23;1364:32;1361:52;;;1409:1;1406;1399:12;1361:52;-1:-1:-1;;1432:23:1;;;1502:2;1487:18;;;1474:32;;-1:-1:-1;1264:248:1:o;1934:456::-;2011:6;2019;2027;2080:2;2068:9;2059:7;2055:23;2051:32;2048:52;;;2096:1;2093;2086:12;2048:52;2135:9;2122:23;2154:31;2179:5;2154:31;:::i;:::-;2204:5;-1:-1:-1;2261:2:1;2246:18;;2233:32;2274:33;2233:32;2274:33;:::i;:::-;1934:456;;2326:7;;-1:-1:-1;;;2380:2:1;2365:18;;;;2352:32;;1934:456::o;2395:247::-;2454:6;2507:2;2495:9;2486:7;2482:23;2478:32;2475:52;;;2523:1;2520;2513:12;2475:52;2562:9;2549:23;2581:31;2606:5;2581:31;:::i;2836:180::-;2895:6;2948:2;2936:9;2927:7;2923:23;2919:32;2916:52;;;2964:1;2961;2954:12;2916:52;-1:-1:-1;2987:23:1;;2836:180;-1:-1:-1;2836:180:1:o;3229:160::-;3294:20;;3350:13;;3343:21;3333:32;;3323:60;;3379:1;3376;3369:12;3394:180;3450:6;3503:2;3491:9;3482:7;3478:23;3474:32;3471:52;;;3519:1;3516;3509:12;3471:52;3542:26;3558:9;3542:26;:::i;3579:315::-;3644:6;3652;3705:2;3693:9;3684:7;3680:23;3676:32;3673:52;;;3721:1;3718;3711:12;3673:52;3760:9;3747:23;3779:31;3804:5;3779:31;:::i;:::-;3829:5;-1:-1:-1;3853:35:1;3884:2;3869:18;;3853:35;:::i;:::-;3843:45;;3579:315;;;;;:::o;3899:388::-;3967:6;3975;4028:2;4016:9;4007:7;4003:23;3999:32;3996:52;;;4044:1;4041;4034:12;3996:52;4083:9;4070:23;4102:31;4127:5;4102:31;:::i;:::-;4152:5;-1:-1:-1;4209:2:1;4194:18;;4181:32;4222:33;4181:32;4222:33;:::i;:::-;4274:7;4264:17;;;3899:388;;;;;:::o;4292:380::-;4371:1;4367:12;;;;4414;;;4435:61;;4489:4;4481:6;4477:17;4467:27;;4435:61;4542:2;4534:6;4531:14;4511:18;4508:38;4505:161;;;4588:10;4583:3;4579:20;4576:1;4569:31;4623:4;4620:1;4613:15;4651:4;4648:1;4641:15;4505:161;;4292:380;;;:::o;4677:356::-;4879:2;4861:21;;;4898:18;;;4891:30;4957:34;4952:2;4937:18;;4930:62;5024:2;5009:18;;4677:356::o;5038:127::-;5099:10;5094:3;5090:20;5087:1;5080:31;5130:4;5127:1;5120:15;5154:4;5151:1;5144:15;5170:128;5210:3;5241:1;5237:6;5234:1;5231:13;5228:39;;;5247:18;;:::i;:::-;-1:-1:-1;5283:9:1;;5170:128::o;5303:168::-;5343:7;5409:1;5405;5401:6;5397:14;5394:1;5391:21;5386:1;5379:9;5372:17;5368:45;5365:71;;;5416:18;;:::i;:::-;-1:-1:-1;5456:9:1;;5303:168::o;5476:217::-;5516:1;5542;5532:132;;5586:10;5581:3;5577:20;5574:1;5567:31;5621:4;5618:1;5611:15;5649:4;5646:1;5639:15;5532:132;-1:-1:-1;5678:9:1;;5476:217::o;9706:401::-;9908:2;9890:21;;;9947:2;9927:18;;;9920:30;9986:34;9981:2;9966:18;;9959:62;-1:-1:-1;;;10052:2:1;10037:18;;10030:35;10097:3;10082:19;;9706:401::o;10112:399::-;10314:2;10296:21;;;10353:2;10333:18;;;10326:30;10392:34;10387:2;10372:18;;10365:62;-1:-1:-1;;;10458:2:1;10443:18;;10436:33;10501:3;10486:19;;10112:399::o;12869:125::-;12909:4;12937:1;12934;12931:8;12928:34;;;12942:18;;:::i;:::-;-1:-1:-1;12979:9:1;;12869:125::o;14067:127::-;14128:10;14123:3;14119:20;14116:1;14109:31;14159:4;14156:1;14149:15;14183:4;14180:1;14173:15;14199:251;14269:6;14322:2;14310:9;14301:7;14297:23;14293:32;14290:52;;;14338:1;14335;14328:12;14290:52;14370:9;14364:16;14389:31;14414:5;14389:31;:::i;14455:980::-;14717:4;14765:3;14754:9;14750:19;14796:6;14785:9;14778:25;14822:2;14860:6;14855:2;14844:9;14840:18;14833:34;14903:3;14898:2;14887:9;14883:18;14876:31;14927:6;14962;14956:13;14993:6;14985;14978:22;15031:3;15020:9;15016:19;15009:26;;15070:2;15062:6;15058:15;15044:29;;15091:1;15101:195;15115:6;15112:1;15109:13;15101:195;;;15180:13;;-1:-1:-1;;;;;15176:39:1;15164:52;;15271:15;;;;15236:12;;;;15212:1;15130:9;15101:195;;;-1:-1:-1;;;;;;;15352:32:1;;;;15347:2;15332:18;;15325:60;-1:-1:-1;;;15416:3:1;15401:19;15394:35;15313:3;14455:980;-1:-1:-1;;;14455:980:1:o;16052:306::-;16140:6;16148;16156;16209:2;16197:9;16188:7;16184:23;16180:32;16177:52;;;16225:1;16222;16215:12;16177:52;16254:9;16248:16;16238:26;;16304:2;16293:9;16289:18;16283:25;16273:35;;16348:2;16337:9;16333:18;16327:25;16317:35;;16052:306;;;;;:::o
Swarm Source
ipfs://9fae613418a326316502ac36b2661b5dc3e0ac8a8f0ed23e8aa87907c6dce723
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.