More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 11 from a total of 11 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 16038653 | 777 days ago | IN | 0 ETH | 0.00070836 | ||||
Approve | 16021432 | 779 days ago | IN | 0 ETH | 0.00161116 | ||||
Approve | 15888889 | 798 days ago | IN | 0 ETH | 0.00084279 | ||||
Approve | 15763229 | 815 days ago | IN | 0 ETH | 0.0007764 | ||||
Approve | 15669819 | 828 days ago | IN | 0 ETH | 0.00073011 | ||||
Approve | 15440748 | 863 days ago | IN | 0 ETH | 0.00061539 | ||||
Approve | 15437241 | 863 days ago | IN | 0 ETH | 0.00068299 | ||||
Approve | 15429519 | 865 days ago | IN | 0 ETH | 0.00059839 | ||||
Approve | 15419320 | 866 days ago | IN | 0 ETH | 0.00036628 | ||||
Approve | 15418756 | 866 days ago | IN | 0 ETH | 0.00033212 | ||||
Approve | 15416725 | 867 days ago | IN | 0 ETH | 0.00236009 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15416690 | 867 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x947ae117...291C36027 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
PYESwapPair
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import './interfaces/IPYESwapPair.sol'; import './interfaces/IPYESwapRouter.sol'; import './PYESwapERC20.sol'; import './libraries/Math.sol'; import './libraries/UQ112x112.sol'; import './libraries/ReentrancyGuard.sol'; import './interfaces/IERC20.sol'; import './interfaces/IPYESwapFactory.sol'; import './interfaces/IPYESwapCallee.sol'; import './interfaces/IToken.sol'; contract PYESwapPair is IPYESwapPair, PYESwapERC20, ReentrancyGuard { using SafeMath for uint; using UQ112x112 for uint224; uint public constant override MINIMUM_LIQUIDITY = 10**3; bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)'))); IPYESwapRouter public routerAddress; address public immutable override factory; address public override token0; address public override token1; address public override baseToken; address public override feeTaker; bool public supportsTokenFee; bool public pairInit; uint112 private reserve0; // uses single storage slot, accessible via getReserves uint112 private reserve1; // uses single storage slot, accessible via getReserves uint32 private blockTimestampLast; // uses single storage slot, accessible via getReserves uint public override price0CumulativeLast; uint public override price1CumulativeLast; uint public override kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event uint private unlocked = 1; modifier lock() { require(msg.sender == address(routerAddress), "only router accessible"); require(unlocked == 1, 'PYESwap: LOCKED'); unlocked = 0; _; unlocked = 1; } function getReserves() public view override returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast, address _baseToken) { _reserve0 = reserve0; _reserve1 = reserve1; _blockTimestampLast = blockTimestampLast; _baseToken = baseToken; } function _safeTransfer(address token, address to, uint value, bool isSwapping) private nonReentrant { if(value == 0){ return; } if (routerAddress.pairFeeAddress(address(this)) == token && isSwapping){ uint256 adminFee = routerAddress.adminFee(); if(adminFee != 0){ uint256 getOutFee = value.mul(adminFee) / (10000); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, routerAddress.adminFeeAddress(), getOutFee)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'PYESwap: TRANSFER_FAILED'); value = value.sub(getOutFee); } (bool success1, bytes memory data1) = token.call(abi.encodeWithSelector(SELECTOR, to, value)); require(success1 && (data1.length == 0 || abi.decode(data1, (bool))), 'PYESwap: TRANSFER_FAILED'); }else { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'PYESwap: TRANSFER_FAILED'); } } event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); event Initialize(address token0, address token1, IPYESwapRouter router, address caller); event BaseTokenSet(address baseToken, address caller); event FeeTakerSet(address feeTaker, address caller); constructor() { factory = msg.sender; } // called once by the factory at time of deployment function initialize(address _token0, address _token1, bool _supportsTokenFee) external override { require(msg.sender == factory, 'PYESwap: FORBIDDEN'); // sufficient check require(!pairInit, "PYESwap: INITIALIZED_ALREADY"); require(_token0 != address(0) && _token1 != address(0), "PYESwap: INVALID_ADDRESS"); token0 = _token0; token1 = _token1; supportsTokenFee = _supportsTokenFee; routerAddress = IPYESwapRouter(IPYESwapFactory(factory).routerAddress()); pairInit = true; emit Initialize(token0, token1, routerAddress, msg.sender); } // update reserves and, on the first call per block, price accumulators function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private { require(balance0 <= type(uint112).max && balance1 <= type(uint112).max, 'PYESwap: OVERFLOW'); uint32 blockTimestamp = uint32(block.timestamp % 2**32); uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) { // * never overflows, and + overflow is desired price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed; price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed; } reserve0 = uint112(balance0); reserve1 = uint112(balance1); blockTimestampLast = blockTimestamp; emit Sync(reserve0, reserve1); } // if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k) function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) { address feeTo = IPYESwapFactory(factory).feeTo(); feeOn = feeTo != address(0); uint _kLast = kLast; // gas savings if (feeOn) { if (_kLast != 0) { uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1)); uint rootKLast = Math.sqrt(_kLast); if (rootK > rootKLast) { uint numerator = totalSupply.mul(rootK.sub(rootKLast)); uint denominator = rootK.mul(5).add(rootKLast); uint liquidity = numerator / denominator; if (liquidity > 0) _mint(feeTo, liquidity); } } } else if (_kLast != 0) { kLast = 0; } } // this low-level function should be called from a contract which performs important safety checks function mint(address to) external override lock returns (uint liquidity) { (uint112 _reserve0, uint112 _reserve1,,) = getReserves(); // gas savings uint balance0 = IERC20(token0).balanceOf(address(this)); uint balance1 = IERC20(token1).balanceOf(address(this)); uint amount0 = balance0.sub(_reserve0); uint amount1 = balance1.sub(_reserve1); bool feeOn = _mintFee(_reserve0, _reserve1); uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee if (_totalSupply == 0) { liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY); _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens } else { liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1); } require(liquidity > 0, 'PYESwap: INSUFFICIENT_LIQUIDITY_MINTED'); _mint(to, liquidity); _update(balance0, balance1, _reserve0, _reserve1); if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date emit Mint(msg.sender, amount0, amount1); } // this low-level function should be called from a contract which performs important safety checks function burn(address to) external override lock returns (uint amount0, uint amount1) { require(totalSupply != 0, "PYESwap: totalSupply must not be 0"); (uint112 _reserve0, uint112 _reserve1,,) = getReserves(); // gas savings address _token0 = token0; // gas savings address _token1 = token1; // gas savings uint balance0 = IERC20(_token0).balanceOf(address(this)); uint balance1 = IERC20(_token1).balanceOf(address(this)); uint liquidity = balanceOf[address(this)]; bool feeOn = _mintFee(_reserve0, _reserve1); uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution require(amount0 > 0 && amount1 > 0, 'PYESwap: INSUFFICIENT_LIQUIDITY_BURNED'); _burn(address(this), liquidity); _safeTransfer(_token0, to, amount0, false); _safeTransfer(_token1, to, amount1, false); balance0 = IERC20(_token0).balanceOf(address(this)); balance1 = IERC20(_token1).balanceOf(address(this)); _update(balance0, balance1, _reserve0, _reserve1); if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date emit Burn(msg.sender, amount0, amount1, to); } // this low-level function should be called from a contract which performs important safety checks function swap(uint amount0Out, uint amount1Out, uint amount0Fee, uint amount1Fee, address to, bytes calldata data) external override lock { require(amount0Out > 0 || amount1Out > 0, 'PYESwap: INSUFFICIENT_OUTPUT_AMOUNT'); (uint112 _reserve0, uint112 _reserve1,,) = getReserves(); // gas savings require(amount0Out < _reserve0 && amount1Out < _reserve1, 'PYESwap: INSUFFICIENT_LIQUIDITY'); uint balance0; uint balance1; { // scope for _token{0,1}, avoids stack too deep errors address _token0 = token0; address _token1 = token1; require(to != _token0 && to != _token1, 'PYESwap: INVALID_TO'); if (amount0Out > 0) { _safeTransfer(_token0, to, amount0Out, true); } if (amount1Out > 0) { _safeTransfer(_token1, to, amount1Out, true); } if(amount0Fee > 0 && baseToken == token0) { bool success0 = IERC20(_token0).approve(_token1, amount0Fee); require(success0); IToken(_token1).handleFee(amount0Fee, _token0); } if(amount1Fee > 0 && baseToken == token1) { bool success1 = IERC20(_token1).approve(_token0, amount1Fee); require(success1); IToken(_token0).handleFee(amount1Fee, _token1); } if (data.length > 0) IPYESwapCallee(to).pyeSwapCall(msg.sender, amount0Out, amount1Out, data); balance0 = IERC20(_token0).balanceOf(address(this)); balance1 = IERC20(_token1).balanceOf(address(this)); } uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0; uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0; require(amount0In > 0 || amount1In > 0, 'PYESwap: INSUFFICIENT_INPUT_AMOUNT'); { // scope for reserve{0,1}Adjusted, avoids stack too deep errors require(balance0.mul(balance1) >= uint(_reserve0).mul(_reserve1), 'PYESwap: K'); } _update(balance0, balance1, _reserve0, _reserve1); { uint _amount0Out = amount0Out > 0 ? amount0Out.add(amount0Fee) : 0; uint _amount1Out = amount1Out > 0 ? amount1Out.add(amount1Fee) : 0; address _to = to; emit Swap(msg.sender, amount0In, amount1In, _amount0Out, _amount1Out, _to); } } // force balances to match reserves function skim(address to) external override lock { address _token0 = token0; // gas savings address _token1 = token1; // gas savings _safeTransfer(_token0, to, IERC20(_token0).balanceOf(address(this)).sub(reserve0), false); _safeTransfer(_token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1), false); } // force reserves to match balances function sync() external override lock { _update(IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1); } function setBaseToken(address _baseToken) external override { require(msg.sender == factory, "PYESwap: NOT_FACTORY"); require(_baseToken == token0 || _baseToken == token1, "PYESwap: WRONG_ADDRESS"); baseToken = _baseToken; emit BaseTokenSet(baseToken, msg.sender); } function setFeeTaker(address _feeTaker) external override { require(msg.sender == factory, "PYESwap: NOT_FACTORY"); require(_feeTaker == token0 || _feeTaker == token1, "PYESwap: WRONG_ADDRESS"); feeTaker = _feeTaker; emit FeeTakerSet(feeTaker, msg.sender); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IToken { function addPair(address pair, address token) external; function handleFee(uint amount, address token) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IPYESwapCallee { function pyeSwapCall(address sender, uint amount0, uint amount1, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IPYESwapFactory { // 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 pairExist(address pair) external view returns (bool); function createPair(address tokenA, address tokenB, bool supportsTokenFee, address feeTaker) external returns (address pair); function routerInitialize(address) external; function routerAddress() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view 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); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. * * _Since v2.5.0:_ this module is now much more gas efficient, given net gas * metering changes introduced in the Istanbul hardfork. */ contract ReentrancyGuard { bool private _notEntered; constructor () { // Storing an initial non-zero value makes deployment a bit more // expensive, but in exchange the refund on every call to nonReentrant // will be lower in amount. Since refunds are capped to a percetange of // the total transaction's gas, it is best to keep them low in cases // like this one, to increase the likelihood of the full refund coming // into effect. _notEntered = true; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_notEntered, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _notEntered = false; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) // range: [0, 2**112 - 1] // resolution: 1 / 2**112 library UQ112x112 { uint224 constant Q112 = 2**112; // encode a uint112 as a UQ112x112 function encode(uint112 y) internal pure returns (uint224 z) { z = uint224(y) * Q112; // never overflows } // divide a UQ112x112 by a uint112, returning a UQ112x112 function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) { z = x / uint224(y); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; // a library for performing various math operations library Math { function min(uint x, uint y) internal pure returns (uint z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint y) internal pure returns (uint z) { if (y > 3) { z = y; uint x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import './interfaces/IPYESwapERC20.sol'; import './libraries/SafeMath.sol'; import './libraries/ECDSA.sol'; contract PYESwapERC20 is IPYESwapERC20 { using SafeMath for uint; string public constant override name = 'PYESwap-LP'; string public constant override symbol = 'PYE-LP'; uint8 public constant override decimals = 18; uint public override totalSupply; mapping(address => uint) public override balanceOf; mapping(address => mapping(address => uint)) public override allowance; bytes32 public immutable override DOMAIN_SEPARATOR; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant override PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; mapping(address => uint) public override nonces; event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); constructor() { uint chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'), keccak256(bytes(name)), keccak256(bytes('1')), chainId, address(this) ) ); } function _mint(address to, uint value) internal { totalSupply = totalSupply.add(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(address(0), to, value); } function _burn(address from, uint value) internal { balanceOf[from] = balanceOf[from].sub(value); totalSupply = totalSupply.sub(value); emit Transfer(from, address(0), value); } function _approve(address owner, address spender, uint value) private { allowance[owner][spender] = value; emit Approval(owner, spender, value); } function _transfer(address from, address to, uint value) private { balanceOf[from] = balanceOf[from].sub(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(from, to, value); } function approve(address spender, uint value) external virtual override returns (bool) { _approve(msg.sender, spender, value); return true; } function transfer(address to, uint value) external override returns (bool) { _transfer(msg.sender, to, value); return true; } function transferFrom(address from, address to, uint value) external override returns (bool) { if (allowance[from][msg.sender] != type(uint).max - 1) { allowance[from][msg.sender] = allowance[from][msg.sender].sub(value); } _transfer(from, to, value); return true; } function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external override { require(deadline >= block.timestamp, 'PYESwap: EXPIRED'); bytes32 digest = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR, keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline)) ) ); address recoveredAddress = ECDSA.recover(digest, v, r, s); require(recoveredAddress != address(0) && recoveredAddress == owner, 'PYESwap: INVALID_SIGNATURE'); _approve(owner, spender, value); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IPYESwapRouter { function pairFeeAddress(address pair) external view returns (address); function adminFee() external view returns (uint256); function feeAddressGet() external view returns (address); function adminFeeAddress() external view returns (address); function owner() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IPYESwapPair { function baseToken() external view returns (address); function feeTaker() external view returns (address); 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, address _baseToken); 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, uint amount0Fee, uint amount1Fee, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address, bool) external; function setBaseToken(address _baseToken) external; function setFeeTaker(address _feeTaker) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length if (signature.length != 65) { revert("ECDSA: invalid signature length"); } // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover-bytes32-bytes-} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value"); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * replicates the behavior of the * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`] * JSON-RPC method. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; // a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math) library SafeMath { function add(uint x, uint y) internal pure returns (uint z) { require((z = x + y) >= x, 'ds-math-add-overflow'); } function sub(uint x, uint y) internal pure returns (uint z) { require((z = x - y) <= x, 'ds-math-sub-underflow'); } function mul(uint x, uint y) internal pure returns (uint z) { require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow'); } function div(uint x, uint y) internal pure returns (uint z) { require(y > 0, "ds-math-div-underflow"); z = x / y; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IPYESwapERC20 { 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; }
{ "optimizer": { "enabled": true, "runs": 99999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"baseToken","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"BaseTokenSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeTaker","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"FeeTakerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token0","type":"address"},{"indexed":false,"internalType":"address","name":"token1","type":"address"},{"indexed":false,"internalType":"contract IPYESwapRouter","name":"router","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"Initialize","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint112","name":"reserve0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"reserve1","type":"uint112"}],"name":"Sync","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeTaker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"},{"internalType":"address","name":"_baseToken","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"},{"internalType":"bool","name":"_supportsTokenFee","type":"bool"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"kLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairInit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"contract IPYESwapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_baseToken","type":"address"}],"name":"setBaseToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeTaker","type":"address"}],"name":"setFeeTaker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supportsTokenFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"uint256","name":"amount0Fee","type":"uint256"},{"internalType":"uint256","name":"amount1Fee","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102265760003560e01c80637464fc3d1161012a578063bc25cf77116100bd578063d505accf1161008c578063e4bbb5a811610071578063e4bbb5a814610659578063f8b134c61461066c578063fff6cae91461067f57600080fd5b8063d505accf1461061b578063dd62ed3e1461062e57600080fd5b8063bc25cf77146105a1578063c45a0155146105b4578063c55dae63146105db578063d21220a7146105fb57600080fd5b806389afcb44116100f957806389afcb441461052157806395d89b4114610549578063a9059cbb14610585578063ba9a7a561461059857600080fd5b80637464fc3d146104b3578063749f1044146104bc57806378df7200146104dc5780637ecebe001461050157600080fd5b8063313ce567116101bd57806353c61b201161018c5780635a3d5493116101715780635a3d5493146104775780636a6278421461048057806370a082311461049357600080fd5b806353c61b20146104485780635909c0d51461046e57600080fd5b8063313ce567146103cf5780633268cc56146103e95780633644e5151461040e5780634ec5908d1461043557600080fd5b806316bb6c13116101f957806316bb6c131461036957806318160ddd1461037e57806323b872dd1461039557806330adf81f146103a857600080fd5b806306fdde031461022b5780630902f1ac1461027d578063095ea7b3146103015780630dfe168114610324575b600080fd5b6102676040518060400160405280600a81526020017f505945537761702d4c500000000000000000000000000000000000000000000081525081565b6040516102749190613ec5565b60405180910390f35b600954600754604080516dffffffffffffffffffffffffffff80851682526e01000000000000000000000000000085041660208201527c010000000000000000000000000000000000000000000000000000000090930463ffffffff169083015273ffffffffffffffffffffffffffffffffffffffff166060820152608001610274565b61031461030f366004613f3b565b610687565b6040519015158152602001610274565b6005546103449073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610274565b61037c610377366004613f67565b61069e565b005b61038760005481565b604051908152602001610274565b6103146103a3366004613f84565b61086a565b6103877f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6103d7601281565b60405160ff9091168152602001610274565b60045461034490610100900473ffffffffffffffffffffffffffffffffffffffff1681565b6103877f3538af16ef5976238b703eef26890ad5a4ed88c21ac4d7192fadbeb45bf3d56c81565b61037c610443366004613f67565b61094f565b600854610314907501000000000000000000000000000000000000000000900460ff1681565b610387600a5481565b610387600b5481565b61038761048e366004613f67565b610b0f565b6103876104a1366004613f67565b60016020526000908152604090205481565b610387600c5481565b6008546103449073ffffffffffffffffffffffffffffffffffffffff1681565b6008546103149074010000000000000000000000000000000000000000900460ff1681565b61038761050f366004613f67565b60036020526000908152604090205481565b61053461052f366004613f67565b610f75565b60408051928352602083019190915201610274565b6102676040518060400160405280600681526020017f5059452d4c50000000000000000000000000000000000000000000000000000081525081565b610314610593366004613f3b565b611595565b6103876103e881565b61037c6105af366004613f67565b6115a2565b6103447f0000000000000000000000000fc5f7ec0fa80933677f63c7b896a26cfc6b76a581565b6007546103449073ffffffffffffffffffffffffffffffffffffffff1681565b6006546103449073ffffffffffffffffffffffffffffffffffffffff1681565b61037c610629366004613fc5565b6117ed565b61038761063c36600461403c565b600260209081526000928352604080842090915290825290205481565b61037c610667366004614083565b611a67565b61037c61067a3660046140ce565b611e47565b61037c6128ca565b6000610694338484612b1c565b5060015b92915050565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000fc5f7ec0fa80933677f63c7b896a26cfc6b76a51614610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f505945537761703a204e4f545f464143544f525900000000000000000000000060448201526064015b60405180910390fd5b60055473ffffffffffffffffffffffffffffffffffffffff82811691161480610785575060065473ffffffffffffffffffffffffffffffffffffffff8281169116145b6107eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f505945537761703a2057524f4e475f41444452455353000000000000000000006044820152606401610739565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080519182523360208301527f81d060e62e98f05de6556ad0e46fcba49da8631d2b46069174cae9da2035fead91015b60405180910390a150565b600061089760017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6141a9565b73ffffffffffffffffffffffffffffffffffffffff851660009081526002602090815260408083203384529091529020541461093a5773ffffffffffffffffffffffffffffffffffffffff841660009081526002602090815260408083203384529091529020546109089083612b8b565b73ffffffffffffffffffffffffffffffffffffffff851660009081526002602090815260408083203384529091529020555b610945848484612c03565b5060019392505050565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000fc5f7ec0fa80933677f63c7b896a26cfc6b76a516146109ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f505945537761703a204e4f545f464143544f52590000000000000000000000006044820152606401610739565b60055473ffffffffffffffffffffffffffffffffffffffff82811691161480610a31575060065473ffffffffffffffffffffffffffffffffffffffff8281169116145b610a97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f505945537761703a2057524f4e475f41444452455353000000000000000000006044820152606401610739565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080519182523360208301527fef6d4223c75a14c35a118bdfb70f26790210b34eab687699bd6c2e9f90320dd4910161085f565b600454600090610100900473ffffffffffffffffffffffffffffffffffffffff163314610b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c7920726f757465722061636365737369626c65000000000000000000006044820152606401610739565b600d54600114610c04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f505945537761703a204c4f434b454400000000000000000000000000000000006044820152606401610739565b6000600d819055600954600554604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516dffffffffffffffffffffffffffff808516956e01000000000000000000000000000090950416939273ffffffffffffffffffffffffffffffffffffffff16916370a082319160248083019260209291908290030181865afa158015610caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cce91906141c0565b6006546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015291925060009173ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6691906141c0565b90506000610d84836dffffffffffffffffffffffffffff8716612b8b565b90506000610da2836dffffffffffffffffffffffffffff8716612b8b565b90506000610db08787612cd0565b60008054919250819003610df057610ddc6103e8610dd6610dd18787612e39565b612ec3565b90612b8b565b9850610deb60006103e8612f33565b610e45565b610e426dffffffffffffffffffffffffffff8916610e0e8684612e39565b610e189190614208565b6dffffffffffffffffffffffffffff8916610e338685612e39565b610e3d9190614208565b612fdc565b98505b60008911610ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f505945537761703a20494e53554646494349454e545f4c49515549444954595f60448201527f4d494e54454400000000000000000000000000000000000000000000000000006064820152608401610739565b610edf8a8a612f33565b610eeb86868a8a612ff4565b8115610f2757600954610f23906dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416612e39565b600c555b604080518581526020810185905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a250506001600d5550949695505050505050565b6004546000908190610100900473ffffffffffffffffffffffffffffffffffffffff163314611000576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c7920726f757465722061636365737369626c65000000000000000000006044820152606401610739565b600d5460011461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f505945537761703a204c4f434b454400000000000000000000000000000000006044820152606401610739565b6000600d81905580549003611103576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f505945537761703a20746f74616c537570706c79206d757374206e6f7420626560448201527f20300000000000000000000000000000000000000000000000000000000000006064820152608401610739565b6000806111796009546007546dffffffffffffffffffffffffffff808316936e01000000000000000000000000000084049091169263ffffffff7c0100000000000000000000000000000000000000000000000000000000909104169173ffffffffffffffffffffffffffffffffffffffff1690565b50506005546006546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015293955091935073ffffffffffffffffffffffffffffffffffffffff9081169291169060009083906370a0823190602401602060405180830381865afa1580156111fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121e91906141c0565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290915060009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa15801561128e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b291906141c0565b306000908152600160205260408120549192506112cf8888612cd0565b600054909150806112e08487612e39565b6112ea9190614208565b9a50806112f78486612e39565b6113019190614208565b995060008b118015611313575060008a115b61139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f505945537761703a20494e53554646494349454e545f4c49515549444954595f60448201527f4255524e454400000000000000000000000000000000000000000000000000006064820152608401610739565b6113a930846132d0565b6113b6878d8d6000613381565b6113c3868d8c6000613381565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8816906370a0823190602401602060405180830381865afa15801561142d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145191906141c0565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290955073ffffffffffffffffffffffffffffffffffffffff8716906370a0823190602401602060405180830381865afa1580156114be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e291906141c0565b93506114f085858b8b612ff4565b811561152c57600954611528906dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416612e39565b600c555b604080518c8152602081018c905273ffffffffffffffffffffffffffffffffffffffff8e169133917fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496910160405180910390a35050505050505050506001600d81905550915091565b6000610694338484612c03565b600454610100900473ffffffffffffffffffffffffffffffffffffffff163314611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c7920726f757465722061636365737369626c65000000000000000000006044820152606401610739565b600d54600114611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f505945537761703a204c4f434b454400000000000000000000000000000000006044820152606401610739565b6000600d556005546006546009546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff938416939092169161175e9184918691611757916dffffffffffffffffffffffffffff9091169084906370a08231906024015b602060405180830381865afa158015611733573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd691906141c0565b6000613381565b6009546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526117e39183918691611757916e0100000000000000000000000000009091046dffffffffffffffffffffffffffff169073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401611716565b50506001600d5550565b42841015611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f505945537761703a2045585049524544000000000000000000000000000000006044820152606401610739565b73ffffffffffffffffffffffffffffffffffffffff8716600090815260036020526040812080547f3538af16ef5976238b703eef26890ad5a4ed88c21ac4d7192fadbeb45bf3d56c917f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b91876118d28361421c565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810187905260e001604051602081830303815290604052805190602001206040516020016119739291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050600061199982868686613b7e565b905073ffffffffffffffffffffffffffffffffffffffff8116158015906119eb57508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b611a51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f505945537761703a20494e56414c49445f5349474e41545552450000000000006044820152606401610739565b611a5c898989612b1c565b505050505050505050565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000fc5f7ec0fa80933677f63c7b896a26cfc6b76a51614611b06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f505945537761703a20464f5242494444454e00000000000000000000000000006044820152606401610739565b6008547501000000000000000000000000000000000000000000900460ff1615611b8c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f505945537761703a20494e495449414c495a45445f414c5245414459000000006044820152606401610739565b73ffffffffffffffffffffffffffffffffffffffff831615801590611bc6575073ffffffffffffffffffffffffffffffffffffffff821615155b611c2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f505945537761703a20494e56414c49445f4144445245535300000000000000006044820152606401610739565b600580547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff8681169190911790925560068054909116848316179055600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000084151502179055604080517f3268cc5600000000000000000000000000000000000000000000000000000000815290517f0000000000000000000000000fc5f7ec0fa80933677f63c7b896a26cfc6b76a590921691633268cc56916004808201926020929091908290030181865afa158015611d3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d609190614254565b6004805473ffffffffffffffffffffffffffffffffffffffff9283166101009081027fffffffffffffffffffffff0000000000000000000000000000000000000000ff9092169190911791829055600880547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556005546006546040805192861683529085166020830152919092049092168183015233606082015290517f420f11aae030b1b71b7480842c183b50e595c7c74203eb478d183ad7d3fdbd269181900360800190a1505050565b600454610100900473ffffffffffffffffffffffffffffffffffffffff163314611ecd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c7920726f757465722061636365737369626c65000000000000000000006044820152606401610739565b600d54600114611f39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f505945537761703a204c4f434b454400000000000000000000000000000000006044820152606401610739565b6000600d5586151580611f4c5750600086115b611fd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f505945537761703a20494e53554646494349454e545f4f55545055545f414d4f60448201527f554e5400000000000000000000000000000000000000000000000000000000006064820152608401610739565b60008061204e6009546007546dffffffffffffffffffffffffffff808316936e01000000000000000000000000000084049091169263ffffffff7c0100000000000000000000000000000000000000000000000000000000909104169173ffffffffffffffffffffffffffffffffffffffff1690565b505091509150816dffffffffffffffffffffffffffff16891080156120825750806dffffffffffffffffffffffffffff1688105b6120e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f505945537761703a20494e53554646494349454e545f4c4951554944495459006044820152606401610739565b600554600654600091829173ffffffffffffffffffffffffffffffffffffffff91821691908116908916821480159061214d57508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b6121b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f505945537761703a20494e56414c49445f544f000000000000000000000000006044820152606401610739565b8c156121c6576121c6828a8f6001613381565b8b156121d9576121d9818a8e6001613381565b60008b118015612206575060055460075473ffffffffffffffffffffffffffffffffffffffff9081169116145b1561233e576040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8281166004830152602482018d90526000919084169063095ea7b3906044016020604051808303816000875af1158015612284573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a89190614271565b9050806122b457600080fd5b6040517fd3a866c7000000000000000000000000000000000000000000000000000000008152600481018d905273ffffffffffffffffffffffffffffffffffffffff848116602483015283169063d3a866c790604401600060405180830381600087803b15801561232457600080fd5b505af1158015612338573d6000803e3d6000fd5b50505050505b60008a11801561236b575060065460075473ffffffffffffffffffffffffffffffffffffffff9081169116145b156124a3576040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152602482018c90526000919083169063095ea7b3906044016020604051808303816000875af11580156123e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061240d9190614271565b90508061241957600080fd5b6040517fd3a866c7000000000000000000000000000000000000000000000000000000008152600481018c905273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063d3a866c790604401600060405180830381600087803b15801561248957600080fd5b505af115801561249d573d6000803e3d6000fd5b50505050505b861561251d578873ffffffffffffffffffffffffffffffffffffffff166337ca99e0338f8f8c8c6040518663ffffffff1660e01b81526004016124ea95949392919061428e565b600060405180830381600087803b15801561250457600080fd5b505af1158015612518573d6000803e3d6000fd5b505050505b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015612587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ab91906141c0565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290945073ffffffffffffffffffffffffffffffffffffffff8216906370a0823190602401602060405180830381865afa158015612618573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061263c91906141c0565b9250505060008b856dffffffffffffffffffffffffffff1661265e91906141a9565b831161266b57600061268f565b6126858c6dffffffffffffffffffffffffffff87166141a9565b61268f90846141a9565b905060006126ad8c6dffffffffffffffffffffffffffff87166141a9565b83116126ba5760006126de565b6126d48c6dffffffffffffffffffffffffffff87166141a9565b6126de90846141a9565b905060008211806126ef5750600081115b61277b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f505945537761703a20494e53554646494349454e545f494e5055545f414d4f5560448201527f4e540000000000000000000000000000000000000000000000000000000000006064820152608401610739565b6127986dffffffffffffffffffffffffffff878116908716612e39565b6127a28585612e39565b101561280a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f505945537761703a204b000000000000000000000000000000000000000000006044820152606401610739565b61281684848888612ff4565b6000808e11612826576000612830565b6128308e8d613dd6565b90506000808e1161284257600061284c565b61284c8e8d613dd6565b6040805186815260208101869052908101849052606081018290529091508b9073ffffffffffffffffffffffffffffffffffffffff82169033907fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229060800160405180910390a350506001600d555050505050505050505050505050565b600454610100900473ffffffffffffffffffffffffffffffffffffffff163314612950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c7920726f757465722061636365737369626c65000000000000000000006044820152606401610739565b600d546001146129bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f505945537761703a204c4f434b454400000000000000000000000000000000006044820152606401610739565b6000600d556005546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152612b159173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015612a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5591906141c0565b6006546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015612ac3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ae791906141c0565b6009546dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416612ff4565b6001600d55565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600082612b9883826141a9565b9150811115610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f7700000000000000000000006044820152606401610739565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054612c339082612b8b565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600160205260408082209390935590841681522054612c6f9082613dd6565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612b7e9085815260200190565b6000807f0000000000000000000000000fc5f7ec0fa80933677f63c7b896a26cfc6b76a573ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d629190614254565b600c5473ffffffffffffffffffffffffffffffffffffffff8216158015945091925090612e25578015612e20576000612db1610dd16dffffffffffffffffffffffffffff888116908816612e39565b90506000612dbe83612ec3565b905080821115612e1d576000612de0612dd78484612b8b565b60005490612e39565b90506000612df983612df3866005612e39565b90613dd6565b90506000612e078284614208565b90508015612e1957612e198782612f33565b5050505b50505b612e31565b8015612e31576000600c555b505092915050565b6000811580612e5d57508282612e4f8183614306565b9250612e5b9083614208565b145b610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f770000000000000000000000006044820152606401610739565b60006003821115612f245750806000612edd600283614208565b612ee8906001614343565b90505b81811015612f1e57905080600281612f038186614208565b612f0d9190614343565b612f179190614208565b9050612eeb565b50919050565b8115612f2e575060015b919050565b600054612f409082613dd6565b600090815573ffffffffffffffffffffffffffffffffffffffff8316815260016020526040902054612f729082613dd6565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612fd09085815260200190565b60405180910390a35050565b6000818310612feb5781612fed565b825b9392505050565b6dffffffffffffffffffffffffffff841180159061302057506dffffffffffffffffffffffffffff8311155b613086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f505945537761703a204f564552464c4f570000000000000000000000000000006044820152606401610739565b60006130976401000000004261435b565b6009549091506000906130d0907c0100000000000000000000000000000000000000000000000000000000900463ffffffff168361436f565b905060008163ffffffff161180156130f757506dffffffffffffffffffffffffffff841615155b801561311257506dffffffffffffffffffffffffffff831615155b156131e0578063ffffffff1661314f8561312b86613e4e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1690613e79565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166131779190614306565b600a60008282546131889190614343565b909155505063ffffffff81166131a18461312b87613e4e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166131c99190614306565b600b60008282546131da9190614343565b90915550505b6009805463ffffffff84167c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6dffffffffffffffffffffffffffff8981166e0100000000000000000000000000009081027fffffffff000000000000000000000000000000000000000000000000000000009095168c83161794909417918216831794859055604080519382169282169290921783529290930490911660208201527f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1910160405180910390a1505050505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020546133009082612b8b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040812091909155546133349082612b8b565b600090815560405182815273ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001612fd0565b60045460ff166133ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610739565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690558115613b4d57600480546040517fdcacce69000000000000000000000000000000000000000000000000000000008152309281019290925273ffffffffffffffffffffffffffffffffffffffff86811692610100909204169063dcacce6990602401602060405180830381865afa158015613494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b89190614254565b73ffffffffffffffffffffffffffffffffffffffff161480156134d85750805b156139b1576000600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0be06f96040518163ffffffff1660e01b8152600401602060405180830381865afa15801561354c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061357091906141c0565b905080156138105760006127106135878584612e39565b6135919190614208565b90506000808773ffffffffffffffffffffffffffffffffffffffff166040518060400160405280601981526020017f7472616e7366657228616464726573732c75696e74323536290000000000000081525080519060200120600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166308a171496040518163ffffffff1660e01b8152600401602060405180830381865afa158015613657573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061367b9190614254565b60405173ffffffffffffffffffffffffffffffffffffffff909116602482015260448101869052606401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090941693909317909252905161372e9190614394565b6000604051808303816000865af19150503d806000811461376b576040519150601f19603f3d011682016040523d82523d6000602084013e613770565b606091505b509150915081801561379a57508051158061379a57508080602001905181019061379a9190614271565b613800576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f505945537761703a205452414e534645525f4641494c454400000000000000006044820152606401610739565b61380a8684612b8b565b95505050505b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff87811660248301526044808301889052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052915160009283928916916138d79190614394565b6000604051808303816000865af19150503d8060008114613914576040519150601f19603f3d011682016040523d82523d6000602084013e613919565b606091505b50915091508180156139435750805115806139435750808060200190518101906139439190614271565b6139a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f505945537761703a205452414e534645525f4641494c454400000000000000006044820152606401610739565b505050613b4d565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff86811660248301526044808301879052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905291516000928392881691613a789190614394565b6000604051808303816000865af19150503d8060008114613ab5576040519150601f19603f3d011682016040523d82523d6000602084013e613aba565b606091505b5091509150818015613ae4575080511580613ae4575080806020019051810190613ae49190614271565b613b4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f505945537761703a205452414e534645525f4641494c454400000000000000006044820152606401610739565b50505b5050600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115613c30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610739565b8360ff16601b1480613c4557508360ff16601c145b613cd1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610739565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015613d25573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116613dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610739565b95945050505050565b600082613de38382614343565b9150811015610698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f770000000000000000000000006044820152606401610739565b60006106986e0100000000000000000000000000006dffffffffffffffffffffffffffff84166143b0565b6000612fed6dffffffffffffffffffffffffffff8316846143f4565b60005b83811015613eb0578181015183820152602001613e98565b83811115613ebf576000848401525b50505050565b6020815260008251806020840152613ee4816040850160208701613e95565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b73ffffffffffffffffffffffffffffffffffffffff81168114613f3857600080fd5b50565b60008060408385031215613f4e57600080fd5b8235613f5981613f16565b946020939093013593505050565b600060208284031215613f7957600080fd5b8135612fed81613f16565b600080600060608486031215613f9957600080fd5b8335613fa481613f16565b92506020840135613fb481613f16565b929592945050506040919091013590565b600080600080600080600060e0888a031215613fe057600080fd5b8735613feb81613f16565b96506020880135613ffb81613f16565b95506040880135945060608801359350608088013560ff8116811461401f57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561404f57600080fd5b823561405a81613f16565b9150602083013561406a81613f16565b809150509250929050565b8015158114613f3857600080fd5b60008060006060848603121561409857600080fd5b83356140a381613f16565b925060208401356140b381613f16565b915060408401356140c381614075565b809150509250925092565b600080600080600080600060c0888a0312156140e957600080fd5b87359650602088013595506040880135945060608801359350608088013561411081613f16565b925060a088013567ffffffffffffffff8082111561412d57600080fd5b818a0191508a601f83011261414157600080fd5b81358181111561415057600080fd5b8b602082850101111561416257600080fd5b60208301945080935050505092959891949750929550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156141bb576141bb61417a565b500390565b6000602082840312156141d257600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614217576142176141d9565b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361424d5761424d61417a565b5060010190565b60006020828403121561426657600080fd5b8151612fed81613f16565b60006020828403121561428357600080fd5b8151612fed81614075565b73ffffffffffffffffffffffffffffffffffffffff8616815284602082015283604082015260806060820152816080820152818360a0830137600081830160a090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101949350505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561433e5761433e61417a565b500290565b600082198211156143565761435661417a565b500190565b60008261436a5761436a6141d9565b500690565b600063ffffffff8381169083168181101561438c5761438c61417a565b039392505050565b600082516143a6818460208701613e95565b9190910192915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff808316818516818304811182151516156143eb576143eb61417a565b02949350505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80841680614423576144236141d9565b9216919091049291505056fea26469706673582212203562bcecb2cfa78447db7f156db780c1e1cf45da8ccbe250a512f4d190eb181164736f6c634300080f0033
Deployed Bytecode Sourcemap
431:12762:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;1767:288:1;1928:8;;2039:9;;1767:288;;;1928:8;;;;1002:34:14;;1958:8:1;;;;1067:2:14;1052:18;;1045:43;1998:18:1;;;;;;1104::14;;;1097:51;2039:9:1;;1179:2:14;1164:18;;1157:83;940:3;925:19;1767:288:1;724:522:14;2320:161:0;;;;;;:::i;:::-;;:::i;:::-;;;1895:14:14;;1888:22;1870:41;;1858:2;1843:18;2320:161:0;1730:187:14;814:30:1;;;;;;;;;;;;2098:42:14;2086:55;;;2068:74;;2056:2;2041:18;814:30:1;1922:226:14;12587:303:1;;;;;;:::i;:::-;;:::i;:::-;;403:33:0;;;;;;;;;2551:25:14;;;2539:2;2524:18;403:33:0;2405:177:14;2638:314:0;;;;;;:::i;:::-;;:::i;735:117::-;;786:66;735:117;;353:44;;395:2;353:44;;;;;3402:4:14;3390:17;;;3372:36;;3360:2;3345:18;353:44:0;3230:184:14;725:35:1;;;;;;;;;;;;575:50:0;;;;;12896:295:1;;;;;;:::i;:::-;;:::i;997:20::-;;;;;;;;;;;;1313:41;;;;;;1360;;;;;;6509:1228;;;;;;:::i;:::-;;:::i;442:50:0:-;;;;;;:::i;:::-;;;;;;;;;;;;;;1407:26:1;;;;;;925:32;;;;;;;;;963:28;;;;;;;;;;;;858:47:0;;;;;;:::i;:::-;;;;;;;;;;;;;;7846:1539:1;;;;;;:::i;:::-;;:::i;:::-;;;;3847:25:14;;;3903:2;3888:18;;3881:34;;;;3820:18;7846:1539:1;3673:248:14;298:49:0;;;;;;;;;;;;;;;;;;;;;2487:145;;;;;;:::i;:::-;;:::i;569:55:1:-;;619:5;569:55;;12018:352;;;;;;:::i;:::-;;:::i;767:41::-;;;;;886:33;;;;;;;;;850:30;;;;;;;;;2958:671:0;;;;;;:::i;:::-;;:::i;498:70::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;3946:611:1;;;;;;:::i;:::-;;:::i;9494:2478::-;;;;;;:::i;:::-;;:::i;12416:165::-;;;:::i;2320:161:0:-;2401:4;2417:36;2426:10;2438:7;2447:5;2417:8;:36::i;:::-;-1:-1:-1;2470:4:0;2320:161;;;;;:::o;12587:303:1:-;12665:10;:21;12679:7;12665:21;;12657:54;;;;;;;7012:2:14;12657:54:1;;;6994:21:14;7051:2;7031:18;;;7024:30;7090:22;7070:18;;;7063:50;7130:18;;12657:54:1;;;;;;;;;12743:6;;;12729:20;;;12743:6;;12729:20;;:44;;-1:-1:-1;12767:6:1;;;12753:20;;;12767:6;;12753:20;12729:44;12721:79;;;;;;;7361:2:14;12721:79:1;;;7343:21:14;7400:2;7380:18;;;7373:30;7439:24;7419:18;;;7412:52;7481:18;;12721:79:1;7159:346:14;12721:79:1;12811:9;:22;;;;;;;;;;;;;12848:35;;;7745:34:14;;;12872:10:1;7810:2:14;7795:18;;7788:43;12848:35:1;;7657:18:14;12848:35:1;;;;;;;;12587:303;:::o;2638:314:0:-;2725:4;2776:18;2793:1;2776:14;:18;:::i;:::-;2745:15;;;;;;;:9;:15;;;;;;;;2761:10;2745:27;;;;;;;;:49;2741:148;;2840:15;;;;;;;:9;:15;;;;;;;;2856:10;2840:27;;;;;;;;:38;;2872:5;2840:31;:38::i;:::-;2810:15;;;;;;;:9;:15;;;;;;;;2826:10;2810:27;;;;;;;:68;2741:148;2898:26;2908:4;2914:2;2918:5;2898:9;:26::i;:::-;-1:-1:-1;2941:4:0;2638:314;;;;;:::o;12896:295:1:-;12972:10;:21;12986:7;12972:21;;12964:54;;;;;;;7012:2:14;12964:54:1;;;6994:21:14;7051:2;7031:18;;;7024:30;7090:22;7070:18;;;7063:50;7130:18;;12964:54:1;6810:344:14;12964:54:1;13049:6;;;13036:19;;;13049:6;;13036:19;;:42;;-1:-1:-1;13072:6:1;;;13059:19;;;13072:6;;13059:19;13036:42;13028:77;;;;;;;7361:2:14;13028:77:1;;;7343:21:14;7400:2;7380:18;;;7373:30;7439:24;7419:18;;;7412:52;7481:18;;13028:77:1;7159:346:14;13028:77:1;13116:8;:20;;;;;;;;;;;;;13151:33;;;7745:34:14;;;13173:10:1;7810:2:14;7795:18;;7788:43;13151:33:1;;7657:18:14;13151:33:1;7510:327:14;6509:1228:1;1607:13;;6567:14;;1607:13;;;;;1585:10;:36;1577:71;;;;;;;8363:2:14;1577:71:1;;;8345:21:14;8402:2;8382:18;;;8375:30;8441:24;8421:18;;;8414:52;8483:18;;1577:71:1;8161:346:14;1577:71:1;1666:8;;1678:1;1666:13;1658:41;;;;;;;8714:2:14;1658:41:1;;;8696:21:14;8753:2;8733:18;;;8726:30;8792:17;8772:18;;;8765:45;8827:18;;1658:41:1;8512:339:14;1658:41:1;1720:1;1709:8;:12;;;1928:8;;6697:6:::1;::::0;6690:39:::1;::::0;;;;;6723:4:::1;6690:39;::::0;::::1;2068:74:14::0;6690:39:1;;1928:8;;;;;1958;;;;;;1720:1;6697:6:::1;;::::0;6690:24:::1;::::0;2041:18:14;;;;;6690:39:1::1;::::0;;;;;;;;6697:6;6690:39:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6762:6;::::0;6755:39:::1;::::0;;;;6788:4:::1;6755:39;::::0;::::1;2068:74:14::0;6674:55:1;;-1:-1:-1;6739:13:1::1;::::0;6762:6:::1;::::0;;::::1;::::0;6755:24:::1;::::0;2041:18:14;;6755:39:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6739:55:::0;-1:-1:-1;6804:12:1::1;6819:23;:8:::0;:23:::1;::::0;::::1;:12;:23::i;:::-;6804:38:::0;-1:-1:-1;6852:12:1::1;6867:23;:8:::0;:23:::1;::::0;::::1;:12;:23::i;:::-;6852:38;;6901:10;6914:30;6923:9;6934;6914:8;:30::i;:::-;6954:17;6974:11:::0;;6901:43;;-1:-1:-1;7077:17:1;;;7073:348:::1;;7122:54;619:5;7122:31;7132:20;:7:::0;7144;7132:11:::1;:20::i;:::-;7122:9;:31::i;:::-;:35:::0;::::1;:54::i;:::-;7110:66;;7190:36;7204:1;619:5;7190;:36::i;:::-;7073:348;;;7324:86;7333:37;::::0;::::1;:25;:7:::0;7345:12;7333:11:::1;:25::i;:::-;:37;;;;:::i;:::-;7372;::::0;::::1;:25;:7:::0;7384:12;7372:11:::1;:25::i;:::-;:37;;;;:::i;:::-;7324:8;:86::i;:::-;7312:98;;7073:348;7450:1;7438:9;:13;7430:64;;;::::0;::::1;::::0;;9561:2:14;7430:64:1::1;::::0;::::1;9543:21:14::0;9600:2;9580:18;;;9573:30;9639:34;9619:18;;;9612:62;9710:8;9690:18;;;9683:36;9736:19;;7430:64:1::1;9359:402:14::0;7430:64:1::1;7504:20;7510:2;7514:9;7504:5;:20::i;:::-;7535:49;7543:8;7553;7563:9;7574;7535:7;:49::i;:::-;7598:5;7594:47;;;7632:8;::::0;7613:28:::1;::::0;7632:8:::1;7618::::0;;::::1;::::0;7632;;::::1;;7613:18;:28::i;:::-;7605:5;:36:::0;7594:47:::1;7696:34;::::0;;3847:25:14;;;3903:2;3888:18;;3881:34;;;7701:10:1::1;::::0;7696:34:::1;::::0;3820:18:14;7696:34:1::1;;;;;;;-1:-1:-1::0;;1753:1:1;1742:8;:12;-1:-1:-1;6509:1228:1;;;-1:-1:-1;;;;;;6509:1228:1:o;7846:1539::-;1607:13;;7904:12;;;;1607:13;;;;;1585:10;:36;1577:71;;;;;;;8363:2:14;1577:71:1;;;8345:21:14;8402:2;8382:18;;;8375:30;8441:24;8421:18;;;8414:52;8483:18;;1577:71:1;8161:346:14;1577:71:1;1666:8;;1678:1;1666:13;1658:41;;;;;;;8714:2:14;1658:41:1;;;8696:21:14;8753:2;8733:18;;;8726:30;8792:17;8772:18;;;8765:45;8827:18;;1658:41:1;8512:339:14;1658:41:1;1720:1;1709:8;:12;;;7950:11;;:16;;7942:63:::1;;;::::0;::::1;::::0;;9968:2:14;7942:63:1::1;::::0;::::1;9950:21:14::0;10007:2;9987:18;;;9980:30;10046:34;10026:18;;;10019:62;10117:4;10097:18;;;10090:32;10139:19;;7942:63:1::1;9766:398:14::0;7942:63:1::1;8016:17;8035::::0;8058:13:::1;1928:8:::0;;2039:9;;1928:8;;;;;1958;;;;;;;1998:18;;;;;;;2039:9;;;1767:288;8058:13:::1;-1:-1:-1::0;;8114:6:1::1;::::0;8194::::1;::::0;8272:40:::1;::::0;;;;8306:4:::1;8272:40;::::0;::::1;2068:74:14::0;8015:56:1;;-1:-1:-1;8015:56:1;;-1:-1:-1;8114:6:1::1;::::0;;::::1;::::0;8194;::::1;::::0;8096:15:::1;::::0;8114:6;;8272:25:::1;::::0;2041:18:14;;8272:40:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8338;::::0;;;;8372:4:::1;8338:40;::::0;::::1;2068:74:14::0;8256:56:1;;-1:-1:-1;8322:13:1::1;::::0;8338:25:::1;::::0;::::1;::::0;::::1;::::0;2041:18:14;;8338:40:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8423:4;8388:14;8405:24:::0;;;:9:::1;:24;::::0;;;;;8322:56;;-1:-1:-1;8453:30:1::1;8462:9:::0;8473;8453:8:::1;:30::i;:::-;8493:17;8513:11:::0;8440:43;;-1:-1:-1;8513:11:1;8622:23:::1;:9:::0;8636:8;8622:13:::1;:23::i;:::-;:38;;;;:::i;:::-;8612:48:::0;-1:-1:-1;8754:12:1;8728:23:::1;:9:::0;8742:8;8728:13:::1;:23::i;:::-;:38;;;;:::i;:::-;8718:48;;8842:1;8832:7;:11;:26;;;;;8857:1;8847:7;:11;8832:26;8824:77;;;::::0;::::1;::::0;;10371:2:14;8824:77:1::1;::::0;::::1;10353:21:14::0;10410:2;10390:18;;;10383:30;10449:34;10429:18;;;10422:62;10520:8;10500:18;;;10493:36;10546:19;;8824:77:1::1;10169:402:14::0;8824:77:1::1;8911:31;8925:4;8932:9;8911:5;:31::i;:::-;8952:42;8966:7;8975:2;8979:7;8988:5;8952:13;:42::i;:::-;9004;9018:7;9027:2;9031:7;9040:5;9004:13;:42::i;:::-;9067:40;::::0;;;;9101:4:::1;9067:40;::::0;::::1;2068:74:14::0;9067:25:1::1;::::0;::::1;::::0;::::1;::::0;2041:18:14;;9067:40:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9128;::::0;;;;9162:4:::1;9128:40;::::0;::::1;2068:74:14::0;9056:51:1;;-1:-1:-1;9128:25:1::1;::::0;::::1;::::0;::::1;::::0;2041:18:14;;9128:40:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9117:51;;9179:49;9187:8;9197;9207:9;9218;9179:7;:49::i;:::-;9242:5;9238:47;;;9276:8;::::0;9257:28:::1;::::0;9276:8:::1;9262::::0;;::::1;::::0;9276;;::::1;;9257:18;:28::i;:::-;9249:5;:36:::0;9238:47:::1;9340:38;::::0;;3847:25:14;;;3903:2;3888:18;;3881:34;;;9340:38:1::1;::::0;::::1;::::0;9345:10:::1;::::0;9340:38:::1;::::0;3820:18:14;9340:38:1::1;;;;;;;7932:1453;;;;;;;;;1753:1:::0;1742:8;:12;;;;7846:1539;;;:::o;2487:145:0:-;2556:4;2572:32;2582:10;2594:2;2598:5;2572:9;:32::i;12018:352:1:-;1607:13;;;;;;;1585:10;:36;1577:71;;;;;;;8363:2:14;1577:71:1;;;8345:21:14;8402:2;8382:18;;;8375:30;8441:24;8421:18;;;8414:52;8483:18;;1577:71:1;8161:346:14;1577:71:1;1666:8;;1678:1;1666:13;1658:41;;;;;;;8714:2:14;1658:41:1;;;8696:21:14;8753:2;8733:18;;;8726:30;8792:17;8772:18;;;8765:45;8827:18;;1658:41:1;8512:339:14;1658:41:1;1720:1;1709:8;:12;12095:6:::1;::::0;12144::::1;::::0;12247:8:::1;::::0;12202:40:::1;::::0;;;;12236:4:::1;12202:40;::::0;::::1;2068:74:14::0;12095:6:1::1;::::0;;::::1;::::0;12144;;::::1;::::0;12175:89:::1;::::0;12095:6;;12198:2;;12202:54:::1;::::0;12247:8:::1;::::0;;::::1;::::0;12095:6;;12202:25:::1;::::0;2041:18:14;;12202:40:1::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:54::-;12258:5;12175:13;:89::i;:::-;12346:8;::::0;12301:40:::1;::::0;;;;12335:4:::1;12301:40;::::0;::::1;2068:74:14::0;12274:89:1::1;::::0;12288:7;;12297:2;;12301:54:::1;::::0;12346:8;;;::::1;;;::::0;12301:25:::1;::::0;::::1;::::0;::::1;::::0;2041:18:14;;12301:40:1::1;1922:226:14::0;12274:89:1::1;-1:-1:-1::0;;1753:1:1;1742:8;:12;-1:-1:-1;12018:352:1:o;2958:671:0:-;3112:15;3100:8;:27;;3092:56;;;;;;;10778:2:14;3092:56:0;;;10760:21:14;10817:2;10797:18;;;10790:30;10856:18;10836;;;10829:46;10892:18;;3092:56:0;10576:340:14;3092:56:0;3355:13;;;3158:14;3355:13;;;:6;:13;;;;;:15;;3260:16;;786:66;;3332:5;;3339:7;;3348:5;;3158:14;3355:15;;;:::i;:::-;;;;-1:-1:-1;3304:77:0;;;;;;11408:25:14;;;;11452:42;11530:15;;;11510:18;;;11503:43;11582:15;;;;11562:18;;;11555:43;11614:18;;;11607:34;11657:19;;;11650:35;11701:19;;;11694:35;;;11380:19;;3304:77:0;;;;;;;;;;;;3294:88;;;;;;3198:198;;;;;;;;12010:66:14;11998:79;;12102:1;12093:11;;12086:27;;;;12138:2;12129:12;;12122:28;12175:2;12166:12;;11740:444;3198:198:0;;;;;;;;;;;;;3175:231;;;;;;3158:248;;3416:24;3443:30;3457:6;3465:1;3468;3471;3443:13;:30::i;:::-;3416:57;-1:-1:-1;3491:30:0;;;;;;;:59;;;3545:5;3525:25;;:16;:25;;;3491:59;3483:98;;;;;;;12391:2:14;3483:98:0;;;12373:21:14;12430:2;12410:18;;;12403:30;12469:28;12449:18;;;12442:56;12515:18;;3483:98:0;12189:350:14;3483:98:0;3591:31;3600:5;3607:7;3616:5;3591:8;:31::i;:::-;3082:547;;2958:671;;;;;;;:::o;3946:611:1:-;4060:10;:21;4074:7;4060:21;;4052:52;;;;;;;12746:2:14;4052:52:1;;;12728:21:14;12785:2;12765:18;;;12758:30;12824:20;12804:18;;;12797:48;12862:18;;4052:52:1;12544:342:14;4052:52:1;4143:8;;;;;;;4142:9;4134:50;;;;;;;13093:2:14;4134:50:1;;;13075:21:14;13132:2;13112:18;;;13105:30;13171;13151:18;;;13144:58;13219:18;;4134:50:1;12891:352:14;4134:50:1;4202:21;;;;;;;:46;;-1:-1:-1;4227:21:1;;;;;4202:46;4194:83;;;;;;;13450:2:14;4194:83:1;;;13432:21:14;13489:2;13469:18;;;13462:30;13528:26;13508:18;;;13501:54;13572:18;;4194:83:1;13248:348:14;4194:83:1;4287:6;:16;;;;;;;;;;;;;;;;;4313:6;:16;;;;;;;;;;;4339;:36;;;;;;;;;;;;4416:40;;;;;;;;4432:7;4416:38;;;;;;:40;;;;;;;;;;;;;;;:38;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4385:13;:72;;;;;;;;;;;;;;;;;;;;;;4467:8;:15;;;;;;;;4508:6;;4516;;4497:53;;;4508:6;;;14172:34:14;;4516:6:1;;;14237:2:14;14222:18;;14215:43;4524:13:1;;;;;;;14274:18:14;;;14267:43;4539:10:1;14341:2:14;14326:18;;14319:43;4497:53:1;;;;;;;14098:3:14;4497:53:1;;;3946:611;;;:::o;9494:2478::-;1607:13;;;;;;;1585:10;:36;1577:71;;;;;;;8363:2:14;1577:71:1;;;8345:21:14;8402:2;8382:18;;;8375:30;8441:24;8421:18;;;8414:52;8483:18;;1577:71:1;8161:346:14;1577:71:1;1666:8;;1678:1;1666:13;1658:41;;;;;;;8714:2:14;1658:41:1;;;8696:21:14;8753:2;8733:18;;;8726:30;8792:17;8772:18;;;8765:45;8827:18;;1658:41:1;8512:339:14;1658:41:1;1720:1;1709:8;:12;9650:14;;;;:32:::1;;;9681:1;9668:10;:14;9650:32;9642:80;;;::::0;::::1;::::0;;14575:2:14;9642:80:1::1;::::0;::::1;14557:21:14::0;14614:2;14594:18;;;14587:30;14653:34;14633:18;;;14626:62;14724:5;14704:18;;;14697:33;14747:19;;9642:80:1::1;14373:399:14::0;9642:80:1::1;9733:17;9752::::0;9775:13:::1;1928:8:::0;;2039:9;;1928:8;;;;;1958;;;;;;;1998:18;;;;;;;2039:9;;;1767:288;9775:13:::1;9732:56;;;;;;9834:9;9821:22;;:10;:22;:48;;;;;9860:9;9847:22;;:10;:22;9821:48;9813:92;;;::::0;::::1;::::0;;14979:2:14;9813:92:1::1;::::0;::::1;14961:21:14::0;15018:2;14998:18;;;14991:30;15057:33;15037:18;;;15030:61;15108:18;;9813:92:1::1;14777:355:14::0;9813:92:1::1;10049:6;::::0;10087::::1;::::0;9916:13:::1;::::0;;;10049:6:::1;::::0;;::::1;::::0;10087;;::::1;::::0;10115:13;::::1;::::0;::::1;::::0;::::1;::::0;:30:::1;;;10138:7;10132:13;;:2;:13;;;;10115:30;10107:62;;;::::0;::::1;::::0;;15339:2:14;10107:62:1::1;::::0;::::1;15321:21:14::0;15378:2;15358:18;;;15351:30;15417:21;15397:18;;;15390:49;15456:18;;10107:62:1::1;15137:343:14::0;10107:62:1::1;10187:14:::0;;10183:97:::1;;10221:44;10235:7;10244:2;10248:10;10260:4;10221:13;:44::i;:::-;10297:14:::0;;10293:97:::1;;10331:44;10345:7;10354:2;10358:10;10370:4;10331:13;:44::i;:::-;10420:1;10407:10;:14;:37;;;;-1:-1:-1::0;10438:6:1::1;::::0;10425:9:::1;::::0;10438:6:::1;10425:9:::0;;::::1;10438:6:::0;::::1;10425:19;10407:37;10404:234;;;10480:44;::::0;;;;:23:::1;15677:55:14::0;;;10480:44:1::1;::::0;::::1;15659:74:14::0;15749:18;;;15742:34;;;10464:13:1::1;::::0;10480:23;;::::1;::::0;::::1;::::0;15632:18:14;;10480:44:1::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10464:60;;10550:8;10542:17;;;::::0;::::1;;10577:46;::::0;;;;::::1;::::0;::::1;16211:25:14::0;;;10577::1::1;16272:55:14::0;;;16252:18;;;16245:83;10577:25:1;::::1;::::0;::::1;::::0;16184:18:14;;10577:46:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;10446:192;10404:234;10667:1;10654:10;:14;:37;;;;-1:-1:-1::0;10685:6:1::1;::::0;10672:9:::1;::::0;10685:6:::1;10672:9:::0;;::::1;10685:6:::0;::::1;10672:19;10654:37;10651:234;;;10727:44;::::0;;;;:23:::1;15677:55:14::0;;;10727:44:1::1;::::0;::::1;15659:74:14::0;15749:18;;;15742:34;;;10711:13:1::1;::::0;10727:23;;::::1;::::0;::::1;::::0;15632:18:14;;10727:44:1::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10711:60;;10797:8;10789:17;;;::::0;::::1;;10824:46;::::0;;;;::::1;::::0;::::1;16211:25:14::0;;;10824::1::1;16272:55:14::0;;;16252:18;;;16245:83;10824:25:1;::::1;::::0;::::1;::::0;16184:18:14;;10824:46:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;10693:192;10651:234;10903:15:::0;;10899:93:::1;;10935:2;10920:30;;;10951:10;10963;10975;10987:4;;10920:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;10899:93;11017:40;::::0;;;;11051:4:::1;11017:40;::::0;::::1;2068:74:14::0;11017:25:1::1;::::0;::::1;::::0;::::1;::::0;2041:18:14;;11017:40:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11082;::::0;;;;11116:4:::1;11082:40;::::0;::::1;2068:74:14::0;11006:51:1;;-1:-1:-1;11082:25:1::1;::::0;::::1;::::0;::::1;::::0;2041:18:14;;11082:40:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11071:51;;9962:1171;;11151:14;11191:10;11179:9;:22;;;;;;:::i;:::-;11168:8;:33;:75;;11242:1;11168:75;;;11216:22;11228:10:::0;11216:22:::1;::::0;::::1;;:::i;:::-;11204:35;::::0;:8;:35:::1;:::i;:::-;11151:92:::0;-1:-1:-1;11253:14:1::1;11281:22;11293:10:::0;11281:22:::1;::::0;::::1;;:::i;:::-;11270:8;:33;:75;;11344:1;11270:75;;;11318:22;11330:10:::0;11318:22:::1;::::0;::::1;;:::i;:::-;11306:35;::::0;:8;:35:::1;:::i;:::-;11253:92;;11375:1;11363:9;:13;:30;;;;11392:1;11380:9;:13;11363:30;11355:77;;;::::0;::::1;::::0;;17260:2:14;11355:77:1::1;::::0;::::1;17242:21:14::0;17299:2;17279:18;;;17272:30;17338:34;17318:18;;;17311:62;17409:4;17389:18;;;17382:32;17431:19;;11355:77:1::1;17058:398:14::0;11355:77:1::1;11551:30;;:15:::0;;::::1;::::0;:30;::::1;:19;:30::i;:::-;11525:22;:8:::0;11538;11525:12:::1;:22::i;:::-;:56;;11517:79;;;::::0;::::1;::::0;;17663:2:14;11517:79:1::1;::::0;::::1;17645:21:14::0;17702:2;17682:18;;;17675:30;17741:12;17721:18;;;17714:40;17771:18;;11517:79:1::1;17461:334:14::0;11517:79:1::1;11617:49;11625:8;11635;11645:9;11656;11617:7;:49::i;:::-;11691:16;11723:1:::0;11710:10:::1;:14;:47;;11756:1;11710:47;;;11727:26;:10:::0;11742;11727:14:::1;:26::i;:::-;11691:66;;11771:16;11803:1:::0;11790:10:::1;:14;:47;;11836:1;11790:47;;;11807:26;:10:::0;11822;11807:14:::1;:26::i;:::-;11886:69;::::0;;18031:25:14;;;18087:2;18072:18;;18065:34;;;18115:18;;;18108:34;;;18173:2;18158:18;;18151:34;;;11771:66:1;;-1:-1:-1;11865:2:1;;11886:69:::1;::::0;::::1;::::0;11891:10:::1;::::0;11886:69:::1;::::0;18018:3:14;18003:19;11886:69:1::1;;;;;;;-1:-1:-1::0;;1753:1:1;1742:8;:12;-1:-1:-1;;;;;;;;;;;;;;9494:2478:1:o;12416:165::-;1607:13;;;;;;;1585:10;:36;1577:71;;;;;;;8363:2:14;1577:71:1;;;8345:21:14;8402:2;8382:18;;;8375:30;8441:24;8421:18;;;8414:52;8483:18;;1577:71:1;8161:346:14;1577:71:1;1666:8;;1678:1;1666:13;1658:41;;;;;;;8714:2:14;1658:41:1;;;8696:21:14;8753:2;8733:18;;;8726:30;8792:17;8772:18;;;8765:45;8827:18;;1658:41:1;8512:339:14;1658:41:1;1720:1;1709:8;:12;12480:6:::1;::::0;12473:39:::1;::::0;;;;12506:4:::1;12473:39;::::0;::::1;2068:74:14::0;12465:109:1::1;::::0;12480:6:::1;;::::0;12473:24:::1;::::0;2041:18:14;;12473:39:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12521:6;::::0;12514:39:::1;::::0;;;;12547:4:::1;12514:39;::::0;::::1;2068:74:14::0;12521:6:1::1;::::0;;::::1;::::0;12514:24:::1;::::0;2041:18:14;;12514:39:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12555:8;::::0;::::1;::::0;;::::1;::::0;12565;;::::1;;12465:7;:109::i;:::-;1753:1:::0;1742:8;:12;12416:165::o;1926:166:0:-;2006:16;;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;2054:31;;2551:25:14;;;2054:31:0;;2524:18:14;2054:31:0;;;;;;;;1926:166;;;:::o;318:127:12:-;370:6;411:1;401:5;405:1;411;401:5;:::i;:::-;397:9;;;396:16;;388:50;;;;;;;18398:2:14;388:50:12;;;18380:21:14;18437:2;18417:18;;;18410:30;18476:23;18456:18;;;18449:51;18517:18;;388:50:12;18196:345:14;2098:216:0;2191:15;;;;;;;:9;:15;;;;;;:26;;2211:5;2191:19;:26::i;:::-;2173:15;;;;;;;;:9;:15;;;;;;:44;;;;2243:13;;;;;;;:24;;2261:5;2243:17;:24::i;:::-;2227:13;;;;;;;;:9;:13;;;;;;;:40;;;;2282:25;;;;;;;;;;2301:5;2551:25:14;;2539:2;2524:18;;2405:177;5583:817:1;5656:10;5678:13;5710:7;5694:30;;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5787:5;;5744:19;;;;;;;-1:-1:-1;5678:48:1;;-1:-1:-1;5787:5:1;5817:577;;5846:11;;5842:485;;5877:10;5890:41;5900:30;;:15;;;;:30;;:19;:30::i;5890:41::-;5877:54;;5949:14;5966:17;5976:6;5966:9;:17::i;:::-;5949:34;;6013:9;6005:5;:17;6001:312;;;6046:14;6063:37;6079:20;:5;6089:9;6079;:20::i;:::-;6063:11;;;:15;:37::i;:::-;6046:54;-1:-1:-1;6122:16:1;6141:27;6158:9;6141:12;:5;6151:1;6141:9;:12::i;:::-;:16;;:27::i;:::-;6122:46;-1:-1:-1;6190:14:1;6207:23;6122:46;6207:9;:23;:::i;:::-;6190:40;-1:-1:-1;6256:13:1;;6252:42;;6271:23;6277:5;6284:9;6271:5;:23::i;:::-;6024:289;;;6001:312;5859:468;;5842:485;5817:577;;;6347:11;;6343:51;;6382:1;6374:5;:9;6343:51;5668:732;;5583:817;;;;:::o;451:140:12:-;503:6;529;;;:30;;-1:-1:-1;558:1:12;553;544:5;553:1;558;544:5;:::i;:::-;540:9;-1:-1:-1;539:15:12;;540:9;539:15;:::i;:::-;:20;529:30;521:63;;;;;;;18981:2:14;521:63:12;;;18963:21:14;19020:2;19000:18;;;18993:30;19059:22;19039:18;;;19032:50;19099:18;;521:63:12;18779:344:14;338:292:10;383:6;409:1;405;:5;401:223;;;-1:-1:-1;430:1:10;445:6;454:5;458:1;430;454:5;:::i;:::-;:9;;462:1;454:9;:::i;:::-;445:18;;477:89;488:1;484;:5;477:89;;;513:1;-1:-1:-1;513:1:10;550;513;537:5;513:1;537;:5;:::i;:::-;:9;;;;:::i;:::-;536:15;;;;:::i;:::-;532:19;;477:89;;;412:164;338:292;;;:::o;401:223::-;586:6;;582:42;;-1:-1:-1;612:1:10;582:42;338:292;;;:::o;1512:197:0:-;1584:11;;:22;;1600:5;1584:15;:22::i;:::-;1570:11;:36;;;1632:13;;;;;:9;:13;;;;;;:24;;1650:5;1632:17;:24::i;:::-;1616:13;;;;;;;:9;:13;;;;;;:40;;;;1671:31;;1616:13;;;1671:31;;;;1696:5;2551:25:14;;2539:2;2524:18;;2405:177;1671:31:0;;;;;;;;1512:197;;:::o;129:94:10:-;181:6;207:1;203;:5;:13;;215:1;203:13;;;211:1;203:13;199:17;129:94;-1:-1:-1;;;129:94:10:o;4639:857:1:-;4762:17;4750:29;;;;;:62;;-1:-1:-1;4795:17:1;4783:29;;;4750:62;4742:92;;;;;;;19463:2:14;4742:92:1;;;19445:21:14;19502:2;19482:18;;;19475:30;19541:19;19521:18;;;19514:47;19578:18;;4742:92:1;19261:341:14;4742:92:1;4844:21;4875:23;4893:5;4875:15;:23;:::i;:::-;4947:18;;4844:55;;-1:-1:-1;4909:18:1;;4930:35;;4947:18;;;;;4844:55;4930:35;:::i;:::-;4909:56;;5016:1;5002:11;:15;;;:33;;;;-1:-1:-1;5021:14:1;;;;;5002:33;:51;;;;-1:-1:-1;5039:14:1;;;;;5002:51;4998:332;;;5206:11;5153:64;;5158:44;5192:9;5158:27;5175:9;5158:16;:27::i;:::-;:33;;;;:44::i;:::-;5153:50;;:64;;;;:::i;:::-;5129:20;;:88;;;;;;;:::i;:::-;;;;-1:-1:-1;;5255:64:1;;;5260:44;5294:9;5260:27;5277:9;5260:16;:27::i;:44::-;5255:50;;:64;;;;:::i;:::-;5231:20;;:88;;;;;;;:::i;:::-;;;;-1:-1:-1;;4998:332:1;5339:8;:28;;5415:35;;;;;;5339:28;5377;;;;;;;;;;;5339;;;5377;;;;;5415:35;;;;;;;;;5465:24;;;5470:8;;;;;;;;;;20173:34:14;;5480:8:1;;;;;;;20238:2:14;20223:18;;20216:43;5465:24:1;;20097:18:14;5465:24:1;;;;;;;4732:764;;4639:857;;;;:::o;1715:205:0:-;1793:15;;;;;;;:9;:15;;;;;;:26;;1813:5;1793:19;:26::i;:::-;1775:15;;;;;;;:9;:15;;;;;:44;;;;1843:11;:22;;1859:5;1843:15;:22::i;:::-;1829:11;:36;;;1880:33;;2551:25:14;;;1880:33:0;;;;;;2539:2:14;2524:18;1880:33:0;2405:177:14;2061:1168:1;1957:11:11;;;;1949:55;;;;;;;20472:2:14;1949:55:11;;;20454:21:14;20511:2;20491:18;;;20484:30;20550:33;20530:18;;;20523:61;20601:18;;1949:55:11;20270:355:14;1949:55:11;2079:11;:19;;;;;;2171:45:1;;2199:7:::1;2171:45;2229:13;::::0;;:43:::1;::::0;;;;2266:4:::1;2229:43:::0;;::::1;2068:74:14::0;;;;2229:52:1::1;::::0;;::::1;::::0;:13:::1;::::0;;::::1;;::::0;:28:::1;::::0;2041:18:14;;2229:43:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;;;:66;;;;;2285:10;2229:66;2225:998;;;2310:16;2329:13;;;;;;;;;;;:22;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2310:43:::0;-1:-1:-1;2370:13:1;;2367:399:::1;;2402:17;2445:5;2422:19;:5:::0;2432:8;2422:9:::1;:19::i;:::-;:29;;;;:::i;:::-;2402:49;;2470:12;2484:17:::0;2505:5:::1;:10;;682:34;;;;;;;;;;;;;;;;::::0;672:45:::1;;;;;;2549:13;;;;;;;;;;;:29;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2516:76;::::0;15689:42:14;15677:55;;;2516:76:1::1;::::0;::::1;15659:74:14::0;15749:18;;;15742:34;;;15632:18;;2516:76:1::1;::::0;;;;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;2505:88;;::::1;::::0;2516:76;2505:88:::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2469:124;;;;2619:7;:57;;;;-1:-1:-1::0;2631:11:1;;:16;;:44:::1;;;2662:4;2651:24;;;;;;;;;;;;:::i;:::-;2611:94;;;::::0;::::1;::::0;;21111:2:14;2611:94:1::1;::::0;::::1;21093:21:14::0;21150:2;21130:18;;;21123:30;21189:26;21169:18;;;21162:54;21233:18;;2611:94:1::1;20909:348:14::0;2611:94:1::1;2731:20;:5:::0;2741:9;2731::::1;:20::i;:::-;2723:28;;2384:382;;;2367:399;682:34;::::0;;;;::::1;::::0;;::::1;::::0;;::::1;;::::0;;::::1;::::0;2828:43;;2817:10:::1;15677:55:14::0;;;2828:43:1::1;::::0;::::1;15659:74:14::0;15749:18;;;;15742:34;;;2828:43:1;;;;;;;;;;15632:18:14;;;;2828:43:1;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;2817:55;;-1:-1:-1;;;;2817:10:1;::::1;::::0;:55:::1;::::0;2828:43;2817:55:::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2779:93;;;;2894:8;:60;;;;-1:-1:-1::0;2907:12:1;;:17;;:46:::1;;;2939:5;2928:25;;;;;;;;;;;;:::i;:::-;2886:97;;;::::0;::::1;::::0;;21111:2:14;2886:97:1::1;::::0;::::1;21093:21:14::0;21150:2;21130:18;;;21123:30;21189:26;21169:18;;;21162:54;21233:18;;2886:97:1::1;20909:348:14::0;2886:97:1::1;2296:698;;;2225:998;;;682:34;::::0;;;;::::1;::::0;;::::1;::::0;;::::1;;::::0;;::::1;::::0;3060:43;;3049:10:::1;15677:55:14::0;;;3060:43:1::1;::::0;::::1;15659:74:14::0;15749:18;;;;15742:34;;;3060:43:1;;;;;;;;;;15632:18:14;;;;3060:43:1;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;3049:55;;-1:-1:-1;;;;3049:10:1;::::1;::::0;:55:::1;::::0;3060:43;3049:55:::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3013:91;;;;3126:7;:57;;;;-1:-1:-1::0;3138:11:1;;:16;;:44:::1;;;3169:4;3158:24;;;;;;;;;;;;:::i;:::-;3118:94;;;::::0;::::1;::::0;;21111:2:14;3118:94:1::1;::::0;::::1;21093:21:14::0;21150:2;21130:18;;;21123:30;21189:26;21169:18;;;21162:54;21233:18;;3118:94:1::1;20909:348:14::0;3118:94:1::1;2999:224;;2225:998;-1:-1:-1::0;;2253:11:11;:18;;;;2267:4;2253:18;;;-1:-1:-1;;2061:1168:1:o;1953:1414:9:-;2038:7;2953:66;2939:80;;;2931:127;;;;;;;21464:2:14;2931:127:9;;;21446:21:14;21503:2;21483:18;;;21476:30;21542:34;21522:18;;;21515:62;21613:4;21593:18;;;21586:32;21635:19;;2931:127:9;21262:398:14;2931:127:9;3076:1;:7;;3081:2;3076:7;:18;;;;3087:1;:7;;3092:2;3087:7;3076:18;3068:65;;;;;;;21867:2:14;3068:65:9;;;21849:21:14;21906:2;21886:18;;;21879:30;21945:34;21925:18;;;21918:62;22016:4;21996:18;;;21989:32;22038:19;;3068:65:9;21665:398:14;3068:65:9;3245:24;;;3228:14;3245:24;;;;;;;;;22295:25:14;;;22368:4;22356:17;;22336:18;;;22329:45;;;;22390:18;;;22383:34;;;22433:18;;;22426:34;;;3245:24:9;;22267:19:14;;3245:24:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3245:24:9;;;;;;-1:-1:-1;;3287:20:9;;;3279:57;;;;;;;22673:2:14;3279:57:9;;;22655:21:14;22712:2;22692:18;;;22685:30;22751:26;22731:18;;;22724:54;22795:18;;3279:57:9;22471:348:14;3279:57:9;3354:6;1953:1414;-1:-1:-1;;;;;1953:1414:9:o;186:126:12:-;238:6;279:1;269:5;273:1;279;269:5;:::i;:::-;265:9;;;264:16;;256:49;;;;;;;23026:2:14;256:49:12;;;23008:21:14;23065:2;23045:18;;;23038:30;23104:22;23084:18;;;23077:50;23144:18;;256:49:12;22824:344:14;314:118:13;364:9;389:17;262:6;389:10;;;:17;:::i;500:106::-;560:9;585:14;589:10;;;585:1;:14;:::i;14:258:14:-;86:1;96:113;110:6;107:1;104:13;96:113;;;186:11;;;180:18;167:11;;;160:39;132:2;125:10;96:113;;;227:6;224:1;221:13;218:48;;;262:1;253:6;248:3;244:16;237:27;218:48;;14:258;;;:::o;277:442::-;426:2;415:9;408:21;389:4;458:6;452:13;501:6;496:2;485:9;481:18;474:34;517:66;576:6;571:2;560:9;556:18;551:2;543:6;539:15;517:66;:::i;:::-;635:2;623:15;640:66;619:88;604:104;;;;710:2;600:113;;277:442;-1:-1:-1;;277:442:14:o;1251:154::-;1337:42;1330:5;1326:54;1319:5;1316:65;1306:93;;1395:1;1392;1385:12;1306:93;1251:154;:::o;1410:315::-;1478:6;1486;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1594:9;1581:23;1613:31;1638:5;1613:31;:::i;:::-;1663:5;1715:2;1700:18;;;;1687:32;;-1:-1:-1;;;1410:315:14:o;2153:247::-;2212:6;2265:2;2253:9;2244:7;2240:23;2236:32;2233:52;;;2281:1;2278;2271:12;2233:52;2320:9;2307:23;2339:31;2364:5;2339:31;:::i;2587:456::-;2664:6;2672;2680;2733:2;2721:9;2712:7;2708:23;2704:32;2701:52;;;2749:1;2746;2739:12;2701:52;2788:9;2775:23;2807:31;2832:5;2807:31;:::i;:::-;2857:5;-1:-1:-1;2914:2:14;2899:18;;2886:32;2927:33;2886:32;2927:33;:::i;:::-;2587:456;;2979:7;;-1:-1:-1;;;3033:2:14;3018:18;;;;3005:32;;2587:456::o;3926:829::-;4037:6;4045;4053;4061;4069;4077;4085;4138:3;4126:9;4117:7;4113:23;4109:33;4106:53;;;4155:1;4152;4145:12;4106:53;4194:9;4181:23;4213:31;4238:5;4213:31;:::i;:::-;4263:5;-1:-1:-1;4320:2:14;4305:18;;4292:32;4333:33;4292:32;4333:33;:::i;:::-;4385:7;-1:-1:-1;4439:2:14;4424:18;;4411:32;;-1:-1:-1;4490:2:14;4475:18;;4462:32;;-1:-1:-1;4546:3:14;4531:19;;4518:33;4595:4;4582:18;;4570:31;;4560:59;;4615:1;4612;4605:12;4560:59;3926:829;;;;-1:-1:-1;3926:829:14;;;;4638:7;4692:3;4677:19;;4664:33;;-1:-1:-1;4744:3:14;4729:19;;;4716:33;;3926:829;-1:-1:-1;;3926:829:14:o;4760:388::-;4828:6;4836;4889:2;4877:9;4868:7;4864:23;4860:32;4857:52;;;4905:1;4902;4895:12;4857:52;4944:9;4931:23;4963:31;4988:5;4963:31;:::i;:::-;5013:5;-1:-1:-1;5070:2:14;5055:18;;5042:32;5083:33;5042:32;5083:33;:::i;:::-;5135:7;5125:17;;;4760:388;;;;;:::o;5153:118::-;5239:5;5232:13;5225:21;5218:5;5215:32;5205:60;;5261:1;5258;5251:12;5276:523;5350:6;5358;5366;5419:2;5407:9;5398:7;5394:23;5390:32;5387:52;;;5435:1;5432;5425:12;5387:52;5474:9;5461:23;5493:31;5518:5;5493:31;:::i;:::-;5543:5;-1:-1:-1;5600:2:14;5585:18;;5572:32;5613:33;5572:32;5613:33;:::i;:::-;5665:7;-1:-1:-1;5724:2:14;5709:18;;5696:32;5737:30;5696:32;5737:30;:::i;:::-;5786:7;5776:17;;;5276:523;;;;;:::o;5804:1001::-;5919:6;5927;5935;5943;5951;5959;5967;6020:3;6008:9;5999:7;5995:23;5991:33;5988:53;;;6037:1;6034;6027:12;5988:53;6073:9;6060:23;6050:33;;6130:2;6119:9;6115:18;6102:32;6092:42;;6181:2;6170:9;6166:18;6153:32;6143:42;;6232:2;6221:9;6217:18;6204:32;6194:42;;6286:3;6275:9;6271:19;6258:33;6300:31;6325:5;6300:31;:::i;:::-;6350:5;-1:-1:-1;6406:3:14;6391:19;;6378:33;6430:18;6460:14;;;6457:34;;;6487:1;6484;6477:12;6457:34;6525:6;6514:9;6510:22;6500:32;;6570:7;6563:4;6559:2;6555:13;6551:27;6541:55;;6592:1;6589;6582:12;6541:55;6632:2;6619:16;6658:2;6650:6;6647:14;6644:34;;;6674:1;6671;6664:12;6644:34;6719:7;6714:2;6705:6;6701:2;6697:15;6693:24;6690:37;6687:57;;;6740:1;6737;6730:12;6687:57;6771:2;6767;6763:11;6753:21;;6793:6;6783:16;;;;;5804:1001;;;;;;;;;;:::o;7842:184::-;7894:77;7891:1;7884:88;7991:4;7988:1;7981:15;8015:4;8012:1;8005:15;8031:125;8071:4;8099:1;8096;8093:8;8090:34;;;8104:18;;:::i;:::-;-1:-1:-1;8141:9:14;;8031:125::o;8856:184::-;8926:6;8979:2;8967:9;8958:7;8954:23;8950:32;8947:52;;;8995:1;8992;8985:12;8947:52;-1:-1:-1;9018:16:14;;8856:184;-1:-1:-1;8856:184:14:o;9045:::-;9097:77;9094:1;9087:88;9194:4;9191:1;9184:15;9218:4;9215:1;9208:15;9234:120;9274:1;9300;9290:35;;9305:18;;:::i;:::-;-1:-1:-1;9339:9:14;;9234:120::o;10921:195::-;10960:3;10991:66;10984:5;10981:77;10978:103;;11061:18;;:::i;:::-;-1:-1:-1;11108:1:14;11097:13;;10921:195::o;13601:251::-;13671:6;13724:2;13712:9;13703:7;13699:23;13695:32;13692:52;;;13740:1;13737;13730:12;13692:52;13772:9;13766:16;13791:31;13816:5;13791:31;:::i;15787:245::-;15854:6;15907:2;15895:9;15886:7;15882:23;15878:32;15875:52;;;15923:1;15920;15913:12;15875:52;15955:9;15949:16;15974:28;15996:5;15974:28;:::i;16339:714::-;16592:42;16584:6;16580:55;16569:9;16562:74;16672:6;16667:2;16656:9;16652:18;16645:34;16715:6;16710:2;16699:9;16695:18;16688:34;16758:3;16753:2;16742:9;16738:18;16731:31;16799:6;16793:3;16782:9;16778:19;16771:35;16857:6;16849;16843:3;16832:9;16828:19;16815:49;16914:1;16884:22;;;16908:3;16880:32;;;16873:43;;;;16968:2;16956:15;;;16973:66;16952:88;16937:104;16933:114;;16339:714;-1:-1:-1;;;;16339:714:14:o;18546:228::-;18586:7;18712:1;18644:66;18640:74;18637:1;18634:81;18629:1;18622:9;18615:17;18611:105;18608:131;;;18719:18;;:::i;:::-;-1:-1:-1;18759:9:14;;18546:228::o;19128:128::-;19168:3;19199:1;19195:6;19192:1;19189:13;19186:39;;;19205:18;;:::i;:::-;-1:-1:-1;19241:9:14;;19128:128::o;19607:112::-;19639:1;19665;19655:35;;19670:18;;:::i;:::-;-1:-1:-1;19704:9:14;;19607:112::o;19724:221::-;19763:4;19792:10;19852;;;;19822;;19874:12;;;19871:38;;;19889:18;;:::i;:::-;19926:13;;19724:221;-1:-1:-1;;;19724:221:14:o;20630:274::-;20759:3;20797:6;20791:13;20813:53;20859:6;20854:3;20847:4;20839:6;20835:17;20813:53;:::i;:::-;20882:16;;;;;20630:274;-1:-1:-1;;20630:274:14:o;23173:311::-;23213:7;23245:58;23330:2;23327:1;23323:10;23360:2;23357:1;23353:10;23416:3;23412:2;23408:12;23403:3;23400:21;23393:3;23386:11;23379:19;23375:47;23372:73;;;23425:18;;:::i;:::-;23465:13;;23173:311;-1:-1:-1;;;;23173:311:14:o;23489:240::-;23529:1;23555:58;23640:2;23637:1;23633:10;23662:3;23652:37;;23669:18;;:::i;:::-;23707:10;;23703:20;;;;;23489:240;-1:-1:-1;;23489:240:14:o
Swarm Source
ipfs://3562bcecb2cfa78447db7f156db780c1e1cf45da8ccbe250a512f4d190eb1811
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.999995 | 5.8061 | $5.81 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.