ETH Price: $2,987.54 (+3.63%)
Gas: 2 Gwei

Token

Cigarette Token (CIG)
 

Overview

Max Total Supply

2,234,002,625.742889721708480887 CIG

Holders

418 ( -0.239%)

Market

Price

$0.00 @ 0.000000 ETH (-0.60%)

Onchain Market Cap

$808,731.29

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 CIG

Value
$0.00 ( ~0 Eth) [0.0000%]
0xe08d97e151473a848c3d9ca3f323cb720472d015
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cigarettes are tokens inspired by the 2nd most common CryptoPunks trait, the Cigarette. Like the APE token when it comes to the Bored Apes, The Cigarette token aims to be the first thing that you think of when someone says 'punk token'.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cig

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 2000000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-25
*/

// SPDX-License-Identifier: MIT
// SYS 64738
// Version 2.0
// Author: 0xTycoon
// Contributor: Alphasoup <twitter: alphasoups>
// Special Thanks: straybits1, cryptopunkart, cyounessi1, ethereumdegen, Punk7572, sherone.eth,
//                 songadaymann, Redlioneye.eth, tw1tte7, PabloPunkasso, Kaprekar_Punk, aradtski,
//                 phantom_scribbs, Cryptopapa.eth, johnhenderson, thekriskay, PerfectoidPeter,
//                 uxt_exe, 0xUnicorn, dansickles.eth, Blon Dee#9649, VRPunk1, Don Seven Slices, hogo.eth,
//                 GeoCities#5700, "HP OfficeJet Pro 9015e #2676", gigiuz#0061, danpolko.eth, mariano.eth,
//                 0xfoobar, jakerockland, Mudit__Gupta, BokkyPooBah, 0xaaby.eth, and
//                 everyone at the discord, and all the awesome people who gave feedback for this project!
// Greetings to:   Punk3395, foxthepunk, bushleaf.eth, 570KylΞ.eth, bushleaf.eth, Tokyolife, Joshuad.eth (1641),
//                 markchesler_coinwitch, decideus.eth, zachologylol, punk8886, jony_bee, nfttank, DolAtoR, punk8886
//                 DonJon.eth, kilifibaobab, joked507, cryptoed#3040, DroScott#7162, 0xAllen.eth, Tschuuuly#5158,
//                 MetasNomadic#0349, punk8653, NittyB, heygareth.eth, Aaru.eth, robertclarke.eth, Acmonides#6299,
//                 Gustavus99 (1871), Foobazzler
// Repo: github.com/0xTycoon/punksceo

pragma solidity ^0.8.11;

//import "./safemath.sol"; // don't need since v0.8
//import "./ceo.sol";
//import "hardhat/console.sol";
/*

PUNKS CEO (and "Cigarette" token)
WEB: https://punksceo.eth.limo / https://punksceo.eth.link
IPFS: See content hash record for punksceo.eth
Token Address: cigtoken.eth

         , - ~ ~ ~ - ,
     , '               ' ,
   ,                    🚬  ,
  ,                     🚬   ,
 ,                      🚬    ,
 ,                      🚬    ,
 ,         =============     ,
  ,                   ||█   ,
   ,       =============   ,
     ,                  , '
       ' - , _ _ _ ,  '


### THE RULES OF THE GAME

1. Anybody can buy the CEO title at any time using Cigarettes. (The CEO of all cryptopunks)
2. When buying the CEO title, you must nominate a punk, set the price and pre-pay the tax.
3. The CEO title can be bought from the existing CEO at any time.
4. To remain a CEO, a daily tax needs to be paid.
5. The tax is 0.1% of the price to buy the CEO title, to be charged per epoch.
6. The CEO can be removed if they fail to pay the tax. A reward of CIGs is paid to the whistleblower.
7. After Removing a CEO: A dutch auction is held, where the price will decrease 10% every half-an-epoch.
8. The price can be changed by the CEO at any time. (Once per block)
9. An epoch is 7200 blocks.
10. All the Cigarettes from the sale are burned.
11. All tax is burned
12. After buying the CEO title, the old CEO will get their unspent tax deposit refunded

### CEO perk

13. The CEO can increase or decrease the CIG farming block reward by 20% every 2nd epoch!
However, note that the issuance can never be more than 1000 CIG per block, also never under 0.0001 CIG.
14. THE CEO gets to hold a NFT in their wallet. There will only be ever 1 this NFT.
The purpose of this NFT is so that everyone can see that they are the CEO.
IMPORTANT: This NFT will be revoked once the CEO title changes.
Also, the NFT cannot be transferred by the owner, the only way to transfer is for someone else to buy the CEO title! (Think of this NFT as similar to a "title belt" in boxing.)

END

* states
* 0 = initial
* 1 = CEO reigning
* 2 = Dutch auction
* 3 = Migration

Notes:
It was decided that whoever buys the CEO title does not have to hold a punk and can nominate any punk they wish.
This is because some may hold their punks in cold storage, plus checking ownership costs additional gas.
Besides, CEOs are usually appointed by the board.

Credits:
- LP Staking based on code from SushiSwap's MasterChef.sol
- ERC20 & SafeMath based on lib from OpenZeppelin

*/

contract Cig {
    //using SafeMath for uint256; // no need since Solidity 0.8
    string public constant name = "Cigarette Token";
    string public constant symbol = "CIG";
    uint8 public constant decimals = 18;
    uint256 public totalSupply = 0;
    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    // UserInfo keeps track of user LP deposits and withdrawals
    struct UserInfo {
        uint256 deposit;    // How many LP tokens the user has deposited.
        uint256 rewardDebt; // keeps track of how much reward was paid out
    }
    mapping(address => UserInfo) public farmers;  // keeps track of UserInfo for each staking address with own pool
    mapping(address => UserInfo) public farmersMasterchef;  // keeps track of UserInfo for each staking address with masterchef pool
    mapping(address => uint256) public wBal;      // keeps tracked of wrapped old cig
    address public admin;                         // admin is used for deployment, burned after
    ILiquidityPoolERC20 public lpToken;           // lpToken is the address of LP token contract that's being staked.
    uint256 public lastRewardBlock;               // Last block number that cigarettes distribution occurs.
    uint256 public accCigPerShare;                // Accumulated cigarettes per share, times 1e12. See below.
    uint256 public masterchefDeposits;            // How much has been deposited onto the masterchef contract
    uint256 public cigPerBlock;                   // CIGs per-block rewarded and split with LPs
    bytes32 public graffiti;                      // a 32 character graffiti set when buying a CEO
    ICryptoPunk public punks;                     // a reference to the CryptoPunks contract
    event Deposit(address indexed user, uint256 amount);           // when depositing LP tokens to stake
    event Harvest(address indexed user, address to, uint256 amount);// when withdrawing LP tokens form staking
    event Withdraw(address indexed user, uint256 amount); // when withdrawing LP tokens, no rewards claimed
    event EmergencyWithdraw(address indexed user, uint256 amount); // when withdrawing LP tokens, no rewards claimed
    event ChefDeposit(address indexed user, uint256 amount);       // when depositing LP tokens to stake
    event ChefWithdraw(address indexed user, uint256 amount);      // when withdrawing LP tokens, no rewards claimed
    event RewardUp(uint256 reward, uint256 upAmount);              // when cigPerBlock is increased
    event RewardDown(uint256 reward, uint256 downAmount);          // when cigPerBlock is decreased
    event Claim(address indexed owner, uint indexed punkIndex, uint256 value); // when a punk is claimed
    mapping(uint => bool) public claims;                           // keep track of claimed punks
    modifier onlyAdmin {
        require(
            msg.sender == admin,
            "Only admin can call this"
        );
        _;
    }
    uint256 constant MIN_PRICE = 1e12;            // 0.000001 CIG
    uint256 constant CLAIM_AMOUNT = 100000 ether; // claim amount for each punk
    uint256 constant MIN_REWARD = 1e14;           // minimum block reward of 0.0001 CIG (1e14 wei)
    uint256 constant MAX_REWARD = 1000 ether;     // maximum block reward of 1000 CIG
    uint256 constant STARTING_REWARDS = 512 ether;// starting rewards at end of migration
    address public The_CEO;                       // address of CEO
    uint public CEO_punk_index;                   // which punk id the CEO is using
    uint256 public CEO_price = 50000 ether;       // price to buy the CEO title
    uint256 public CEO_state;                     // state has 3 states, described above.
    uint256 public CEO_tax_balance;               // deposit to be used to pay the CEO tax
    uint256 public taxBurnBlock;                  // The last block when the tax was burned
    uint256 public rewardsChangedBlock;           // which block was the last reward increase / decrease
    uint256 private immutable CEO_epoch_blocks;   // secs per day divided by 12 (86400 / 12), assuming 12 sec blocks
    uint256 private immutable CEO_auction_blocks; // 3600 blocks
    // NewCEO 0x09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e
    event NewCEO(address indexed user, uint indexed punk_id, uint256 new_price, bytes32 graffiti); // when a CEO is bought
    // TaxDeposit 0x2ab3b3b53aa29a0599c58f343221e29a032103d015c988fae9a5cdfa5c005d9d
    event TaxDeposit(address indexed user,  uint256 amount);                               // when tax is deposited
    // RevenueBurned 0x1b1be00a9ca19f9c14f1ca5d16e4aba7d4dd173c2263d4d8a03484e1c652c898
    event RevenueBurned(address indexed user,  uint256 amount);                            // when tax is burned
    // TaxBurned 0x9ad3c710e1cc4e96240264e5d3cd5aeaa93fd8bd6ee4b11bc9be7a5036a80585
    event TaxBurned(address indexed user,  uint256 amount);                                // when tax is burned
    // CEODefaulted b69f2aeff650d440d3e7385aedf764195cfca9509e33b69e69f8c77cab1e1af1
    event CEODefaulted(address indexed called_by,  uint256 reward);                        // when CEO defaulted on tax
    // CEOPriceChange 0x10c342a321267613a25f77d4273d7f2688bef174a7214bc3dde44b31c5064ff6
    event CEOPriceChange(uint256 price);                                                   // when CEO changed price
    modifier onlyCEO {
        require(
            msg.sender == The_CEO,
            "only CEO can call this"
        );
        _;
    }
    IRouterV2 private immutable V2ROUTER;    // address of router used to get the price quote
    ICEOERC721 private immutable The_NFT;    // reference to the CEO NFT token
    address private immutable MASTERCHEF_V2; // address pointing to SushiSwap's MasterChefv2 contract
    IOldCigtoken private immutable OC;       // Old Contract
    /**
    * @dev constructor
    * @param _cigPerBlock Number of CIG tokens rewarded per block
    * @param _punks address of the cryptopunks contract
    * @param _CEO_epoch_blocks how many blocks between each epochs
    * @param _CEO_auction_blocks how many blocks between each auction discount
    * @param _CEO_price starting price to become CEO (in CIG)
    * @param _graffiti bytes32 initial graffiti message
    * @param _NFT address pointing to the NFT contract
    * @param _V2ROUTER address pointing to the SushiSwap router
    * @param _OC address pointing to the original Cig Token contract
    * @param _MASTERCHEF_V2 address for the sushi masterchef v2 contract
    */
    constructor(
        uint256 _cigPerBlock,
        address _punks,
        uint _CEO_epoch_blocks,
        uint _CEO_auction_blocks,
        uint256 _CEO_price,
        bytes32 _graffiti,
        address _NFT,
        address _V2ROUTER,
        address _OC,
        uint256 _migration_epochs,
        address _MASTERCHEF_V2
    ) {
        cigPerBlock        = _cigPerBlock;
        admin              = msg.sender;             // the admin key will be burned after deployment
        punks              = ICryptoPunk(_punks);
        CEO_epoch_blocks   = _CEO_epoch_blocks;
        CEO_auction_blocks = _CEO_auction_blocks;
        CEO_price          = _CEO_price;
        graffiti           = _graffiti;
        The_NFT            = ICEOERC721(_NFT);
        V2ROUTER           = IRouterV2(_V2ROUTER);
        OC                 = IOldCigtoken(_OC);
        lastRewardBlock =
            block.number + (CEO_epoch_blocks * _migration_epochs); // set the migration window end
        MASTERCHEF_V2 = _MASTERCHEF_V2;
        CEO_state = 3;                               // begin in migration state
    }

    /**
    * @dev buyCEO allows anybody to be the CEO
    * @param _max_spend the total CIG that can be spent
    * @param _new_price the new price for the punk (in CIG)
    * @param _tax_amount how much to pay in advance (in CIG)
    * @param _punk_index the id of the punk 0-9999
    * @param _graffiti a little message / ad from the buyer
    */
    function buyCEO(
        uint256 _max_spend,
        uint256 _new_price,
        uint256 _tax_amount,
        uint256 _punk_index,
        bytes32 _graffiti
    ) external  {
        require (CEO_state != 3); // disabled in in migration state
        if (CEO_state == 1 && (taxBurnBlock != block.number)) {
            _burnTax();                                                    // _burnTax can change CEO_state to 2
        }
        if (CEO_state == 2) {
            // Auction state. The price goes down 10% every `CEO_auction_blocks` blocks
            CEO_price = _calcDiscount();
        }
        require (CEO_price + _tax_amount <= _max_spend, "overpaid");       // prevent CEO over-payment
        require (_new_price >= MIN_PRICE, "price 2 smol");                 // price cannot be under 0.000001 CIG
        require (_punk_index <= 9999, "invalid punk");                     // validate the punk index
        require (_tax_amount >= _new_price / 1000, "insufficient tax" );   // at least %0.1 fee paid for 1 epoch
        transfer(address(this), CEO_price);                                // pay for the CEO title
        _burn(address(this), CEO_price);                                   // burn the revenue
        emit RevenueBurned(msg.sender, CEO_price);
        _returnDeposit(The_CEO, CEO_tax_balance);                          // return deposited tax back to old CEO
        transfer(address(this), _tax_amount);                              // deposit tax (reverts if not enough)
        CEO_tax_balance = _tax_amount;                                     // store the tax deposit amount
        _transferNFT(The_CEO, msg.sender);                                 // yank the NFT to the new CEO
        CEO_price = _new_price;                                            // set the new price
        CEO_punk_index = _punk_index;                                      // store the punk id
        The_CEO = msg.sender;                                              // store the CEO's address
        taxBurnBlock = block.number;                                       // store the block number
        // (tax may not have been burned if the
        // previous state was 0)
        CEO_state = 1;
        graffiti = _graffiti;
        emit TaxDeposit(msg.sender, _tax_amount);
        emit NewCEO(msg.sender, _punk_index, _new_price, _graffiti);
    }

    /**
    * @dev _returnDeposit returns the tax deposit back to the CEO
    * @param _to address The address which you want to transfer to
    * remember to update CEO_tax_balance after calling this
    */
    function _returnDeposit(
        address _to,
        uint256 _amount
    )
    internal
    {
        if (_amount == 0) {
            return;
        }
        balanceOf[address(this)] = balanceOf[address(this)] - _amount;
        balanceOf[_to] = balanceOf[_to] + _amount;
        emit Transfer(address(this), _to, _amount);
        //CEO_tax_balance = 0; // can be omitted since value gets overwritten by caller
    }

    /**
    * @dev transfer the NFT to a new wallet
    */
    function _transferNFT(address _oldCEO, address _newCEO) internal {
        The_NFT.transferFrom(_oldCEO, _newCEO, 0);
    }

    /**
    * @dev depositTax pre-pays tax for the existing CEO.
    * It may also burn any tax debt the CEO may have.
    * @param _amount amount of tax to pre-pay
    */
    function depositTax(uint256 _amount) external onlyCEO {
        require (CEO_state == 1, "no CEO");
        if (_amount > 0) {
            transfer(address(this), _amount);                   // place the tax on deposit
            CEO_tax_balance = CEO_tax_balance + _amount;        // record the balance
            emit TaxDeposit(msg.sender, _amount);
        }
        if (taxBurnBlock != block.number) {
            _burnTax();                                         // settle any tax debt
            taxBurnBlock = block.number;
        }
    }

    /**
    * @dev burnTax is called to burn tax.
    * It removes the CEO if tax is unpaid.
    * 1. deduct tax, update last update
    * 2. if not enough tax, remove & begin auction
    * 3. reward the caller by minting a reward from the amount indebted
    * A Dutch auction begins where the price decreases 10% every hour.
    */

    function burnTax() external  {
        if (taxBurnBlock == block.number) return;
        if (CEO_state == 1) {
            _burnTax();
            taxBurnBlock = block.number;
        }
    }

    /**
    * @dev _burnTax burns any tax debt. Boots the CEO if defaulted, paying a reward to the caller
    */
    function _burnTax() internal {
        // calculate tax per block (tpb)
        uint256 tpb = CEO_price / 1000 / CEO_epoch_blocks;       // 0.1% per epoch
        uint256 debt = (block.number - taxBurnBlock) * tpb;
        if (CEO_tax_balance !=0 && CEO_tax_balance >= debt) {    // Does CEO have enough deposit to pay debt?
            CEO_tax_balance = CEO_tax_balance - debt;            // deduct tax
            _burn(address(this), debt);                          // burn the tax
            emit TaxBurned(msg.sender, debt);
        } else {
            // CEO defaulted
            uint256 default_amount = debt - CEO_tax_balance;     // calculate how much defaulted
            _burn(address(this), CEO_tax_balance);               // burn the tax
            emit TaxBurned(msg.sender, CEO_tax_balance);
            CEO_state = 2;                                       // initiate a Dutch auction.
            CEO_tax_balance = 0;
            _transferNFT(The_CEO, address(this));                // This contract holds the NFT temporarily
            The_CEO = address(this);                             // This contract is the "interim CEO"
            _mint(msg.sender, default_amount);                   // reward the caller for reporting tax default
            emit CEODefaulted(msg.sender, default_amount);
        }
    }

    /**
     * @dev setPrice changes the price for the CEO title.
     * @param _price the price to be paid. The new price most be larger tan MIN_PRICE and not default on debt
     */
    function setPrice(uint256 _price) external onlyCEO  {
        require(CEO_state == 1, "No CEO in charge");
        require (_price >= MIN_PRICE, "price 2 smol");
        require (CEO_tax_balance >= _price / 1000, "price would default"); // need at least 0.1% for tax
        if (block.number != taxBurnBlock) {
            _burnTax();
            taxBurnBlock = block.number;
        }
        // The state is 1 if the CEO hasn't defaulted on tax
        if (CEO_state == 1) {
            CEO_price = _price;                                   // set the new price
            emit CEOPriceChange(_price);
        }
    }

    /**
    * @dev rewardUp allows the CEO to increase the block rewards by %20
    * Can only be called by the CEO every 2 epochs
    * @return _amount increased by
    */
    function rewardUp() external onlyCEO returns (uint256)  {
        require(CEO_state == 1, "No CEO in charge");
        require(block.number > rewardsChangedBlock + (CEO_epoch_blocks*2), "wait more blocks");
        require (cigPerBlock < MAX_REWARD, "reward already max");
        rewardsChangedBlock = block.number;
        uint256 _amount = cigPerBlock / 5;            // %20
        uint256 _new_reward = cigPerBlock + _amount;
        if (_new_reward > MAX_REWARD) {
            _amount = MAX_REWARD - cigPerBlock;
            _new_reward = MAX_REWARD;                 // cap
        }
        cigPerBlock = _new_reward;
        emit RewardUp(_new_reward, _amount);
        return _amount;
    }

    /**
    * @dev rewardDown decreases the block rewards by 20%
    * Can only be called by the CEO every 2 epochs
    */
    function rewardDown() external onlyCEO returns (uint256) {
        require(CEO_state == 1, "No CEO in charge");
        require(block.number > rewardsChangedBlock + (CEO_epoch_blocks*2), "wait more blocks");
        require(cigPerBlock > MIN_REWARD, "reward already low");
        rewardsChangedBlock = block.number;
        uint256 _amount = cigPerBlock / 5;            // %20
        uint256 _new_reward = cigPerBlock - _amount;
        if (_new_reward < MIN_REWARD) {
            _amount = cigPerBlock - MIN_REWARD;
            _new_reward = MIN_REWARD;                 // limit
        }
        cigPerBlock = _new_reward;
        emit RewardDown(_new_reward, _amount);
        return _amount;
    }

    /**
    * @dev _calcDiscount calculates the discount for the CEO title based on how many blocks passed
    */
    function _calcDiscount() internal view returns (uint256) {
        unchecked {
            uint256 d = (CEO_price / 10)           // 10% discount
            // multiply by the number of discounts accrued
            * ((block.number - taxBurnBlock) / CEO_auction_blocks);
            if (d > CEO_price) {
                // overflow assumed, reset to MIN_PRICE
                return MIN_PRICE;
            }
            uint256 price = CEO_price - d;
            if (price < MIN_PRICE) {
                price = MIN_PRICE;
            }
            return price;
        }
    }

    /*
    * 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬 Information used by the UI 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬
    */

    /**
    * @dev getStats helps to fetch some stats for the GUI in a single web3 call
    * @param _user the address to return the report for
    * @return uint256[27] the stats
    * @return address of the current CEO
    * @return bytes32 Current graffiti
    */
    function getStats(address _user) external view returns(uint256[] memory, address, bytes32, uint112[] memory) {
        uint[] memory ret = new uint[](27);
        uint112[] memory reserves = new uint112[](2);
        uint256 tpb = (CEO_price / 1000) / (CEO_epoch_blocks); // 0.1% per epoch
        uint256 debt = (block.number - taxBurnBlock) * tpb;
        uint256 price = CEO_price;
        UserInfo memory info = farmers[_user];
        if (CEO_state == 2) {
            price = _calcDiscount();
        }
        ret[0] = CEO_state;
        ret[1] = CEO_tax_balance;
        ret[2] = taxBurnBlock;                     // the block number last tax burn
        ret[3] = rewardsChangedBlock;              // the block of the last staking rewards change
        ret[4] = price;                            // price of the CEO title
        ret[5] = CEO_punk_index;                   // punk ID of CEO
        ret[6] = cigPerBlock;                      // staking reward per block
        ret[7] = totalSupply;                      // total supply of CIG
        if (address(lpToken) != address(0)) {
            ret[8] = lpToken.balanceOf(address(this)); // Total LP staking
            ret[16] = lpToken.balanceOf(_user);        // not staked by user
            ret[17] = pendingCig(_user);               // pending harvest
            (reserves[0], reserves[1], ) = lpToken.getReserves();        // uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast
            ret[18] = V2ROUTER.getAmountOut(1 ether, uint(reserves[0]), uint(reserves[1])); // CIG price in ETH
            if (isContract(address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2))) { // are we on mainnet?
                ILiquidityPoolERC20 ethusd = ILiquidityPoolERC20(address(0xC3D03e4F041Fd4cD388c549Ee2A29a9E5075882f));  // sushi DAI-WETH pool
                uint112 r0;
                uint112 r1;
                (r0, r1, ) = ethusd.getReserves();
                // get the price of ETH in USD
                ret[19] =  V2ROUTER.getAmountOut(1 ether, uint(r0), uint(r1));      // ETH price in USD
            }
            ret[22] = lpToken.totalSupply();       // total supply
        }
        ret[9] = block.number;                       // current block number
        ret[10] = tpb;                               // "tax per block" (tpb)
        ret[11] = debt;                              // tax debt accrued
        ret[12] = lastRewardBlock;                   // the block of the last staking rewards payout update
        ret[13] = info.deposit;                      // amount of LP tokens staked by user
        ret[14] = info.rewardDebt;                   // amount of rewards paid out
        ret[15] = balanceOf[_user];                  // amount of CIG held by user
        ret[20] = accCigPerShare;                    // Accumulated cigarettes per share
        ret[21] = balanceOf[address(punks)];         // amount of CIG to be claimed
        ret[23] = wBal[_user];                       // wrapped cig balance
        ret[24] = OC.balanceOf(_user);               // balance of old cig in old isContract
        ret[25] = OC.allowance(_user, address(this));// is old contract approved
        (ret[26], ) = OC.userInfo(_user);            // old contract stake bal
        return (ret, The_CEO, graffiti, reserves);
    }

    /**
     * @dev Returns true if `account` is a contract.
     *
     * credits https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol
     */
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /*
    * 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬 Token distribution and farming stuff 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬
    */

    /**
    * @dev isClaimed checks to see if a punk was claimed
    * @param _punkIndex the punk number
    */
    function isClaimed(uint256 _punkIndex) external view returns (bool) {
        if (claims[_punkIndex]) {
            return true;
        }
        if (OC.claims(_punkIndex)) {
            return true;
        }
        return false;
    }

    /**
    * Claim claims the initial CIG airdrop using a punk
    * @param _punkIndex the index of the punk, number between 0-9999
    */
    function claim(uint256 _punkIndex) external returns(bool) {
        require (CEO_state != 3, "invalid state");                            // disabled in migration state
        require (_punkIndex <= 9999, "invalid punk");
        require(claims[_punkIndex] == false, "punk already claimed");
        require(OC.claims(_punkIndex) == false, "punk already claimed");      // claimed in old contract
        require(msg.sender == punks.punkIndexToAddress(_punkIndex), "punk 404");
        claims[_punkIndex] = true;
        balanceOf[address(punks)] = balanceOf[address(punks)] - CLAIM_AMOUNT; // deduct from the punks contract
        balanceOf[msg.sender] = balanceOf[msg.sender] + CLAIM_AMOUNT;         // deposit to the caller
        emit Transfer(address(punks), msg.sender, CLAIM_AMOUNT);
        emit Claim(msg.sender, _punkIndex, CLAIM_AMOUNT);
        return true;
    }

    /**
    * @dev Gets the LP supply, with masterchef deposits taken into account.
    */
    function stakedlpSupply() public view returns(uint256)
    {
        return lpToken.balanceOf(address(this)) + masterchefDeposits;
    }
    /**
    * @dev update updates the accCigPerShare value and mints new CIG rewards to be distributed to LP stakers
    * Credits go to MasterChef.sol
    * Modified the original by removing poolInfo as there is only a single pool
    * Removed totalAllocPoint and pool.allocPoint
    * pool.lastRewardBlock moved to lastRewardBlock
    * There is no need for getMultiplier (rewards are adjusted by the CEO)
    *
    */
    function update() public {
        if (block.number <= lastRewardBlock) {
            return;
        }
        uint256 supply = stakedlpSupply();
        if (supply == 0) {
            lastRewardBlock = block.number;
            return;
        }
        // mint some new cigarette rewards to be distributed
        uint256 cigReward = (block.number - lastRewardBlock) * cigPerBlock;
        _mint(address(this), cigReward);
        accCigPerShare = accCigPerShare + (
        cigReward * 1e12 / supply
        );
        lastRewardBlock = block.number;
    }

    /**
    * @dev pendingCig displays the amount of cig to be claimed
    * @param _user the address to report
    */
    function pendingCig(address _user) view public returns (uint256) {
        uint256 _acps = accCigPerShare;
        // accumulated cig per share
        UserInfo storage user = farmers[_user];
        uint256 supply = stakedlpSupply();
        if (block.number > lastRewardBlock && supply != 0) {
            uint256 cigReward = (block.number - lastRewardBlock) * cigPerBlock;
            _acps = _acps + (
            cigReward * 1e12 / supply
            );
        }
        return (user.deposit * _acps / 1e12) - user.rewardDebt;
    }


    /**
    * @dev userInfo is added for compatibility with the Snapshot.org interface.
    */
    function userInfo(uint256, address _user) view external returns (uint256, uint256 depositAmount) {
        return (0,farmers[_user].deposit + farmersMasterchef[_user].deposit);
    }
    /**
    * @dev deposit deposits LP tokens to be staked.
    * @param _amount the amount of LP tokens to deposit. Assumes this contract has been approved for the _amount.
    */
    function deposit(uint256 _amount) external {
        require(_amount != 0, "You cannot deposit only 0 tokens"); // Check how many bytes
        UserInfo storage user = farmers[msg.sender];

        update();
        _deposit(user, _amount);
        require(lpToken.transferFrom(
                address(msg.sender),
                address(this),
                _amount
            ));
        emit Deposit(msg.sender, _amount);
    }
    
    function _deposit(UserInfo storage _user, uint256 _amount) internal {
        _user.deposit += _amount;
        _user.rewardDebt += _amount * accCigPerShare / 1e12;
    }
    /**
    * @dev withdraw takes out the LP tokens
    * @param _amount the amount to withdraw
    */
    function withdraw(uint256 _amount) external {
        UserInfo storage user = farmers[msg.sender];
        update();
        /* harvest beforehand, so _withdraw can safely decrement their reward count */
        _harvest(user, msg.sender);
        _withdraw(user, _amount);
        /* Interact */
        require(lpToken.transferFrom(
            address(this),
            address(msg.sender),
            _amount
        ));
        emit Withdraw(msg.sender, _amount);
    }
    
    /**
    * @dev Internal withdraw, updates internal accounting after withdrawing LP
    * @param _amount to subtract
    */
    function _withdraw(UserInfo storage _user, uint256 _amount) internal {
        require(_user.deposit >= _amount, "Balance is too low");
        _user.deposit -= _amount;
        uint256 _rewardAmount = _amount * accCigPerShare / 1e12;
        _user.rewardDebt -= _rewardAmount;
    }

    /**
    * @dev harvest redeems pending rewards & updates state
    */
    function harvest() external {
        UserInfo storage user = farmers[msg.sender];
        update();
        _harvest(user, msg.sender);
    }

    /**
    * @dev Internal harvest
    * @param _to the amount to harvest
    */
    function _harvest(UserInfo storage _user, address _to) internal {
        uint256 potentialValue = (_user.deposit * accCigPerShare / 1e12);
        uint256 delta = potentialValue - _user.rewardDebt;
        safeSendPayout(_to, delta);
        // Recalculate their reward debt now that we've given them their reward
        _user.rewardDebt = _user.deposit * accCigPerShare / 1e12;
        emit Harvest(msg.sender, _to, delta);
    }

    /**
    * @dev safeSendPayout, just in case if rounding error causes pool to not have enough CIGs.
    * @param _to recipient address
    * @param _amount the value to send
    */
    function safeSendPayout(address _to, uint256 _amount) internal {
        uint256 cigBal = balanceOf[address(this)];
        require(cigBal >= _amount, "insert more tobacco leaves...");
        unchecked {
            balanceOf[address(this)] = balanceOf[address(this)] - _amount;
            balanceOf[_to] = balanceOf[_to] + _amount;
        }
        emit Transfer(address(this), _to, _amount);
    }

    /**
    * @dev emergencyWithdraw does a withdraw without caring about rewards. EMERGENCY ONLY.
    */
    function emergencyWithdraw() external {
        UserInfo storage user = farmers[msg.sender];
        uint256 amount = user.deposit;
        user.deposit = 0;
        user.rewardDebt = 0;
        // Interact
        require(lpToken.transfer(
                address(msg.sender),
                amount
            ));
        emit EmergencyWithdraw(msg.sender, amount);
    }

    /*
    * 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬 Migration 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬
    */

    /**
    * @dev renounceOwnership burns the admin key, so this contract is unruggable
    */
    function renounceOwnership() external onlyAdmin {
        admin = address(0);
    }

    /**
    * @dev setStartingBlock sets the starting block for LP staking rewards
    * Admin only, used only for initial configuration.
    * @param _startBlock the block to start rewards for
    */
    function setStartingBlock(uint256 _startBlock) external onlyAdmin {
        lastRewardBlock = _startBlock;
    }

    /**
    * @dev setPool address to an LP pool. Only Admin. (used only in testing/deployment)
    */
    function setPool(ILiquidityPoolERC20 _addr) external onlyAdmin {
        require(address(lpToken) == address(0), "pool already set");
        lpToken = _addr;
    }

    /**
    * @dev setReward sets the reward. Admin only (used only in testing/deployment)
    */
    function setReward(uint256 _value) public onlyAdmin {
        cigPerBlock = _value;
    }

    /**
    * @dev migrationComplete completes the migration
    */
    function migrationComplete() external  {
        require (CEO_state == 3);
        require (OC.CEO_state() == 1);
        require (block.number > lastRewardBlock, "cannot end migration yet");
        CEO_state = 1;                         // CEO is in charge state
        OC.burnTax();                          // before copy, burn the old CEO's tax
        /* copy the state over to this contract */
        _mint(address(punks), OC.balanceOf(address(punks))); // CIG to be set aside for the remaining airdrop
        uint256 taxDeposit = OC.CEO_tax_balance();
        The_CEO = OC.The_CEO();                // copy the CEO
        if (taxDeposit > 0) {                  // copy the CEO's outstanding tax
            _mint(address(this), taxDeposit);  // mint tax that CEO had locked in previous contract (cannot be migrated)
            CEO_tax_balance =  taxDeposit;
        }
        taxBurnBlock = OC.taxBurnBlock();
        CEO_price = OC.CEO_price();
        graffiti = OC.graffiti();
        CEO_punk_index = OC.CEO_punk_index();
        cigPerBlock = STARTING_REWARDS;        // set special rewards
        lastRewardBlock = OC.lastRewardBlock();// start rewards
        rewardsChangedBlock = OC.rewardsChangedBlock();
        /* Historical records */
        _transferNFT(
            address(0),
            address(0x1e32a859d69dde58d03820F8f138C99B688D132F)
        );
        emit NewCEO(
            address(0x1e32a859d69dde58d03820F8f138C99B688D132F),
            0x00000000000000000000000000000000000000000000000000000000000015c9,
            0x000000000000000000000000000000000000000000007618fa42aac317900000,
            0x41732043454f2049206465636c617265204465632032322050756e6b20446179
        );
        _transferNFT(
            address(0x1e32a859d69dde58d03820F8f138C99B688D132F),
            address(0x72014B4EEdee216E47786C4Ab27Cc6344589950d)
        );
        emit NewCEO(
            address(0x72014B4EEdee216E47786C4Ab27Cc6344589950d),
            0x0000000000000000000000000000000000000000000000000000000000000343,
            0x00000000000000000000000000000000000000000001a784379d99db42000000,
            0x40617a756d615f626974636f696e000000000000000000000000000000000000
        );
        _transferNFT(
            address(0x72014B4EEdee216E47786C4Ab27Cc6344589950d),
            address(0x4947DA4bEF9D79bc84bD584E6c12BfFa32D1bEc8)
        );
        emit NewCEO(
            address(0x4947DA4bEF9D79bc84bD584E6c12BfFa32D1bEc8),
            0x00000000000000000000000000000000000000000000000000000000000007fa,
            0x00000000000000000000000000000000000000000014adf4b7320334b9000000,
            0x46697273742070756e6b7320746f6b656e000000000000000000000000000000
        );
    }

    /**
    * @dev wrap wraps old CIG and issues new CIG 1:1
    * @param _value how much old cig to wrap
    */
    function wrap(uint256 _value) external {
        require (CEO_state == 3);
        OC.transferFrom(msg.sender, address(this), _value); // transfer old cig to here
        _mint(msg.sender, _value);                          // give user new cig
        wBal[msg.sender] = wBal[msg.sender] + _value;       // record increase of wrapped old cig for caller
    }

    /**
    * @dev unwrap unwraps old CIG and burns new CIG 1:1
    */
    function unwrap(uint256 _value) external {
        require (CEO_state == 3);
        _burn(msg.sender, _value);                          // burn new cig
        OC.transfer(msg.sender, _value);                    // give back old cig
        wBal[msg.sender] = wBal[msg.sender] - _value;       // record decrease of wrapped old cig for caller
    }
    /*
    * 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬 ERC20 Token stuff 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬
    */

    /**
    * @dev burn some tokens
    * @param _from The address to burn from
    * @param _amount The amount to burn
    */
    function _burn(address _from, uint256 _amount) internal {
        balanceOf[_from] = balanceOf[_from] - _amount;
        totalSupply = totalSupply - _amount;
        emit Transfer(_from, address(0), _amount);
    }

    /**
    * @dev mint new tokens
   * @param _to The address to mint to.
   * @param _amount The amount to be minted.
   */
    function _mint(address _to, uint256 _amount) internal {
        require(_to != address(0), "ERC20: mint to the zero address");
        unchecked {
            totalSupply = totalSupply + _amount;
            balanceOf[_to] = balanceOf[_to] + _amount;
        }
        emit Transfer(address(0), _to, _amount);
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        //require(_value <= balanceOf[msg.sender], "value exceeds balance"); // SafeMath already checks this
        balanceOf[msg.sender] = balanceOf[msg.sender] - _value;
        balanceOf[_to] = balanceOf[_to] + _value;
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Transfer tokens from one address to another
    * @param _from address The address which you want to send tokens from
    * @param _to address The address which you want to transfer to
    * @param _value uint256 the amount of tokens to be transferred
    */
    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    )
    public
    returns (bool)
    {
        uint256 a = allowance[_from][msg.sender]; // read allowance
        //require(_value <= balanceOf[_from], "value exceeds balance"); // SafeMath already checks this
        if (a != type(uint256).max) {             // not infinite approval
            require(_value <= a, "not approved");
            unchecked {
                allowance[_from][msg.sender] = a - _value;
            }
        }
        balanceOf[_from] = balanceOf[_from] - _value;
        balanceOf[_to] = balanceOf[_to] + _value;
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
    * @dev Approve tokens of mount _value to be spent by _spender
    * @param _spender address The spender
    * @param _value the stipend to spend
    */
    function approve(address _spender, uint256 _value) external returns (bool) {
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /*
    * 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬 Masterchef v2 integration 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬
    */

    /**
    * @dev onSushiReward implements the SushiSwap masterchefV2 callback, guarded by the onlyMCV2 modifier
    * @param _user address called on behalf of
    * @param _to address who send rewards to
    * @param _sushiAmount uint256, if not 0 then the rewards will be harvested
    * @param _newLpAmount uint256, amount of LP tokens staked at Sushi
    */
    function onSushiReward (
        uint256 /* pid */,
        address _user,
        address _to,
        uint256 _sushiAmount,
        uint256 _newLpAmount)  external onlyMCV2 {
        UserInfo storage user = farmersMasterchef[_user];
        update();
        // Harvest sushi when there is sushiAmount passed through as this only comes in the event of the masterchef contract harvesting
        if(_sushiAmount != 0) _harvest(user, _to); // send outstanding CIG to _to
        uint256 delta;
        // Withdraw stake
        if(user.deposit >= _newLpAmount) { // Delta is withdraw
            delta = user.deposit - _newLpAmount;
            masterchefDeposits -= delta;   // subtract from staked total
            _withdraw(user, delta);
            emit ChefWithdraw(_user, delta);
        }
        // Deposit stake
        else if(user.deposit != _newLpAmount) { // Delta is deposit
            delta = _newLpAmount - user.deposit;
            masterchefDeposits += delta;        // add to staked total
            _deposit(user, delta);
            emit ChefDeposit(_user, delta);
        }
    }

    // onlyMCV2 ensures only the MasterChefV2 contract can call this
    modifier onlyMCV2 {
        require(
            msg.sender == MASTERCHEF_V2,
            "Only MCV2"
        );
        _;
    }
}

/*
* 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬 interfaces 🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬🚬
*/

/**
* @dev IRouterV2 is the sushi router 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F
*/
interface IRouterV2 {
    function getAmountOut(uint256 amountIn, uint256 reserveIn, uint256 reserveOut) external pure returns(uint256 amountOut);
}

/**
* @dev ICryptoPunk used to query the cryptopunks contract to verify the owner
*/
interface ICryptoPunk {
    //function balanceOf(address account) external view returns (uint256);
    function punkIndexToAddress(uint256 punkIndex) external returns (address);
    //function punksOfferedForSale(uint256 punkIndex) external returns (bool, uint256, address, uint256, address);
    //function buyPunk(uint punkIndex) external payable;
    //function transferPunk(address to, uint punkIndex) external;
}

interface ICEOERC721 {
    function transferFrom(address _from, address _to, uint256 _tokenId) external payable;
}

/*
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * 0xTycoon was here
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
* @dev from UniswapV2Pair.sol
*/
interface ILiquidityPoolERC20 is IERC20 {
    function getReserves() external view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast);
    function totalSupply() external view returns(uint);
}

interface IOldCigtoken is IERC20 {
    function claims(uint256) external view returns (bool);
    function graffiti() external view returns (bytes32);
    function cigPerBlock() external view returns (uint256);
    function The_CEO() external view returns (address);
    function CEO_punk_index() external view returns (uint);
    function CEO_price() external view returns (uint256);
    function CEO_state() external view returns (uint256);
    function CEO_tax_balance() external view returns (uint256);
    function taxBurnBlock() external view returns (uint256);
    function lastRewardBlock() external view returns (uint256);
    function rewardsChangedBlock() external view returns (uint256);
    function userInfo(address) external view returns (uint256, uint256);
    function burnTax() external;
}

// 🚬

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_cigPerBlock","type":"uint256"},{"internalType":"address","name":"_punks","type":"address"},{"internalType":"uint256","name":"_CEO_epoch_blocks","type":"uint256"},{"internalType":"uint256","name":"_CEO_auction_blocks","type":"uint256"},{"internalType":"uint256","name":"_CEO_price","type":"uint256"},{"internalType":"bytes32","name":"_graffiti","type":"bytes32"},{"internalType":"address","name":"_NFT","type":"address"},{"internalType":"address","name":"_V2ROUTER","type":"address"},{"internalType":"address","name":"_OC","type":"address"},{"internalType":"uint256","name":"_migration_epochs","type":"uint256"},{"internalType":"address","name":"_MASTERCHEF_V2","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"called_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"CEODefaulted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"CEOPriceChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ChefDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ChefWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"punkIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Harvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"punk_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"new_price","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"graffiti","type":"bytes32"}],"name":"NewCEO","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RevenueBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"downAmount","type":"uint256"}],"name":"RewardDown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"upAmount","type":"uint256"}],"name":"RewardUp","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TaxBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TaxDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"CEO_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CEO_punk_index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CEO_state","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CEO_tax_balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"The_CEO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accCigPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"burnTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_spend","type":"uint256"},{"internalType":"uint256","name":"_new_price","type":"uint256"},{"internalType":"uint256","name":"_tax_amount","type":"uint256"},{"internalType":"uint256","name":"_punk_index","type":"uint256"},{"internalType":"bytes32","name":"_graffiti","type":"bytes32"}],"name":"buyCEO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cigPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_punkIndex","type":"uint256"}],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claims","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"farmers","outputs":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"farmersMasterchef","outputs":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getStats","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"uint112[]","name":"","type":"uint112[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"graffiti","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_punkIndex","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken","outputs":[{"internalType":"contract ILiquidityPoolERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterchefDeposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migrationComplete","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"_user","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_sushiAmount","type":"uint256"},{"internalType":"uint256","name":"_newLpAmount","type":"uint256"}],"name":"onSushiReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingCig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"punks","outputs":[{"internalType":"contract ICryptoPunk","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardDown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardUp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsChangedBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ILiquidityPoolERC20","name":"_addr","type":"address"}],"name":"setPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"name":"setStartingBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakedlpSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBurnBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_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"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"depositAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wBal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61014060405260008055690a968163f0a57b4000006011553480156200002457600080fd5b506040516200504c3803806200504c8339810160408190526200004791620000f8565b600b8b9055600680546001600160a01b03199081163317909155600d80546001600160a01b038d81169190931617905560808a905260a08990526011889055600c87905585811660e05284811660c052831661012052620000a9828a620001bb565b620000b59043620001dd565b6008556001600160a01b0316610100525050600360125550620001f89650505050505050565b80516001600160a01b0381168114620000f357600080fd5b919050565b60008060008060008060008060008060006101608c8e0312156200011b57600080fd5b8b519a506200012d60208d01620000db565b995060408c0151985060608c0151975060808c0151965060a08c015195506200015960c08d01620000db565b94506200016960e08d01620000db565b93506200017a6101008d01620000db565b92506101208c01519150620001936101408d01620000db565b90509295989b509295989b9093969950565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620001d857620001d8620001a5565b500290565b60008219821115620001f357620001f3620001a5565b500190565b60805160a05160c05160e0516101005161012051614d71620002db60003960008181610afc01528181610c0a01528181610cd701528181610d4d01528181610dde01528181610ec801528181610f5d01528181610ff2015281816110870152818161112c015281816111c1015281816116df01528181612a2b015281816137d9015281816138ad0152818161397b01528181613b790152613c74015260006124b301526000614326015260008181613224015261344b0152600061450f01526000818161219601528181612dab01528181613e97015261403a0152614d716000f3fe608060405234801561001057600080fd5b50600436106103575760003560e01c80635fcbd285116101c8578063a9059cbb11610104578063de0e9a3e116100a2578063ec17b20e1161007c578063ec17b20e146107a3578063f1dda252146107b6578063f56a499f146107be578063f851a440146107c757600080fd5b8063de0e9a3e1461075d578063dfe0a88914610770578063ea598cb01461079057600080fd5b8063c23f85d6116100de578063c23f85d6146106fe578063d98d052a14610721578063db2e21bc1461072a578063dd62ed3e1461073257600080fd5b8063a9059cbb146106cf578063a9f8d181146106e2578063b6b55f25146106eb57600080fd5b806391b7f5ed1161017157806395d89b411161014b57806395d89b41146106555780639e34070f14610691578063a2e62045146106a4578063a888c2cd146106ac57600080fd5b806391b7f5ed1461061c57806393f1a40b1461062f578063941a9acd1461064257600080fd5b806371fab900116101a257806371fab900146105e0578063845afcc1146105e95780638bf637421461060957600080fd5b80635fcbd2851461059857806370a08231146105b8578063715018a6146105d857600080fd5b80632e1a7d4d116102975780633fd2c585116102405780634437152a1161021a5780634437152a1461056d5780634641257d14610580578063557aa67e146105885780635e266fbe1461059057600080fd5b80633fd2c5851461052a578063401b216814610533578063430c38801461055a57600080fd5b80633a5fca36116102715780633a5fca36146105055780633e321c671461050e5780633f6c518d1461051757600080fd5b80632e1a7d4d146104c5578063313ce567146104d8578063379607f5146104f257600080fd5b80631d4eaead1161030457806323b872dd116102de57806323b872dd1461048e57806328518094146104a1578063293be456146104aa5780632bff884f146104bd57600080fd5b80631d4eaead146104725780631fdcc12e1461047c578063219505051461048557600080fd5b806318160ddd1161033557806318160ddd146103e857806319ad317d146103f15780631ac47beb1461043657600080fd5b806306fdde031461035c578063095ea7b3146103ae5780630d778273146103d1575b600080fd5b6103986040518060400160405280600f81526020017f43696761726574746520546f6b656e000000000000000000000000000000000081525081565b6040516103a5919061483e565b60405180910390f35b6103c16103bc3660046148d3565b6107e7565b60405190151581526020016103a5565b6103da60095481565b6040519081526020016103a5565b6103da60005481565b600f546104119073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a5565b61045d6104443660046148ff565b6004602052600090815260409020805460019091015482565b604080519283526020830191909152016103a5565b61047a610860565b005b6103da60135481565b6103da600a5481565b6103c161049c366004614923565b610886565b6103da60105481565b61047a6104b8366004614964565b610a65565b61047a610aeb565b61047a6104d3366004614964565b61144d565b6104e0601281565b60405160ff90911681526020016103a5565b6103c1610500366004614964565b61155c565b6103da60115481565b6103da60155481565b61047a610525366004614964565b611a65565b6103da60145481565b61045d6105413660046148ff565b6003602052600090815260409020805460019091015482565b61047a61056836600461497d565b611bc3565b61047a61057b3660046148ff565b611f38565b61047a612080565b6103da6120a1565b6103da61234a565b6007546104119073ffffffffffffffffffffffffffffffffffffffff1681565b6103da6105c63660046148ff565b60016020526000908152604090205481565b61047a6123f0565b6103da600b5481565b6103da6105f73660046148ff565b60056020526000908152604090205481565b61047a6106173660046149b8565b61249b565b61047a61062a366004614964565b61269c565b61045d61063d366004614a0a565b6128cb565b6103da6106503660046148ff565b612915565b6103986040518060400160405280600381526020017f434947000000000000000000000000000000000000000000000000000000000081525081565b6103c161069f366004614964565b6129dd565b61047a612ac0565b6103c16106ba366004614964565b600e6020526000908152604090205460ff1681565b6103c16106dd3660046148d3565b612b3e565b6103da60085481565b61047a6106f9366004614964565b612bf1565b61071161070c3660046148ff565b612d55565b6040516103a59493929190614a3a565b6103da60125481565b61047a613a36565b6103da610740366004614aea565b600260209081526000928352604080842090915290825290205481565b61047a61076b366004614964565b613b2b565b600d546104119073ffffffffffffffffffffffffffffffffffffffff1681565b61047a61079e366004614964565b613c2a565b61047a6107b1366004614964565b613d1c565b6103da613da2565b6103da600c5481565b6006546104119073ffffffffffffffffffffffffffffffffffffffff1681565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061084f9086815260200190565b60405180910390a350600192915050565b43601454141561086c57565b601254600114156108845761087f614036565b436014555b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610983578083111561094d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6e6f7420617070726f766564000000000000000000000000000000000000000060448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff85166000908152600260209081526040808320338452909152902083820390555b73ffffffffffffffffffffffffffffffffffffffff85166000908152600160205260409020546109b4908490614b47565b73ffffffffffffffffffffffffffffffffffffffff80871660009081526001602052604080822093909355908616815220546109f1908490614b5e565b73ffffffffffffffffffffffffffffffffffffffff80861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a529087815260200190565b60405180910390a3506001949350505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ae6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610944565b600b55565b601254600314610afa57600080fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d98d052a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b899190614b76565b600114610b9557600080fd5b6008544311610c00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f63616e6e6f7420656e64206d6967726174696f6e2079657400000000000000006044820152606401610944565b60016012819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631d4eaead6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610c7057600080fd5b505af1158015610c84573d6000803e3d6000fd5b5050600d546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201819052610d49945092507f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015610d20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d449190614b76565b6141ea565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631fdcc12e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dda9190614b76565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166319ad317d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6b9190614b8f565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790558015610ec657610ec030826141ea565b60138190555b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16633fd2c5856040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f559190614b76565b6014819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16633a5fca366040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fea9190614b76565b6011819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f56a499f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561105b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107f9190614b76565b600c819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663285180946040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111149190614b76565b601081905550681bc16d674ec8000000600b819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9f8d1816040518163ffffffff1660e01b8152600401602060405180830381865afa158015611195573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b99190614b76565b6008819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16633e321c676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561122a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124e9190614b76565b6015556112706000731e32a859d69dde58d03820f8f138c99b688d132f6142d2565b60408051697618fa42aac31790000081527f41732043454f2049206465636c617265204465632032322050756e6b2044617960208201526115c991731e32a859d69dde58d03820f8f138c99b688d132f917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a361131e731e32a859d69dde58d03820f8f138c99b688d132f7372014b4eedee216e47786c4ab27cc6344589950d6142d2565b604080516a01a784379d99db4200000081527f40617a756d615f626974636f696e0000000000000000000000000000000000006020820152610343917372014b4eedee216e47786c4ab27cc6344589950d917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a36113cd7372014b4eedee216e47786c4ab27cc6344589950d734947da4bef9d79bc84bd584e6c12bffa32d1bec86142d2565b604080516a14adf4b7320334b900000081527f46697273742070756e6b7320746f6b656e00000000000000000000000000000060208201526107fa91734947da4bef9d79bc84bd584e6c12bffa32d1bec8917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a350565b336000908152600360205260409020611464612ac0565b61146e8133614386565b6114788183614445565b6007546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523060048201523360248201526044810184905273ffffffffffffffffffffffffffffffffffffffff909116906323b872dd906064016020604051808303816000875af11580156114f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115199190614bac565b61152257600080fd5b60405182815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364906020015b60405180910390a25050565b6000601254600314156115cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f696e76616c6964207374617465000000000000000000000000000000000000006044820152606401610944565b61270f821115611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c69642070756e6b00000000000000000000000000000000000000006044820152606401610944565b6000828152600e602052604090205460ff16156116b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f70756e6b20616c726561647920636c61696d65640000000000000000000000006044820152606401610944565b6040517fa888c2cd000000000000000000000000000000000000000000000000000000008152600481018390527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063a888c2cd90602401602060405180830381865afa15801561173b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175f9190614bac565b156117c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f70756e6b20616c726561647920636c61696d65640000000000000000000000006044820152606401610944565b600d546040517f581781680000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff909116906358178168906024016020604051808303816000875af1158015611837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185b9190614b8f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f70756e6b203430340000000000000000000000000000000000000000000000006044820152606401610944565b6000828152600e6020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600d5473ffffffffffffffffffffffffffffffffffffffff1684529091529020546119629069152d02c7e14af680000090614b47565b600d5473ffffffffffffffffffffffffffffffffffffffff166000908152600160205260408082209290925533815220546119a89069152d02c7e14af680000090614b5e565b336000818152600160205260409081902092909255600d549151909173ffffffffffffffffffffffffffffffffffffffff16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a149069152d02c7e14af6800000815260200190565b60405180910390a360405169152d02c7e14af68000008152829033907f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf79060200160405180910390a3506001919050565b600f5473ffffffffffffffffffffffffffffffffffffffff163314611ae6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610944565b601254600114611b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f6e6f2043454f00000000000000000000000000000000000000000000000000006044820152606401610944565b8015611baa57611b623082612b3e565b5080601354611b719190614b5e565b60135560405181815233907f2ab3b3b53aa29a0599c58f343221e29a032103d015c988fae9a5cdfa5c005d9d9060200160405180910390a25b4360145414611bc057611bbb614036565b436014555b50565b60125460031415611bd357600080fd5b6012546001148015611be757504360145414155b15611bf457611bf4614036565b60125460021415611c0b57611c0761450a565b6011555b8483601154611c1a9190614b5e565b1115611c82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f6f766572706169640000000000000000000000000000000000000000000000006044820152606401610944565b64e8d4a51000841015611cf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7072696365203220736d6f6c00000000000000000000000000000000000000006044820152606401610944565b61270f821115611d5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c69642070756e6b00000000000000000000000000000000000000006044820152606401610944565b611d696103e885614bfd565b831015611dd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f696e73756666696369656e7420746178000000000000000000000000000000006044820152606401610944565b611dde30601154612b3e565b50611deb3060115461458e565b60115460405190815233907f1b1be00a9ca19f9c14f1ca5d16e4aba7d4dd173c2263d4d8a03484e1c652c8989060200160405180910390a2600f54601354611e499173ffffffffffffffffffffffffffffffffffffffff1690614641565b611e533084612b3e565b506013839055600f54611e7c9073ffffffffffffffffffffffffffffffffffffffff16336142d2565b60118490556010829055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001633908117909155436014556001601255600c8290556040518481527f2ab3b3b53aa29a0599c58f343221e29a032103d015c988fae9a5cdfa5c005d9d9060200160405180910390a26040805185815260208101839052839133917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a35050505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314611fb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610944565b60075473ffffffffffffffffffffffffffffffffffffffff1615612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f706f6f6c20616c726561647920736574000000000000000000000000000000006044820152606401610944565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b336000908152600360205260409020612097612ac0565b611bc08133614386565b600f5460009073ffffffffffffffffffffffffffffffffffffffff163314612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610944565b601254600114612191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610944565b6121bc7f00000000000000000000000000000000000000000000000000000000000000006002614c38565b6015546121c99190614b5e565b4311612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f77616974206d6f726520626c6f636b73000000000000000000000000000000006044820152606401610944565b683635c9adc5dea00000600b54106122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f72657761726420616c7265616479206d617800000000000000000000000000006044820152606401610944565b43601555600b546000906122bb90600590614bfd565b9050600081600b546122cd9190614b5e565b9050683635c9adc5dea0000081111561230557600b546122f690683635c9adc5dea00000614b47565b9150683635c9adc5dea0000090505b600b81905560408051828152602081018490527fac0f42229355025440e6f2b848e89f3a5cc8e1165cc312de10be10b12b922d3391015b60405180910390a150905090565b600a546007546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000929173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa1580156123bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e19190614b76565b6123eb9190614b5e565b905090565b60065473ffffffffffffffffffffffffffffffffffffffff163314612471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610944565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161461253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4f6e6c79204d43563200000000000000000000000000000000000000000000006044820152606401610944565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600460205260409020612567612ac0565b8215612577576125778185614386565b60008282600001541061260a578154612591908490614b47565b905080600a60008282546125a59190614b47565b909155506125b590508282614445565b8573ffffffffffffffffffffffffffffffffffffffff167fe583e55e0326a3aafef98177c72158c38f6f1f642f63a79014268d9aed60e702826040516125fd91815260200190565b60405180910390a2612693565b8154831461269357815461261e9084614b47565b905080600a60008282546126329190614b5e565b90915550612642905082826146fd565b8573ffffffffffffffffffffffffffffffffffffffff167f429bc53bb441d6b840c394d7fdb04ed53cc55fc563b667898cfa252a19f53bf58260405161268a91815260200190565b60405180910390a25b50505050505050565b600f5473ffffffffffffffffffffffffffffffffffffffff16331461271d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610944565b601254600114612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610944565b64e8d4a510008110156127f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7072696365203220736d6f6c00000000000000000000000000000000000000006044820152606401610944565b6128046103e882614bfd565b601354101561286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f707269636520776f756c642064656661756c74000000000000000000000000006044820152606401610944565b601454431461288557612880614036565b436014555b60125460011415611bc05760118190556040518181527f10c342a321267613a25f77d4273d7f2688bef174a7214bc3dde44b31c5064ff69060200160405180910390a150565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602090815260408083205460039092528220548291829161290a9190614b5e565b915091509250929050565b60095473ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081209091908261294961234a565b90506008544311801561295b57508015155b156129a7576000600b54600854436129739190614b47565b61297d9190614c38565b90508161298f8264e8d4a51000614c38565b6129999190614bfd565b6129a39085614b5e565b9350505b6001820154825464e8d4a51000906129c0908690614c38565b6129ca9190614bfd565b6129d49190614b47565b95945050505050565b6000818152600e602052604081205460ff16156129fc57506001919050565b6040517fa888c2cd000000000000000000000000000000000000000000000000000000008152600481018390527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063a888c2cd90602401602060405180830381865afa158015612a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aab9190614bac565b15612ab857506001919050565b506000919050565b6008544311612acb57565b6000612ad561234a565b905080612ae3575043600855565b6000600b5460085443612af69190614b47565b612b009190614c38565b9050612b0c30826141ea565b81612b1c8264e8d4a51000614c38565b612b269190614bfd565b600954612b339190614b5e565b600955505043600855565b33600090815260016020526040812054612b59908390614b47565b336000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff851681522054612b93908390614b5e565b73ffffffffffffffffffffffffffffffffffffffff84166000818152600160205260409081902092909255905133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061084f9086815260200190565b80612c58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f596f752063616e6e6f74206465706f736974206f6e6c79203020746f6b656e736044820152606401610944565b336000908152600360205260409020612c6f612ac0565b612c7981836146fd565b6007546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810184905273ffffffffffffffffffffffffffffffffffffffff909116906323b872dd906064016020604051808303816000875af1158015612cf6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d1a9190614bac565b612d2357600080fd5b60405182815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c90602001611550565b60408051601b8082526103808201909252606091600091829184918391602082016103608036833750506040805160028082526060820183529394506000939092509060208301908036833701905050905060007f00000000000000000000000000000000000000000000000000000000000000006103e8601154612dda9190614bfd565b612de49190614bfd565b905060008160145443612df79190614b47565b612e019190614c38565b60115473ffffffffffffffffffffffffffffffffffffffff8b166000908152600360209081526040918290208251808401909352805483526001015490820152601254929350909160021415612e5c57612e5961450a565b91505b60125486600081518110612e7257612e72614c75565b60200260200101818152505060135486600181518110612e9457612e94614c75565b60200260200101818152505060145486600281518110612eb657612eb6614c75565b60200260200101818152505060155486600381518110612ed857612ed8614c75565b6020026020010181815250508186600481518110612ef857612ef8614c75565b60200260200101818152505060105486600581518110612f1a57612f1a614c75565b602002602001018181525050600b5486600681518110612f3c57612f3c614c75565b60200260200101818152505060005486600781518110612f5e57612f5e614c75565b602090810291909101015260075473ffffffffffffffffffffffffffffffffffffffff161561359f576007546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015612ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130199190614b76565b8660088151811061302c5761302c614c75565b60209081029190910101526007546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8d81166004830152909116906370a0823190602401602060405180830381865afa1580156130a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130cb9190614b76565b866010815181106130de576130de614c75565b6020026020010181815250506130f38b612915565b8660118151811061310657613106614c75565b602002602001018181525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561317f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131a39190614cc7565b50866000815181106131b7576131b7614c75565b60200260200101876001815181106131d1576131d1614c75565b60200260200101826dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815250826dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681525050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663054d50d4670de0b6b3a76400008760008151811061327a5761327a614c75565b60200260200101516dffffffffffffffffffffffffffff16886001815181106132a5576132a5614c75565b60200260200101516dffffffffffffffffffffffffffff166040518463ffffffff1660e01b81526004016132ec939291909283526020830191909152604082015260600190565b602060405180830381865afa158015613309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332d9190614b76565b8660128151811061334057613340614c75565b602090810291909101015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b156134ee57600073c3d03e4f041fd4cd388c549ee2a29a9e5075882f90506000808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156133cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133f19190614cc7565b506040517f054d50d4000000000000000000000000000000000000000000000000000000008152670de0b6b3a764000060048201526dffffffffffffffffffffffffffff80841660248301528216604482015291935091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063054d50d490606401602060405180830381865afa1580156134a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134cb9190614b76565b896013815181106134de576134de614c75565b6020026020010181815250505050505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561355b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061357f9190614b76565b8660168151811061359257613592614c75565b6020026020010181815250505b43866009815181106135b3576135b3614c75565b6020026020010181815250508386600a815181106135d3576135d3614c75565b6020026020010181815250508286600b815181106135f3576135f3614c75565b60200260200101818152505060085486600c8151811061361557613615614c75565b602002602001018181525050806000015186600d8151811061363957613639614c75565b602002602001018181525050806020015186600e8151811061365d5761365d614c75565b602002602001018181525050600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486600f815181106136bc576136bc614c75565b602002602001018181525050600954866014815181106136de576136de614c75565b602090810291909101810191909152600d5473ffffffffffffffffffffffffffffffffffffffff1660009081526001909152604090205486518790601590811061372a5761372a614c75565b602002602001018181525050600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548660178151811061378957613789614c75565b60209081029190910101526040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8c811660048301527f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015613820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138449190614b76565b8660188151811061385757613857614c75565b60209081029190910101526040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8c811660048301523060248301527f0000000000000000000000000000000000000000000000000000000000000000169063dd62ed3e90604401602060405180830381865afa1580156138f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139189190614b76565b8660198151811061392b5761392b614c75565b60209081029190910101526040517f1959a00200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8c811660048301527f00000000000000000000000000000000000000000000000000000000000000001690631959a002906024016040805180830381865afa1580156139c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139e59190614d17565b5086601a815181106139f9576139f9614c75565b60209081029190910101525050600f54600c5494985073ffffffffffffffffffffffffffffffffffffffff16965092945090925050509193509193565b336000818152600360205260408082208054838255600182019390935560075491517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810194909452602484018390529273ffffffffffffffffffffffffffffffffffffffff9091169063a9059cbb906044016020604051808303816000875af1158015613acc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613af09190614bac565b613af957600080fd5b60405181815233907f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd969590602001611550565b601254600314613b3a57600080fd5b613b44338261458e565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063a9059cbb906044016020604051808303816000875af1158015613bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bfb9190614bac565b5033600090815260056020526040902054613c17908290614b47565b3360009081526005602052604090205550565b601254600314613c3957600080fd5b6040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018290527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906323b872dd906064016020604051808303816000875af1158015613cd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cf69190614bac565b50613d0133826141ea565b33600090815260056020526040902054613c17908290614b5e565b60065473ffffffffffffffffffffffffffffffffffffffff163314613d9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610944565b600855565b600f5460009073ffffffffffffffffffffffffffffffffffffffff163314613e26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610944565b601254600114613e92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610944565b613ebd7f00000000000000000000000000000000000000000000000000000000000000006002614c38565b601554613eca9190614b5e565b4311613f32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f77616974206d6f726520626c6f636b73000000000000000000000000000000006044820152606401610944565b655af3107a4000600b5411613fa3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f72657761726420616c7265616479206c6f7700000000000000000000000000006044820152606401610944565b43601555600b54600090613fb990600590614bfd565b9050600081600b54613fcb9190614b47565b9050655af3107a4000811015613ffb57655af3107a4000600b54613fef9190614b47565b9150655af3107a400090505b600b81905560408051828152602081018490527f954f28b512349f4a396730bb92a76639ffc1960d9e784f411a95f270a06eaf3a910161233c565b60007f00000000000000000000000000000000000000000000000000000000000000006103e86011546140699190614bfd565b6140739190614bfd565b9050600081601454436140869190614b47565b6140909190614c38565b90506013546000141580156140a757508060135410155b156140f957806013546140ba9190614b47565b6013556140c7308261458e565b60405181815233907f9ad3c710e1cc4e96240264e5d3cd5aeaa93fd8bd6ee4b11bc9be7a5036a8058590602001611550565b6000601354826141099190614b47565b90506141173060135461458e565b60135460405190815233907f9ad3c710e1cc4e96240264e5d3cd5aeaa93fd8bd6ee4b11bc9be7a5036a805859060200160405180910390a260026012556000601355600f5461417c9073ffffffffffffffffffffffffffffffffffffffff16306142d2565b600f80547fffffffffffffffffffffffff000000000000000000000000000000000000000016301790556141b033826141ea565b60405181815233907fb69f2aeff650d440d3e7385aedf764195cfca9509e33b69e69f8c77cab1e1af19060200160405180910390a2505050565b73ffffffffffffffffffffffffffffffffffffffff8216614267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610944565b600080548201815573ffffffffffffffffffffffffffffffffffffffff8316808252600160209081526040808420805486019055518481529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528281166024830152600060448301527f000000000000000000000000000000000000000000000000000000000000000016906323b872dd90606401600060405180830381600087803b15801561436a57600080fd5b505af115801561437e573d6000803e3d6000fd5b505050505050565b600064e8d4a5100060095484600001546143a09190614c38565b6143aa9190614bfd565b905060008360010154826143be9190614b47565b90506143ca8382614750565b600954845464e8d4a51000916143df91614c38565b6143e99190614bfd565b60018501556040805173ffffffffffffffffffffffffffffffffffffffff851681526020810183905233917fa0306f61d3fafe13787b78e276cb6b644382854a66cb46daae14227d3ec26797910160405180910390a250505050565b81548111156144b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f42616c616e636520697320746f6f206c6f7700000000000000000000000000006044820152606401610944565b808260000160008282546144c49190614b47565b909155505060095460009064e8d4a51000906144e09084614c38565b6144ea9190614bfd565b9050808360010160008282546145009190614b47565b9091555050505050565b6000807f000000000000000000000000000000000000000000000000000000000000000060145443038161454057614540614bce565b04600a6011548161455357614553614bce565b0402905060115481111561456d5764e8d4a5100091505090565b60115481900364e8d4a51000811015614588575064e8d4a510005b92915050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020546145bf908290614b47565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040812091909155546145f4908290614b47565b600090815560405182815273ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016142c6565b8061464a575050565b30600090815260016020526040902054614665908290614b47565b306000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff84168152205461469f908290614b5e565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600160205260409081902092909255905130907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906142c69085815260200190565b808260000160008282546147119190614b5e565b909155505060095464e8d4a510009061472a9083614c38565b6147349190614bfd565b8260010160008282546147479190614b5e565b90915550505050565b30600090815260016020526040902054818110156147ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f696e73657274206d6f726520746f626163636f206c65617665732e2e2e0000006044820152606401610944565b3060008181526001602090815260408083208054879003905573ffffffffffffffffffffffffffffffffffffffff871680845292819020805487019055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b8181101561486b5785810183015185820160400152820161484f565b8181111561487d576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114611bc057600080fd5b600080604083850312156148e657600080fd5b82356148f1816148b1565b946020939093013593505050565b60006020828403121561491157600080fd5b813561491c816148b1565b9392505050565b60008060006060848603121561493857600080fd5b8335614943816148b1565b92506020840135614953816148b1565b929592945050506040919091013590565b60006020828403121561497657600080fd5b5035919050565b600080600080600060a0868803121561499557600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080600080600060a086880312156149d057600080fd5b8535945060208601356149e2816148b1565b935060408601356149f2816148b1565b94979396509394606081013594506080013592915050565b60008060408385031215614a1d57600080fd5b823591506020830135614a2f816148b1565b809150509250929050565b6080808252855190820181905260009060209060a0840190828901845b82811015614a7357815184529284019290840190600101614a57565b50505073ffffffffffffffffffffffffffffffffffffffff87168483015260408401869052838103606085015284518082528583019183019060005b81811015614adb5783516dffffffffffffffffffffffffffff1683529284019291840191600101614aaf565b50909998505050505050505050565b60008060408385031215614afd57600080fd5b8235614b08816148b1565b91506020830135614a2f816148b1565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015614b5957614b59614b18565b500390565b60008219821115614b7157614b71614b18565b500190565b600060208284031215614b8857600080fd5b5051919050565b600060208284031215614ba157600080fd5b815161491c816148b1565b600060208284031215614bbe57600080fd5b8151801515811461491c57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614c33577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c7057614c70614b18565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b80516dffffffffffffffffffffffffffff81168114614cc257600080fd5b919050565b600080600060608486031215614cdc57600080fd5b614ce584614ca4565b9250614cf360208501614ca4565b9150604084015163ffffffff81168114614d0c57600080fd5b809150509250925092565b60008060408385031215614d2a57600080fd5b50508051602090910151909290915056fea264697066735822122051741ae0275bf63b35d9cd243f70961ea7a7f7e545e5cfb3ed1a6b33bdb394c364736f6c634300080b003300000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb0000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000000e10000000000000000000000000000000000000000000000a968163f0a57b40000068656c6c6f20776f726c64000000000000000000000000000000000000000000000000000000000000000000e0de149facf51aeb4b48a8b94a3c388f6720ed70000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000ef0881ec094552b2e128cf945ef17a6752b4ec5d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103575760003560e01c80635fcbd285116101c8578063a9059cbb11610104578063de0e9a3e116100a2578063ec17b20e1161007c578063ec17b20e146107a3578063f1dda252146107b6578063f56a499f146107be578063f851a440146107c757600080fd5b8063de0e9a3e1461075d578063dfe0a88914610770578063ea598cb01461079057600080fd5b8063c23f85d6116100de578063c23f85d6146106fe578063d98d052a14610721578063db2e21bc1461072a578063dd62ed3e1461073257600080fd5b8063a9059cbb146106cf578063a9f8d181146106e2578063b6b55f25146106eb57600080fd5b806391b7f5ed1161017157806395d89b411161014b57806395d89b41146106555780639e34070f14610691578063a2e62045146106a4578063a888c2cd146106ac57600080fd5b806391b7f5ed1461061c57806393f1a40b1461062f578063941a9acd1461064257600080fd5b806371fab900116101a257806371fab900146105e0578063845afcc1146105e95780638bf637421461060957600080fd5b80635fcbd2851461059857806370a08231146105b8578063715018a6146105d857600080fd5b80632e1a7d4d116102975780633fd2c585116102405780634437152a1161021a5780634437152a1461056d5780634641257d14610580578063557aa67e146105885780635e266fbe1461059057600080fd5b80633fd2c5851461052a578063401b216814610533578063430c38801461055a57600080fd5b80633a5fca36116102715780633a5fca36146105055780633e321c671461050e5780633f6c518d1461051757600080fd5b80632e1a7d4d146104c5578063313ce567146104d8578063379607f5146104f257600080fd5b80631d4eaead1161030457806323b872dd116102de57806323b872dd1461048e57806328518094146104a1578063293be456146104aa5780632bff884f146104bd57600080fd5b80631d4eaead146104725780631fdcc12e1461047c578063219505051461048557600080fd5b806318160ddd1161033557806318160ddd146103e857806319ad317d146103f15780631ac47beb1461043657600080fd5b806306fdde031461035c578063095ea7b3146103ae5780630d778273146103d1575b600080fd5b6103986040518060400160405280600f81526020017f43696761726574746520546f6b656e000000000000000000000000000000000081525081565b6040516103a5919061483e565b60405180910390f35b6103c16103bc3660046148d3565b6107e7565b60405190151581526020016103a5565b6103da60095481565b6040519081526020016103a5565b6103da60005481565b600f546104119073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a5565b61045d6104443660046148ff565b6004602052600090815260409020805460019091015482565b604080519283526020830191909152016103a5565b61047a610860565b005b6103da60135481565b6103da600a5481565b6103c161049c366004614923565b610886565b6103da60105481565b61047a6104b8366004614964565b610a65565b61047a610aeb565b61047a6104d3366004614964565b61144d565b6104e0601281565b60405160ff90911681526020016103a5565b6103c1610500366004614964565b61155c565b6103da60115481565b6103da60155481565b61047a610525366004614964565b611a65565b6103da60145481565b61045d6105413660046148ff565b6003602052600090815260409020805460019091015482565b61047a61056836600461497d565b611bc3565b61047a61057b3660046148ff565b611f38565b61047a612080565b6103da6120a1565b6103da61234a565b6007546104119073ffffffffffffffffffffffffffffffffffffffff1681565b6103da6105c63660046148ff565b60016020526000908152604090205481565b61047a6123f0565b6103da600b5481565b6103da6105f73660046148ff565b60056020526000908152604090205481565b61047a6106173660046149b8565b61249b565b61047a61062a366004614964565b61269c565b61045d61063d366004614a0a565b6128cb565b6103da6106503660046148ff565b612915565b6103986040518060400160405280600381526020017f434947000000000000000000000000000000000000000000000000000000000081525081565b6103c161069f366004614964565b6129dd565b61047a612ac0565b6103c16106ba366004614964565b600e6020526000908152604090205460ff1681565b6103c16106dd3660046148d3565b612b3e565b6103da60085481565b61047a6106f9366004614964565b612bf1565b61071161070c3660046148ff565b612d55565b6040516103a59493929190614a3a565b6103da60125481565b61047a613a36565b6103da610740366004614aea565b600260209081526000928352604080842090915290825290205481565b61047a61076b366004614964565b613b2b565b600d546104119073ffffffffffffffffffffffffffffffffffffffff1681565b61047a61079e366004614964565b613c2a565b61047a6107b1366004614964565b613d1c565b6103da613da2565b6103da600c5481565b6006546104119073ffffffffffffffffffffffffffffffffffffffff1681565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061084f9086815260200190565b60405180910390a350600192915050565b43601454141561086c57565b601254600114156108845761087f614036565b436014555b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610983578083111561094d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6e6f7420617070726f766564000000000000000000000000000000000000000060448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff85166000908152600260209081526040808320338452909152902083820390555b73ffffffffffffffffffffffffffffffffffffffff85166000908152600160205260409020546109b4908490614b47565b73ffffffffffffffffffffffffffffffffffffffff80871660009081526001602052604080822093909355908616815220546109f1908490614b5e565b73ffffffffffffffffffffffffffffffffffffffff80861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a529087815260200190565b60405180910390a3506001949350505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ae6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610944565b600b55565b601254600314610afa57600080fd5b7f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff1663d98d052a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b899190614b76565b600114610b9557600080fd5b6008544311610c00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f63616e6e6f7420656e64206d6967726174696f6e2079657400000000000000006044820152606401610944565b60016012819055507f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff16631d4eaead6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610c7057600080fd5b505af1158015610c84573d6000803e3d6000fd5b5050600d546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201819052610d49945092507f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e0909116906370a0823190602401602060405180830381865afa158015610d20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d449190614b76565b6141ea565b60007f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff16631fdcc12e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dda9190614b76565b90507f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff166319ad317d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6b9190614b8f565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790558015610ec657610ec030826141ea565b60138190555b7f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff16633fd2c5856040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f559190614b76565b6014819055507f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff16633a5fca366040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fea9190614b76565b6011819055507f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff1663f56a499f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561105b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107f9190614b76565b600c819055507f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff1663285180946040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111149190614b76565b601081905550681bc16d674ec8000000600b819055507f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff1663a9f8d1816040518163ffffffff1660e01b8152600401602060405180830381865afa158015611195573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b99190614b76565b6008819055507f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff16633e321c676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561122a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124e9190614b76565b6015556112706000731e32a859d69dde58d03820f8f138c99b688d132f6142d2565b60408051697618fa42aac31790000081527f41732043454f2049206465636c617265204465632032322050756e6b2044617960208201526115c991731e32a859d69dde58d03820f8f138c99b688d132f917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a361131e731e32a859d69dde58d03820f8f138c99b688d132f7372014b4eedee216e47786c4ab27cc6344589950d6142d2565b604080516a01a784379d99db4200000081527f40617a756d615f626974636f696e0000000000000000000000000000000000006020820152610343917372014b4eedee216e47786c4ab27cc6344589950d917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a36113cd7372014b4eedee216e47786c4ab27cc6344589950d734947da4bef9d79bc84bd584e6c12bffa32d1bec86142d2565b604080516a14adf4b7320334b900000081527f46697273742070756e6b7320746f6b656e00000000000000000000000000000060208201526107fa91734947da4bef9d79bc84bd584e6c12bffa32d1bec8917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a350565b336000908152600360205260409020611464612ac0565b61146e8133614386565b6114788183614445565b6007546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523060048201523360248201526044810184905273ffffffffffffffffffffffffffffffffffffffff909116906323b872dd906064016020604051808303816000875af11580156114f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115199190614bac565b61152257600080fd5b60405182815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364906020015b60405180910390a25050565b6000601254600314156115cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f696e76616c6964207374617465000000000000000000000000000000000000006044820152606401610944565b61270f821115611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c69642070756e6b00000000000000000000000000000000000000006044820152606401610944565b6000828152600e602052604090205460ff16156116b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f70756e6b20616c726561647920636c61696d65640000000000000000000000006044820152606401610944565b6040517fa888c2cd000000000000000000000000000000000000000000000000000000008152600481018390527f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff169063a888c2cd90602401602060405180830381865afa15801561173b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175f9190614bac565b156117c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f70756e6b20616c726561647920636c61696d65640000000000000000000000006044820152606401610944565b600d546040517f581781680000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff909116906358178168906024016020604051808303816000875af1158015611837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185b9190614b8f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f70756e6b203430340000000000000000000000000000000000000000000000006044820152606401610944565b6000828152600e6020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155600d5473ffffffffffffffffffffffffffffffffffffffff1684529091529020546119629069152d02c7e14af680000090614b47565b600d5473ffffffffffffffffffffffffffffffffffffffff166000908152600160205260408082209290925533815220546119a89069152d02c7e14af680000090614b5e565b336000818152600160205260409081902092909255600d549151909173ffffffffffffffffffffffffffffffffffffffff16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a149069152d02c7e14af6800000815260200190565b60405180910390a360405169152d02c7e14af68000008152829033907f34fcbac0073d7c3d388e51312faf357774904998eeb8fca628b9e6f65ee1cbf79060200160405180910390a3506001919050565b600f5473ffffffffffffffffffffffffffffffffffffffff163314611ae6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610944565b601254600114611b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f6e6f2043454f00000000000000000000000000000000000000000000000000006044820152606401610944565b8015611baa57611b623082612b3e565b5080601354611b719190614b5e565b60135560405181815233907f2ab3b3b53aa29a0599c58f343221e29a032103d015c988fae9a5cdfa5c005d9d9060200160405180910390a25b4360145414611bc057611bbb614036565b436014555b50565b60125460031415611bd357600080fd5b6012546001148015611be757504360145414155b15611bf457611bf4614036565b60125460021415611c0b57611c0761450a565b6011555b8483601154611c1a9190614b5e565b1115611c82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f6f766572706169640000000000000000000000000000000000000000000000006044820152606401610944565b64e8d4a51000841015611cf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7072696365203220736d6f6c00000000000000000000000000000000000000006044820152606401610944565b61270f821115611d5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f696e76616c69642070756e6b00000000000000000000000000000000000000006044820152606401610944565b611d696103e885614bfd565b831015611dd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f696e73756666696369656e7420746178000000000000000000000000000000006044820152606401610944565b611dde30601154612b3e565b50611deb3060115461458e565b60115460405190815233907f1b1be00a9ca19f9c14f1ca5d16e4aba7d4dd173c2263d4d8a03484e1c652c8989060200160405180910390a2600f54601354611e499173ffffffffffffffffffffffffffffffffffffffff1690614641565b611e533084612b3e565b506013839055600f54611e7c9073ffffffffffffffffffffffffffffffffffffffff16336142d2565b60118490556010829055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001633908117909155436014556001601255600c8290556040518481527f2ab3b3b53aa29a0599c58f343221e29a032103d015c988fae9a5cdfa5c005d9d9060200160405180910390a26040805185815260208101839052839133917f09b306c6ea47db16bdf4cc36f3ea2479af494cd04b4361b6485d70f088658b7e910160405180910390a35050505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314611fb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610944565b60075473ffffffffffffffffffffffffffffffffffffffff1615612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f706f6f6c20616c726561647920736574000000000000000000000000000000006044820152606401610944565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b336000908152600360205260409020612097612ac0565b611bc08133614386565b600f5460009073ffffffffffffffffffffffffffffffffffffffff163314612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610944565b601254600114612191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610944565b6121bc7f0000000000000000000000000000000000000000000000000000000000001c206002614c38565b6015546121c99190614b5e565b4311612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f77616974206d6f726520626c6f636b73000000000000000000000000000000006044820152606401610944565b683635c9adc5dea00000600b54106122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f72657761726420616c7265616479206d617800000000000000000000000000006044820152606401610944565b43601555600b546000906122bb90600590614bfd565b9050600081600b546122cd9190614b5e565b9050683635c9adc5dea0000081111561230557600b546122f690683635c9adc5dea00000614b47565b9150683635c9adc5dea0000090505b600b81905560408051828152602081018490527fac0f42229355025440e6f2b848e89f3a5cc8e1165cc312de10be10b12b922d3391015b60405180910390a150905090565b600a546007546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000929173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa1580156123bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e19190614b76565b6123eb9190614b5e565b905090565b60065473ffffffffffffffffffffffffffffffffffffffff163314612471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610944565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000ef0881ec094552b2e128cf945ef17a6752b4ec5d161461253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4f6e6c79204d43563200000000000000000000000000000000000000000000006044820152606401610944565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600460205260409020612567612ac0565b8215612577576125778185614386565b60008282600001541061260a578154612591908490614b47565b905080600a60008282546125a59190614b47565b909155506125b590508282614445565b8573ffffffffffffffffffffffffffffffffffffffff167fe583e55e0326a3aafef98177c72158c38f6f1f642f63a79014268d9aed60e702826040516125fd91815260200190565b60405180910390a2612693565b8154831461269357815461261e9084614b47565b905080600a60008282546126329190614b5e565b90915550612642905082826146fd565b8573ffffffffffffffffffffffffffffffffffffffff167f429bc53bb441d6b840c394d7fdb04ed53cc55fc563b667898cfa252a19f53bf58260405161268a91815260200190565b60405180910390a25b50505050505050565b600f5473ffffffffffffffffffffffffffffffffffffffff16331461271d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610944565b601254600114612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610944565b64e8d4a510008110156127f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7072696365203220736d6f6c00000000000000000000000000000000000000006044820152606401610944565b6128046103e882614bfd565b601354101561286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f707269636520776f756c642064656661756c74000000000000000000000000006044820152606401610944565b601454431461288557612880614036565b436014555b60125460011415611bc05760118190556040518181527f10c342a321267613a25f77d4273d7f2688bef174a7214bc3dde44b31c5064ff69060200160405180910390a150565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602090815260408083205460039092528220548291829161290a9190614b5e565b915091509250929050565b60095473ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081209091908261294961234a565b90506008544311801561295b57508015155b156129a7576000600b54600854436129739190614b47565b61297d9190614c38565b90508161298f8264e8d4a51000614c38565b6129999190614bfd565b6129a39085614b5e565b9350505b6001820154825464e8d4a51000906129c0908690614c38565b6129ca9190614bfd565b6129d49190614b47565b95945050505050565b6000818152600e602052604081205460ff16156129fc57506001919050565b6040517fa888c2cd000000000000000000000000000000000000000000000000000000008152600481018390527f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff169063a888c2cd90602401602060405180830381865afa158015612a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aab9190614bac565b15612ab857506001919050565b506000919050565b6008544311612acb57565b6000612ad561234a565b905080612ae3575043600855565b6000600b5460085443612af69190614b47565b612b009190614c38565b9050612b0c30826141ea565b81612b1c8264e8d4a51000614c38565b612b269190614bfd565b600954612b339190614b5e565b600955505043600855565b33600090815260016020526040812054612b59908390614b47565b336000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff851681522054612b93908390614b5e565b73ffffffffffffffffffffffffffffffffffffffff84166000818152600160205260409081902092909255905133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061084f9086815260200190565b80612c58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f596f752063616e6e6f74206465706f736974206f6e6c79203020746f6b656e736044820152606401610944565b336000908152600360205260409020612c6f612ac0565b612c7981836146fd565b6007546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810184905273ffffffffffffffffffffffffffffffffffffffff909116906323b872dd906064016020604051808303816000875af1158015612cf6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d1a9190614bac565b612d2357600080fd5b60405182815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c90602001611550565b60408051601b8082526103808201909252606091600091829184918391602082016103608036833750506040805160028082526060820183529394506000939092509060208301908036833701905050905060007f0000000000000000000000000000000000000000000000000000000000001c206103e8601154612dda9190614bfd565b612de49190614bfd565b905060008160145443612df79190614b47565b612e019190614c38565b60115473ffffffffffffffffffffffffffffffffffffffff8b166000908152600360209081526040918290208251808401909352805483526001015490820152601254929350909160021415612e5c57612e5961450a565b91505b60125486600081518110612e7257612e72614c75565b60200260200101818152505060135486600181518110612e9457612e94614c75565b60200260200101818152505060145486600281518110612eb657612eb6614c75565b60200260200101818152505060155486600381518110612ed857612ed8614c75565b6020026020010181815250508186600481518110612ef857612ef8614c75565b60200260200101818152505060105486600581518110612f1a57612f1a614c75565b602002602001018181525050600b5486600681518110612f3c57612f3c614c75565b60200260200101818152505060005486600781518110612f5e57612f5e614c75565b602090810291909101015260075473ffffffffffffffffffffffffffffffffffffffff161561359f576007546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015612ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130199190614b76565b8660088151811061302c5761302c614c75565b60209081029190910101526007546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8d81166004830152909116906370a0823190602401602060405180830381865afa1580156130a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130cb9190614b76565b866010815181106130de576130de614c75565b6020026020010181815250506130f38b612915565b8660118151811061310657613106614c75565b602002602001018181525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561317f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131a39190614cc7565b50866000815181106131b7576131b7614c75565b60200260200101876001815181106131d1576131d1614c75565b60200260200101826dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815250826dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681525050507f000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f73ffffffffffffffffffffffffffffffffffffffff1663054d50d4670de0b6b3a76400008760008151811061327a5761327a614c75565b60200260200101516dffffffffffffffffffffffffffff16886001815181106132a5576132a5614c75565b60200260200101516dffffffffffffffffffffffffffff166040518463ffffffff1660e01b81526004016132ec939291909283526020830191909152604082015260600190565b602060405180830381865afa158015613309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332d9190614b76565b8660128151811061334057613340614c75565b602090810291909101015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc23b156134ee57600073c3d03e4f041fd4cd388c549ee2a29a9e5075882f90506000808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156133cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133f19190614cc7565b506040517f054d50d4000000000000000000000000000000000000000000000000000000008152670de0b6b3a764000060048201526dffffffffffffffffffffffffffff80841660248301528216604482015291935091507f000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f73ffffffffffffffffffffffffffffffffffffffff169063054d50d490606401602060405180830381865afa1580156134a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134cb9190614b76565b896013815181106134de576134de614c75565b6020026020010181815250505050505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561355b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061357f9190614b76565b8660168151811061359257613592614c75565b6020026020010181815250505b43866009815181106135b3576135b3614c75565b6020026020010181815250508386600a815181106135d3576135d3614c75565b6020026020010181815250508286600b815181106135f3576135f3614c75565b60200260200101818152505060085486600c8151811061361557613615614c75565b602002602001018181525050806000015186600d8151811061363957613639614c75565b602002602001018181525050806020015186600e8151811061365d5761365d614c75565b602002602001018181525050600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205486600f815181106136bc576136bc614c75565b602002602001018181525050600954866014815181106136de576136de614c75565b602090810291909101810191909152600d5473ffffffffffffffffffffffffffffffffffffffff1660009081526001909152604090205486518790601590811061372a5761372a614c75565b602002602001018181525050600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548660178151811061378957613789614c75565b60209081029190910101526040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8c811660048301527f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e016906370a0823190602401602060405180830381865afa158015613820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138449190614b76565b8660188151811061385757613857614c75565b60209081029190910101526040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8c811660048301523060248301527f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e0169063dd62ed3e90604401602060405180830381865afa1580156138f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139189190614b76565b8660198151811061392b5761392b614c75565b60209081029190910101526040517f1959a00200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8c811660048301527f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e01690631959a002906024016040805180830381865afa1580156139c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139e59190614d17565b5086601a815181106139f9576139f9614c75565b60209081029190910101525050600f54600c5494985073ffffffffffffffffffffffffffffffffffffffff16965092945090925050509193509193565b336000818152600360205260408082208054838255600182019390935560075491517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810194909452602484018390529273ffffffffffffffffffffffffffffffffffffffff9091169063a9059cbb906044016020604051808303816000875af1158015613acc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613af09190614bac565b613af957600080fd5b60405181815233907f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd969590602001611550565b601254600314613b3a57600080fd5b613b44338261458e565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290527f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff169063a9059cbb906044016020604051808303816000875af1158015613bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bfb9190614bac565b5033600090815260056020526040902054613c17908290614b47565b3360009081526005602052604090205550565b601254600314613c3957600080fd5b6040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018290527f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e073ffffffffffffffffffffffffffffffffffffffff16906323b872dd906064016020604051808303816000875af1158015613cd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cf69190614bac565b50613d0133826141ea565b33600090815260056020526040902054613c17908290614b5e565b60065473ffffffffffffffffffffffffffffffffffffffff163314613d9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c792061646d696e2063616e2063616c6c207468697300000000000000006044820152606401610944565b600855565b600f5460009073ffffffffffffffffffffffffffffffffffffffff163314613e26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792043454f2063616e2063616c6c2074686973000000000000000000006044820152606401610944565b601254600114613e92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f2043454f20696e20636861726765000000000000000000000000000000006044820152606401610944565b613ebd7f0000000000000000000000000000000000000000000000000000000000001c206002614c38565b601554613eca9190614b5e565b4311613f32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f77616974206d6f726520626c6f636b73000000000000000000000000000000006044820152606401610944565b655af3107a4000600b5411613fa3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f72657761726420616c7265616479206c6f7700000000000000000000000000006044820152606401610944565b43601555600b54600090613fb990600590614bfd565b9050600081600b54613fcb9190614b47565b9050655af3107a4000811015613ffb57655af3107a4000600b54613fef9190614b47565b9150655af3107a400090505b600b81905560408051828152602081018490527f954f28b512349f4a396730bb92a76639ffc1960d9e784f411a95f270a06eaf3a910161233c565b60007f0000000000000000000000000000000000000000000000000000000000001c206103e86011546140699190614bfd565b6140739190614bfd565b9050600081601454436140869190614b47565b6140909190614c38565b90506013546000141580156140a757508060135410155b156140f957806013546140ba9190614b47565b6013556140c7308261458e565b60405181815233907f9ad3c710e1cc4e96240264e5d3cd5aeaa93fd8bd6ee4b11bc9be7a5036a8058590602001611550565b6000601354826141099190614b47565b90506141173060135461458e565b60135460405190815233907f9ad3c710e1cc4e96240264e5d3cd5aeaa93fd8bd6ee4b11bc9be7a5036a805859060200160405180910390a260026012556000601355600f5461417c9073ffffffffffffffffffffffffffffffffffffffff16306142d2565b600f80547fffffffffffffffffffffffff000000000000000000000000000000000000000016301790556141b033826141ea565b60405181815233907fb69f2aeff650d440d3e7385aedf764195cfca9509e33b69e69f8c77cab1e1af19060200160405180910390a2505050565b73ffffffffffffffffffffffffffffffffffffffff8216614267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610944565b600080548201815573ffffffffffffffffffffffffffffffffffffffff8316808252600160209081526040808420805486019055518481529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301528281166024830152600060448301527f000000000000000000000000e0de149facf51aeb4b48a8b94a3c388f6720ed7016906323b872dd90606401600060405180830381600087803b15801561436a57600080fd5b505af115801561437e573d6000803e3d6000fd5b505050505050565b600064e8d4a5100060095484600001546143a09190614c38565b6143aa9190614bfd565b905060008360010154826143be9190614b47565b90506143ca8382614750565b600954845464e8d4a51000916143df91614c38565b6143e99190614bfd565b60018501556040805173ffffffffffffffffffffffffffffffffffffffff851681526020810183905233917fa0306f61d3fafe13787b78e276cb6b644382854a66cb46daae14227d3ec26797910160405180910390a250505050565b81548111156144b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f42616c616e636520697320746f6f206c6f7700000000000000000000000000006044820152606401610944565b808260000160008282546144c49190614b47565b909155505060095460009064e8d4a51000906144e09084614c38565b6144ea9190614bfd565b9050808360010160008282546145009190614b47565b9091555050505050565b6000807f0000000000000000000000000000000000000000000000000000000000000e1060145443038161454057614540614bce565b04600a6011548161455357614553614bce565b0402905060115481111561456d5764e8d4a5100091505090565b60115481900364e8d4a51000811015614588575064e8d4a510005b92915050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600160205260409020546145bf908290614b47565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040812091909155546145f4908290614b47565b600090815560405182815273ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016142c6565b8061464a575050565b30600090815260016020526040902054614665908290614b47565b306000908152600160205260408082209290925573ffffffffffffffffffffffffffffffffffffffff84168152205461469f908290614b5e565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600160205260409081902092909255905130907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906142c69085815260200190565b808260000160008282546147119190614b5e565b909155505060095464e8d4a510009061472a9083614c38565b6147349190614bfd565b8260010160008282546147479190614b5e565b90915550505050565b30600090815260016020526040902054818110156147ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f696e73657274206d6f726520746f626163636f206c65617665732e2e2e0000006044820152606401610944565b3060008181526001602090815260408083208054879003905573ffffffffffffffffffffffffffffffffffffffff871680845292819020805487019055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b8181101561486b5785810183015185820160400152820161484f565b8181111561487d576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114611bc057600080fd5b600080604083850312156148e657600080fd5b82356148f1816148b1565b946020939093013593505050565b60006020828403121561491157600080fd5b813561491c816148b1565b9392505050565b60008060006060848603121561493857600080fd5b8335614943816148b1565b92506020840135614953816148b1565b929592945050506040919091013590565b60006020828403121561497657600080fd5b5035919050565b600080600080600060a0868803121561499557600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600080600080600060a086880312156149d057600080fd5b8535945060208601356149e2816148b1565b935060408601356149f2816148b1565b94979396509394606081013594506080013592915050565b60008060408385031215614a1d57600080fd5b823591506020830135614a2f816148b1565b809150509250929050565b6080808252855190820181905260009060209060a0840190828901845b82811015614a7357815184529284019290840190600101614a57565b50505073ffffffffffffffffffffffffffffffffffffffff87168483015260408401869052838103606085015284518082528583019183019060005b81811015614adb5783516dffffffffffffffffffffffffffff1683529284019291840191600101614aaf565b50909998505050505050505050565b60008060408385031215614afd57600080fd5b8235614b08816148b1565b91506020830135614a2f816148b1565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015614b5957614b59614b18565b500390565b60008219821115614b7157614b71614b18565b500190565b600060208284031215614b8857600080fd5b5051919050565b600060208284031215614ba157600080fd5b815161491c816148b1565b600060208284031215614bbe57600080fd5b8151801515811461491c57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614c33577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c7057614c70614b18565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b80516dffffffffffffffffffffffffffff81168114614cc257600080fd5b919050565b600080600060608486031215614cdc57600080fd5b614ce584614ca4565b9250614cf360208501614ca4565b9150604084015163ffffffff81168114614d0c57600080fd5b809150509250925092565b60008060408385031215614d2a57600080fd5b50508051602090910151909290915056fea264697066735822122051741ae0275bf63b35d9cd243f70961ea7a7f7e545e5cfb3ed1a6b33bdb394c364736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000001bc16d674ec8000000000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb0000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000000e10000000000000000000000000000000000000000000000a968163f0a57b40000068656c6c6f20776f726c64000000000000000000000000000000000000000000000000000000000000000000e0de149facf51aeb4b48a8b94a3c388f6720ed70000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000ef0881ec094552b2e128cf945ef17a6752b4ec5d

-----Decoded View---------------
Arg [0] : _cigPerBlock (uint256): 512000000000000000000
Arg [1] : _punks (address): 0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB
Arg [2] : _CEO_epoch_blocks (uint256): 7200
Arg [3] : _CEO_auction_blocks (uint256): 3600
Arg [4] : _CEO_price (uint256): 50000000000000000000000
Arg [5] : _graffiti (bytes32): 0x68656c6c6f20776f726c64000000000000000000000000000000000000000000
Arg [6] : _NFT (address): 0xe0DE149FacF51aeB4b48a8b94A3c388F6720eD70
Arg [7] : _V2ROUTER (address): 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F
Arg [8] : _OC (address): 0x5A35A6686db167B05E2Eb74e1ede9fb5D9Cdb3E0
Arg [9] : _migration_epochs (uint256): 10
Arg [10] : _MASTERCHEF_V2 (address): 0xEF0881eC094552b2e128Cf945EF17a6752B4Ec5d

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000001bc16d674ec8000000
Arg [1] : 000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001c20
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000e10
Arg [4] : 000000000000000000000000000000000000000000000a968163f0a57b400000
Arg [5] : 68656c6c6f20776f726c64000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000e0de149facf51aeb4b48a8b94a3c388f6720ed70
Arg [7] : 000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f
Arg [8] : 0000000000000000000000005a35a6686db167b05e2eb74e1ede9fb5d9cdb3e0
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [10] : 000000000000000000000000ef0881ec094552b2e128cf945ef17a6752b4ec5d


Deployed Bytecode Sourcemap

4055:39371:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4140:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;41272:210;;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;41272:210:0;1154:187:1;5510:29:0;;;;;;;;;1492:25:1;;;1480:2;1465:18;5510:29:0;1346:177:1;4280:30:0;;;;;;7674:22;;;;;;;;;;;;1704:42:1;1692:55;;;1674:74;;1662:2;1647:18;7674:22:0;1528:226:1;4964:53:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;2185:25:1;;;2241:2;2226:18;;2219:34;;;;2158:18;4964:53:0;2011:248:1;16738:197:0;;;:::i;:::-;;8000:30;;;;;;5621:33;;;;;;40366:729;;;;;;:::i;:::-;;:::i;7743:26::-;;;;;;34632:91;;;;;;:::i;:::-;;:::i;34802:2772::-;;;:::i;30700:489::-;;;;;;:::i;:::-;;:::i;4238:35::-;;4271:2;4238:35;;;;;3082:4:1;3070:17;;;3052:36;;3040:2;3025:18;4238:35:0;2910:184:1;26647:890:0;;;;;;:::i;:::-;;:::i;7828:38::-;;;;;;8185:34;;;;;;15823:563;;;;;;:::i;:::-;;:::i;8092:27::-;;;;;;4847:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;12382:2407;;;;;;:::i;:::-;;:::i;34356:167::-;;;;;;:::i;:::-;;:::i;31705:146::-;;;:::i;19430:713::-;;;:::i;27639:139::-;;;:::i;5282:34::-;;;;;;;;;4317:44;;;;;;:::i;:::-;;;;;;;;;;;;;;33829:85;;;:::i;5732:26::-;;;;;;5098:39;;;;;;:::i;:::-;;;;;;;;;;;;;;42081:1129;;;;;;:::i;:::-;;:::i;18611:633::-;;;;;;:::i;:::-;;:::i;29580:184::-;;;;;;:::i;:::-;;:::i;28922:550::-;;;;;;:::i;:::-;;:::i;4194:37::-;;;;;;;;;;;;;;;;;;;;;26249:246;;;;;;:::i;:::-;;:::i;28215:576::-;;;:::i;7000:35::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;39700:374;;;;;;:::i;:::-;;:::i;5401:30::-;;;;;;29955:447;;;;;;:::i;:::-;;:::i;22171:3375::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;7909:24::-;;;;;;33108:385;;;:::i;4368:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;38144:353;;;;;;:::i;:::-;;:::i;5929:24::-;;;;;;;;;37699:363;;;;;;:::i;:::-;;:::i;34128:114::-;;;;;;:::i;:::-;;:::i;20278:717::-;;;:::i;5829:23::-;;;;;;5185:20;;;;;;;;;41272:210;41368:10;41341:4;41358:21;;;:9;:21;;;;;;;;;:31;;;;;;;;;;:40;;;41414:38;41341:4;;41358:31;;41414:38;;;;41392:6;1492:25:1;;1480:2;1465:18;;1346:177;41414:38:0;;;;;;;;-1:-1:-1;41470:4:0;41272:210;;;;:::o;16738:197::-;16798:12;16782;;:28;16778:41;;;16738:197::o;16778:41::-;16833:9;;16846:1;16833:14;16829:99;;;16864:10;:8;:10::i;:::-;16904:12;16889;:27;16829:99;16738:197::o;40366:729::-;40526:16;;;40492:4;40526:16;;;:9;:16;;;;;;;;40543:10;40526:28;;;;;;;;40697:17;40692:22;;40688:228;;40786:1;40776:6;:11;;40768:36;;;;;;;7432:2:1;40768:36:0;;;7414:21:1;7471:2;7451:18;;;7444:30;7510:14;7490:18;;;7483:42;7542:18;;40768:36:0;;;;;;;;;40848:16;;;;;;;:9;:16;;;;;;;;40865:10;40848:28;;;;;;;40879:10;;;40848:41;;40688:228;40945:16;;;;;;;:9;:16;;;;;;:25;;40964:6;;40945:25;:::i;:::-;40926:16;;;;;;;;:9;:16;;;;;;:44;;;;40998:14;;;;;;;:23;;41015:6;;40998:23;:::i;:::-;40981:14;;;;;;;;:9;:14;;;;;;;:40;;;;41037:28;;;;;;;;;;41058:6;1492:25:1;;1480:2;1465:18;;1346:177;41037:28:0;;;;;;;;-1:-1:-1;41083:4:0;;40366:729;-1:-1:-1;;;;40366:729:0:o;34632:91::-;7165:5;;;;7151:10;:19;7129:93;;;;;;;8225:2:1;7129:93:0;;;8207:21:1;8264:2;8244:18;;;8237:30;8303:26;8283:18;;;8276:54;8347:18;;7129:93:0;8023:348:1;7129:93:0;34695:11:::1;:20:::0;34632:91::o;34802:2772::-;34861:9;;34874:1;34861:14;34852:24;;;;;;34896:2;:12;;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34914:1;34896:19;34887:29;;;;;;34951:15;;34936:12;:30;34927:68;;;;;;;8767:2:1;34927:68:0;;;8749:21:1;8806:2;8786:18;;;8779:30;8845:26;8825:18;;;8818:54;8889:18;;34927:68:0;8565:348:1;34927:68:0;35018:1;35006:9;:13;;;;35080:2;:10;;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;35233:5:0;;35241:28;;;;;35233:5;;;;35241:28;;;1674:74:1;;;35219:51:0;;-1:-1:-1;35233:5:0;-1:-1:-1;35241:2:0;:12;;;;;;1647:18:1;;35241:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35219:5;:51::i;:::-;35330:18;35351:2;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35330:41;;35392:2;:10;;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35382:7;:22;;;;;;;;;;;;;;;35450:14;;35446:249;;35532:32;35546:4;35553:10;35532:5;:32::i;:::-;35654:15;:29;;;35446:249;35720:2;:15;;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35705:12;:32;;;;35760:2;:12;;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35748:9;:26;;;;35796:2;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35785:8;:24;;;;35837:2;:17;;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35820:14;:36;;;;7619:9;35867:11;:30;;;;35956:2;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35938:15;:38;;;;36025:2;:22;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36003:19;:46;36094:114;36129:1;36154:42;36094:12;:114::i;:::-;36224:326;;;36392:66;2185:25:1;;36473:66:0;2241:2:1;2226:18;;2219:34;36311:66:0;;36253:42;;36224:326;;2158:18:1;36224:326:0;;;;;;;36561:155;36596:42;36662;36561:12;:155::i;:::-;36732:326;;;36900:66;2185:25:1;;36981:66:0;2241:2:1;2226:18;;2219:34;36819:66:0;;36761:42;;36732:326;;2158:18:1;36732:326:0;;;;;;;37069:155;37104:42;37170;37069:12;:155::i;:::-;37240:326;;;37408:66;2185:25:1;;37489:66:0;2241:2:1;2226:18;;2219:34;37327:66:0;;37269:42;;37240:326;;2158:18:1;37240:326:0;;;;;;;34841:2733;34802:2772::o;30700:489::-;30787:10;30755:21;30779:19;;;:7;:19;;;;;30809:8;:6;:8::i;:::-;30916:26;30925:4;30931:10;30916:8;:26::i;:::-;30953:24;30963:4;30969:7;30953:9;:24::i;:::-;31020:7;;:115;;;;;31063:4;31020:115;;;10733:34:1;31091:10:0;10783:18:1;;;10776:43;10835:18;;;10828:34;;;31020:7:0;;;;;:20;;10645:18:1;;31020:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31012:124;;;;;;31152:29;;1492:25:1;;;31161:10:0;;31152:29;;1480:2:1;1465:18;31152:29:0;;;;;;;;30744:445;30700:489;:::o;26647:890::-;26699:4;26725:9;;26738:1;26725:14;;26716:41;;;;;;;11357:2:1;26716:41:0;;;11339:21:1;11396:2;11376:18;;;11369:30;11435:15;11415:18;;;11408:43;11468:18;;26716:41:0;11155:337:1;26716:41:0;26849:4;26835:10;:18;;26826:44;;;;;;;11699:2:1;26826:44:0;;;11681:21:1;11738:2;11718:18;;;11711:30;11777:14;11757:18;;;11750:42;11809:18;;26826:44:0;11497:336:1;26826:44:0;26889:18;;;;:6;:18;;;;;;;;:27;26881:60;;;;;;;12040:2:1;26881:60:0;;;12022:21:1;12079:2;12059:18;;;12052:30;12118:22;12098:18;;;12091:50;12158:18;;26881:60:0;11838:344:1;26881:60:0;26960:21;;;;;;;;1492:25:1;;;26960:2:0;:9;;;;;1465:18:1;;26960:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;26952:63;;;;;;;12040:2:1;26952:63:0;;;12022:21:1;12079:2;12059:18;;;12052:30;12118:22;12098:18;;;12091:50;12158:18;;26952:63:0;11838:344:1;26952:63:0;27080:5;;:36;;;;;;;;1492:25:1;;;27080:5:0;;;;;:24;;1465:18:1;;27080:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27066:50;;:10;:50;;;27058:71;;;;;;;12389:2:1;27058:71:0;;;12371:21:1;12428:1;12408:18;;;12401:29;12466:10;12446:18;;;12439:38;12494:18;;27058:71:0;12187:331:1;27058:71:0;27140:18;;;;:6;:18;;;;;;;;:25;;;;27161:4;27140:25;;;;;;27222:5;;;;27204:25;;;;;;;;:40;;7347:12;;27204:40;:::i;:::-;27194:5;;;;27176:25;;;;:9;:25;;;;;;:68;;;;27323:10;27313:21;;;;:36;;7347:12;;27313:36;:::i;:::-;27299:10;27289:21;;;;:9;:21;;;;;;;:60;;;;27415:5;;27398:50;;27299:10;;27289:21;27415:5;;27398:50;;;;7347:12;1492:25:1;;1480:2;1465:18;;1346:177;27398:50:0;;;;;;;;27464:43;;7347:12;1492:25:1;;27482:10:0;;27470;;27464:43;;1480:2:1;1465:18;27464:43:0;;;;;;;-1:-1:-1;27525:4:0;;26647:890;-1:-1:-1;26647:890:0:o;15823:563::-;9765:7;;;;9751:10;:21;9729:93;;;;;;;12725:2:1;9729:93:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:24;12783:18;;;12776:52;12845:18;;9729:93:0;12523:346:1;9729:93:0;15897:9:::1;;15910:1;15897:14;15888:34;;;::::0;::::1;::::0;;13076:2:1;15888:34:0::1;::::0;::::1;13058:21:1::0;13115:1;13095:18;;;13088:29;13153:8;13133:18;;;13126:36;13179:18;;15888:34:0::1;12874:329:1::0;15888:34:0::1;15937:11:::0;;15933:260:::1;;15965:32;15982:4;15989:7;15965:8;:32::i;:::-;;16094:7;16076:15;;:25;;;;:::i;:::-;16058:15;:43:::0;16150:31:::1;::::0;1492:25:1;;;16161:10:0::1;::::0;16150:31:::1;::::0;1480:2:1;1465:18;16150:31:0::1;;;;;;;15933:260;16223:12;16207;;:28;16203:176;;16252:10;:8;:10::i;:::-;16355:12;16340;:27:::0;16203:176:::1;15823:563:::0;:::o;12382:2407::-;12581:9;;12594:1;12581:14;;12572:24;;;;;;12645:9;;12658:1;12645:14;:48;;;;;12680:12;12664;;:28;;12645:48;12641:180;;;12710:10;:8;:10::i;:::-;12835:9;;12848:1;12835:14;12831:163;;;12967:15;:13;:15::i;:::-;12955:9;:27;12831:163;13040:10;13025:11;13013:9;;:23;;;;:::i;:::-;:37;;13004:59;;;;;;;13410:2:1;13004:59:0;;;13392:21:1;13449:1;13429:18;;;13422:29;13487:10;13467:18;;;13460:38;13515:18;;13004:59:0;13208:331:1;13004:59:0;7277:4;13117:10;:23;;13108:49;;;;;;;13746:2:1;13108:49:0;;;13728:21:1;13785:2;13765:18;;;13758:30;13824:14;13804:18;;;13797:42;13856:18;;13108:49:0;13544:336:1;13108:49:0;13246:4;13231:11;:19;;13222:45;;;;;;;11699:2:1;13222:45:0;;;11681:21:1;11738:2;11718:18;;;11711:30;11777:14;11757:18;;;11750:42;11809:18;;13222:45:0;11497:336:1;13222:45:0;13349:17;13362:4;13349:10;:17;:::i;:::-;13334:11;:32;;13325:63;;;;;;;14555:2:1;13325:63:0;;;14537:21:1;14594:2;14574:18;;;14567:30;14633:18;14613;;;14606:46;14669:18;;13325:63:0;14353:340:1;13325:63:0;13439:34;13456:4;13463:9;;13439:8;:34::i;:::-;;13540:31;13554:4;13561:9;;13540:5;:31::i;:::-;13667:9;;13641:36;;1492:25:1;;;13655:10:0;;13641:36;;1480:2:1;1465:18;13641:36:0;;;;;;;13703:7;;13712:15;;13688:40;;13703:7;;;13688:14;:40::i;:::-;13804:36;13821:4;13828:11;13804:8;:36::i;:::-;-1:-1:-1;13919:15:0;:29;;;14040:7;;14027:33;;14040:7;;14049:10;14027:12;:33::i;:::-;14134:9;:22;;;14231:14;:28;;;14328:7;:20;;;;14338:10;14328:20;;;;;;14446:12;14431;:27;-1:-1:-1;14616:9:0;:13;14640:8;:20;;;14676:35;;1492:25:1;;;14676:35:0;;1480:2:1;1465:18;14676:35:0;;;;;;;14727:54;;;2185:25:1;;;2241:2;2226:18;;2219:34;;;14746:11:0;;14734:10;;14727:54;;2158:18:1;14727:54:0;;;;;;;12382:2407;;;;;:::o;34356:167::-;7165:5;;;;7151:10;:19;7129:93;;;;;;;8225:2:1;7129:93:0;;;8207:21:1;8264:2;8244:18;;;8237:30;8303:26;8283:18;;;8276:54;8347:18;;7129:93:0;8023:348:1;7129:93:0;34446:7:::1;::::0;34438:30:::1;34446:7;34438:30:::0;34430:59:::1;;;::::0;::::1;::::0;;15153:2:1;34430:59:0::1;::::0;::::1;15135:21:1::0;15192:2;15172:18;;;15165:30;15231:18;15211;;;15204:46;15267:18;;34430:59:0::1;14951:340:1::0;34430:59:0::1;34500:7;:15:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;34356:167::o;31705:146::-;31776:10;31744:21;31768:19;;;:7;:19;;;;;31798:8;:6;:8::i;:::-;31817:26;31826:4;31832:10;31817:8;:26::i;19430:713::-;9765:7;;19476;;9765;;9751:10;:21;9729:93;;;;;;;12725:2:1;9729:93:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:24;12783:18;;;12776:52;12845:18;;9729:93:0;12523:346:1;9729:93:0;19505:9:::1;;19518:1;19505:14;19497:43;;;::::0;::::1;::::0;;15498:2:1;19497:43:0::1;::::0;::::1;15480:21:1::0;15537:2;15517:18;;;15510:30;15576:18;15556;;;15549:46;15612:18;;19497:43:0::1;15296:340:1::0;19497:43:0::1;19597:18;:16;19614:1;19597:18;:::i;:::-;19574:19;;:42;;;;:::i;:::-;19559:12;:57;19551:86;;;::::0;::::1;::::0;;16076:2:1;19551:86:0::1;::::0;::::1;16058:21:1::0;16115:2;16095:18;;;16088:30;16154:18;16134;;;16127:46;16190:18;;19551:86:0::1;15874:340:1::0;19551:86:0::1;7526:10;19657:11;;:24;19648:56;;;::::0;::::1;::::0;;16421:2:1;19648:56:0::1;::::0;::::1;16403:21:1::0;16460:2;16440:18;;;16433:30;16499:20;16479:18;;;16472:48;16537:18;;19648:56:0::1;16219:342:1::0;19648:56:0::1;19737:12;19715:19;:34:::0;19778:11:::1;::::0;19760:15:::1;::::0;19778::::1;::::0;19792:1:::1;::::0;19778:15:::1;:::i;:::-;19760:33;;19822:19;19858:7;19844:11;;:21;;;;:::i;:::-;19822:43;;7526:10;19880:11;:24;19876:153;;;19944:11;::::0;19931:24:::1;::::0;7526:10:::1;19931:24;:::i;:::-;19921:34;;7526:10;19970:24;;19876:153;20039:11;:25:::0;;;20080:30:::1;::::0;;2185:25:1;;;2241:2;2226:18;;2219:34;;;20080:30:0::1;::::0;2158:18:1;20080:30:0::1;;;;;;;;-1:-1:-1::0;20128:7:0;-1:-1:-1;19430:713:0;:::o;27639:139::-;27752:18;;27717:7;;:32;;;;;27743:4;27717:32;;;1674:74:1;27685:7:0;;27752:18;27717:7;;;:17;;1647:18:1;;27717:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;27710:60;;27639:139;:::o;33829:85::-;7165:5;;;;7151:10;:19;7129:93;;;;;;;8225:2:1;7129:93:0;;;8207:21:1;8264:2;8244:18;;;8237:30;8303:26;8283:18;;;8276:54;8347:18;;7129:93:0;8023:348:1;7129:93:0;33888:5:::1;:18:::0;;;::::1;::::0;;33829:85::o;42081:1129::-;43339:10;:27;43353:13;43339:27;;43317:86;;;;;;;16768:2:1;43317:86:0;;;16750:21:1;16807:1;16787:18;;;16780:29;16845:11;16825:18;;;16818:39;16874:18;;43317:86:0;16566:332:1;43317:86:0;42296:24:::1;::::0;::::1;42272:21;42296:24:::0;;;:17:::1;:24;::::0;;;;42331:8:::1;:6;:8::i;:::-;42490:17:::0;;42487:41:::1;;42509:19;42518:4;42524:3;42509:8;:19::i;:::-;42570:13;42640:12;42624:4;:12;;;:28;42621:582;;42698:12:::0;;:27:::1;::::0;42713:12;;42698:27:::1;:::i;:::-;42690:35;;42762:5;42740:18;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;42814:22:0::1;::::0;-1:-1:-1;42824:4:0;42830:5;42814:9:::1;:22::i;:::-;42869:5;42856:26;;;42876:5;42856:26;;;;1492:25:1::0;;1480:2;1465:18;;1346:177;42856:26:0::1;;;;;;;;42621:582;;;42938:12:::0;;:28;::::1;42935:268;;43026:12:::0;;43011:27:::1;::::0;:12;:27:::1;:::i;:::-;43003:35;;43075:5;43053:18;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;43125:21:0::1;::::0;-1:-1:-1;43134:4:0;43140:5;43125:8:::1;:21::i;:::-;43178:5;43166:25;;;43185:5;43166:25;;;;1492::1::0;;1480:2;1465:18;;1346:177;43166:25:0::1;;;;;;;;42935:268;42261:949;;42081:1129:::0;;;;;:::o;18611:633::-;9765:7;;;;9751:10;:21;9729:93;;;;;;;12725:2:1;9729:93:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:24;12783:18;;;12776:52;12845:18;;9729:93:0;12523:346:1;9729:93:0;18682:9:::1;;18695:1;18682:14;18674:43;;;::::0;::::1;::::0;;15498:2:1;18674:43:0::1;::::0;::::1;15480:21:1::0;15537:2;15517:18;;;15510:30;15576:18;15556;;;15549:46;15612:18;;18674:43:0::1;15296:340:1::0;18674:43:0::1;7277:4;18737:6;:19;;18728:45;;;::::0;::::1;::::0;;13746:2:1;18728:45:0::1;::::0;::::1;13728:21:1::0;13785:2;13765:18;;;13758:30;13824:14;13804:18;;;13797:42;13856:18;;18728:45:0::1;13544:336:1::0;18728:45:0::1;18812:13;18821:4;18812:6:::0;:13:::1;:::i;:::-;18793:15;;:32;;18784:65;;;::::0;::::1;::::0;;17105:2:1;18784:65:0::1;::::0;::::1;17087:21:1::0;17144:2;17124:18;;;17117:30;17183:21;17163:18;;;17156:49;17222:18;;18784:65:0::1;16903:343:1::0;18784:65:0::1;18910:12;;18894;:28;18890:113;;18939:10;:8;:10::i;:::-;18979:12;18964;:27:::0;18890:113:::1;19079:9;;19092:1;19079:14;19075:162;;;19110:9;:18:::0;;;19203:22:::1;::::0;1492:25:1;;;19203:22:0::1;::::0;1480:2:1;1465:18;19203:22:0::1;;;;;;;18611:633:::0;:::o;29580:184::-;29723:24;;;29645:7;29723:24;;;:17;:24;;;;;;;;:32;29698:7;:14;;;;;:22;29645:7;;;;29698:57;;29723:32;29698:57;:::i;:::-;29688:68;;;;29580:184;;;;;:::o;28922:550::-;29014:14;;29101;;;28978:7;29101:14;;;:7;:14;;;;;28978:7;;29014:14;28978:7;29143:16;:14;:16::i;:::-;29126:33;;29189:15;;29174:12;:30;:45;;;;-1:-1:-1;29208:11:0;;;29174:45;29170:230;;;29236:17;29291:11;;29272:15;;29257:12;:30;;;;:::i;:::-;29256:46;;;;:::i;:::-;29236:66;-1:-1:-1;29367:6:0;29348:16;29236:66;29360:4;29348:16;:::i;:::-;:25;;;;:::i;:::-;29325:63;;:5;:63;:::i;:::-;29317:71;;29221:179;29170:230;29449:15;;;;29418:12;;29441:4;;29418:20;;29433:5;;29418:20;:::i;:::-;:27;;;;:::i;:::-;29417:47;;;;:::i;:::-;29410:54;28922:550;-1:-1:-1;;;;;28922:550:0:o;26249:246::-;26311:4;26332:18;;;:6;:18;;;;;;;;26328:62;;;-1:-1:-1;26374:4:0;;26249:246;-1:-1:-1;26249:246:0:o;26328:62::-;26404:21;;;;;;;;1492:25:1;;;26404:2:0;:9;;;;;1465:18:1;;26404:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26400:65;;;-1:-1:-1;26449:4:0;;26249:246;-1:-1:-1;26249:246:0:o;26400:65::-;-1:-1:-1;26482:5:0;;26249:246;-1:-1:-1;26249:246:0:o;28215:576::-;28271:15;;28255:12;:31;28251:70;;28215:576::o;28251:70::-;28331:14;28348:16;:14;:16::i;:::-;28331:33;-1:-1:-1;28379:11:0;28375:95;;-1:-1:-1;28425:12:0;28407:15;:30;28215:576::o;28375:95::-;28542:17;28597:11;;28578:15;;28563:12;:30;;;;:::i;:::-;28562:46;;;;:::i;:::-;28542:66;;28619:31;28633:4;28640:9;28619:5;:31::i;:::-;28725:6;28706:16;:9;28718:4;28706:16;:::i;:::-;:25;;;;:::i;:::-;28678:14;;:64;;;;:::i;:::-;28661:14;:81;-1:-1:-1;;28771:12:0;28753:15;:30;28215:576::o;39700:374::-;39924:10;39763:4;39914:21;;;:9;:21;;;;;;:30;;39938:6;;39914:30;:::i;:::-;39900:10;39890:21;;;;:9;:21;;;;;;:54;;;;:21;39972:14;;;;;;:23;;39989:6;;39972:23;:::i;:::-;39955:14;;;;;;;:9;:14;;;;;;;:40;;;;40011:33;;40020:10;;40011:33;;;;40037:6;1492:25:1;;1480:2;1465:18;;1346:177;29955:447:0;30017:12;30009:57;;;;;;;17453:2:1;30009:57:0;;;17435:21:1;;;17472:18;;;17465:30;17531:34;17511:18;;;17504:62;17583:18;;30009:57:0;17251:356:1;30009:57:0;30133:10;30101:21;30125:19;;;:7;:19;;;;;30157:8;:6;:8::i;:::-;30176:23;30185:4;30191:7;30176:8;:23::i;:::-;30218:7;;:131;;;;;30265:10;30218:131;;;10733:34:1;30303:4:0;10783:18:1;;;10776:43;10835:18;;;10828:34;;;30218:7:0;;;;;:20;;10645:18:1;;30218:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30210:140;;;;;;30366:28;;1492:25:1;;;30374:10:0;;30366:28;;1480:2:1;1465:18;30366:28:0;1346:177:1;22171:3375:0;22311:14;;;22322:2;22311:14;;;;;;;;;22226:16;;22244:7;;;;22226:16;;22244:7;;22311:14;;;;;;;;-1:-1:-1;;22364:16:0;;;22378:1;22364:16;;;;;;;;22291:34;;-1:-1:-1;22336:25:0;;22364:16;;-1:-1:-1;22378:1:0;22364:16;;;;;;;;;;-1:-1:-1;22364:16:0;22336:44;;22391:11;22427:16;22418:4;22406:9;;:16;;;;:::i;:::-;22405:39;;;;:::i;:::-;22391:53;;22473:12;22520:3;22504:12;;22489;:27;;;;:::i;:::-;22488:35;;;;:::i;:::-;22550:9;;22593:14;;;22534:13;22593:14;;;:7;:14;;;;;;;;;22570:37;;;;;;;;;;;;;;;;;;;22622:9;;22473:50;;-1:-1:-1;22550:9:0;;22635:1;22622:14;22618:70;;;22661:15;:13;:15::i;:::-;22653:23;;22618:70;22707:9;;22698:3;22702:1;22698:6;;;;;;;;:::i;:::-;;;;;;:18;;;;;22736:15;;22727:3;22731:1;22727:6;;;;;;;;:::i;:::-;;;;;;:24;;;;;22771:12;;22762:3;22766:1;22762:6;;;;;;;;:::i;:::-;;;;;;:21;;;;;22857:19;;22848:3;22852:1;22848:6;;;;;;;;:::i;:::-;;;;;;:28;;;;;22957:5;22948:3;22952:1;22948:6;;;;;;;;:::i;:::-;;;;;;:14;;;;;23035;;23026:3;23030:1;23026:6;;;;;;;;:::i;:::-;;;;;;:23;;;;;23105:11;;23096:3;23100:1;23096:6;;;;;;;;:::i;:::-;;;;;;:20;;;;;23185:11;;23176:3;23180:1;23176:6;;;;;;;;:::i;:::-;;;;;;;;;;:20;23263:7;;23255:30;23263:7;23255:30;23251:1128;;23311:7;;:32;;;;;23337:4;23311:32;;;1674:74:1;23311:7:0;;;;;:17;;1647:18:1;;23311:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23302:3;23306:1;23302:6;;;;;;;;:::i;:::-;;;;;;;;;;:41;23388:7;;:24;;;;;:7;1692:55:1;;;23388:24:0;;;1674:74:1;23388:7:0;;;;:17;;1647:18:1;;23388:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23378:3;23382:2;23378:7;;;;;;;;:::i;:::-;;;;;;:34;;;;;23466:17;23477:5;23466:10;:17::i;:::-;23456:3;23460:2;23456:7;;;;;;;;:::i;:::-;;;;;;:27;;;;;23562:7;;;;;;;;;;;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23531:52;23532:8;23541:1;23532:11;;;;;;;;:::i;:::-;;;;;;23545:8;23554:1;23545:11;;;;;;;;:::i;:::-;;;;;;23531:52;;;;;;;;;;;;;;;;;;23683:8;:21;;;23705:7;23719:8;23728:1;23719:11;;;;;;;;:::i;:::-;;;;;;;23714:17;;23738:8;23747:1;23738:11;;;;;;;;:::i;:::-;;;;;;;23733:17;;23683:68;;;;;;;;;;;;;;;;18866:25:1;;;18922:2;18907:18;;18900:34;;;;18965:2;18950:18;;18943:34;18854:2;18839:18;;18638:345;23683:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23673:3;23677:2;23673:7;;;;;;;;:::i;:::-;;;;;;;;;;:78;23809:42;25877:20;25925:8;23786:514;;23896:26;23953:42;23896:101;;24040:10;24069;24111:6;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;24209:50:0;;;;;24231:7;24209:50;;;18866:25:1;24240:8:0;;;;18907:18:1;;;18900:34;24250:8:0;;18950:18:1;;;18943:34;24098:33:0;;-1:-1:-1;24098:33:0;-1:-1:-1;24209:8:0;:21;;;;;18839:18:1;;24209:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24198:3;24202:2;24198:7;;;;;;;;:::i;:::-;;;;;;:61;;;;;23855:445;;;23786:514;24324:7;;;;;;;;;;;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24314:3;24318:2;24314:7;;;;;;;;:::i;:::-;;;;;;:31;;;;;23251:1128;24398:12;24389:3;24393:1;24389:6;;;;;;;;:::i;:::-;;;;;;:21;;;;;24477:3;24467;24471:2;24467:7;;;;;;;;:::i;:::-;;;;;;:13;;;;;24556:4;24546:3;24550:2;24546:7;;;;;;;;:::i;:::-;;;;;;:14;;;;;24630:15;;24620:3;24624:2;24620:7;;;;;;;;:::i;:::-;;;;;;:25;;;;;24739:4;:12;;;24729:3;24733:2;24729:7;;;;;;;;:::i;:::-;;;;;;:22;;;;;24831:4;:15;;;24821:3;24825:2;24821:7;;;;;;;;:::i;:::-;;;;;;:25;;;;;24915:9;:16;24925:5;24915:16;;;;;;;;;;;;;;;;24905:3;24909:2;24905:7;;;;;;;;:::i;:::-;;;;;;:26;;;;;24999:14;;24989:3;24993:2;24989:7;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;;;25107:5;;;;25089:25;;;;:9;:25;;;;;;;25079:7;;:3;;25083:2;;25079:7;;;;;;:::i;:::-;;;;;;:35;;;;;25174:4;:11;25179:5;25174:11;;;;;;;;;;;;;;;;25164:3;25168:2;25164:7;;;;;;;;:::i;:::-;;;;;;;;;;:21;25251:19;;;;;:12;1692:55:1;;;25251:19:0;;;1674:74:1;25251:2:0;:12;;;;1647:18:1;;25251:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25241:3;25245:2;25241:7;;;;;;;;:::i;:::-;;;;;;;;;;:29;25345:34;;;;;:12;19241:15:1;;;25345:34:0;;;19223::1;25373:4:0;19273:18:1;;;19266:43;25345:2:0;:12;;;;19135:18:1;;25345:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25335:3;25339:2;25335:7;;;;;;;;:::i;:::-;;;;;;;;;;:44;25431:18;;;;;:11;1692:55:1;;;25431:18:0;;;1674:74:1;25431:2:0;:11;;;;1647:18:1;;25431::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25417:32;25418:3;25422:2;25418:7;;;;;;;;:::i;:::-;;;;;;;;;;25417:32;-1:-1:-1;;25510:7:0;;25519:8;;25505:3;;-1:-1:-1;25510:7:0;;;-1:-1:-1;25519:8:0;;-1:-1:-1;25529:8:0;;-1:-1:-1;;;22171:3375:0;;;;;:::o;33108:385::-;33189:10;33157:21;33181:19;;;:7;:19;;;;;;33228:12;;33251:16;;;-1:-1:-1;33278:15:0;;:19;;;;33337:7;;:94;;;;;;;;19744:74:1;;;;19834:18;;;19827:34;;;33181:19:0;;33337:7;;;;:16;;19717:18:1;;33337:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33329:103;;;;;;33448:37;;1492:25:1;;;33466:10:0;;33448:37;;1480:2:1;1465:18;33448:37:0;1346:177:1;38144:353:0;38205:9;;38218:1;38205:14;38196:24;;;;;;38231:25;38237:10;38249:6;38231:5;:25::i;:::-;38308:31;;;;;38320:10;38308:31;;;19744:74:1;19834:18;;;19827:34;;;38308:2:0;:11;;;;;19717:18:1;;38308:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;38414:10:0;38409:16;;;;:4;:16;;;;;;:25;;38428:6;;38409:25;:::i;:::-;38395:10;38390:16;;;;:4;:16;;;;;:44;-1:-1:-1;38144:353:0:o;37699:363::-;37758:9;;37771:1;37758:14;37749:24;;;;;;37784:50;;;;;37800:10;37784:50;;;10733:34:1;37820:4:0;10783:18:1;;;10776:43;10835:18;;;10828:34;;;37784:2:0;:15;;;;;10645:18:1;;37784:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37873:25;37879:10;37891:6;37873:5;:25::i;:::-;37979:10;37974:16;;;;:4;:16;;;;;;:25;;37993:6;;37974:25;:::i;34128:114::-;7165:5;;;;7151:10;:19;7129:93;;;;;;;8225:2:1;7129:93:0;;;8207:21:1;8264:2;8244:18;;;8237:30;8303:26;8283:18;;;8276:54;8347:18;;7129:93:0;8023:348:1;7129:93:0;34205:15:::1;:29:::0;34128:114::o;20278:717::-;9765:7;;20326;;9765;;9751:10;:21;9729:93;;;;;;;12725:2:1;9729:93:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:24;12783:18;;;12776:52;12845:18;;9729:93:0;12523:346:1;9729:93:0;20354:9:::1;;20367:1;20354:14;20346:43;;;::::0;::::1;::::0;;15498:2:1;20346:43:0::1;::::0;::::1;15480:21:1::0;15537:2;15517:18;;;15510:30;15576:18;15556;;;15549:46;15612:18;;20346:43:0::1;15296:340:1::0;20346:43:0::1;20446:18;:16;20463:1;20446:18;:::i;:::-;20423:19;;:42;;;;:::i;:::-;20408:12;:57;20400:86;;;::::0;::::1;::::0;;16076:2:1;20400:86:0::1;::::0;::::1;16058:21:1::0;16115:2;16095:18;;;16088:30;16154:18;16134;;;16127:46;16190:18;;20400:86:0::1;15874:340:1::0;20400:86:0::1;7426:4;20505:11;;:24;20497:55;;;::::0;::::1;::::0;;20074:2:1;20497:55:0::1;::::0;::::1;20056:21:1::0;20113:2;20093:18;;;20086:30;20152:20;20132:18;;;20125:48;20190:18;;20497:55:0::1;19872:342:1::0;20497:55:0::1;20585:12;20563:19;:34:::0;20626:11:::1;::::0;20608:15:::1;::::0;20626::::1;::::0;20640:1:::1;::::0;20626:15:::1;:::i;:::-;20608:33;;20670:19;20706:7;20692:11;;:21;;;;:::i;:::-;20670:43;;7426:4;20728:11;:24;20724:155;;;7426:4;20779:11;;:24;;;;:::i;:::-;20769:34;;7426:4;20818:24;;20724:155;20889:11;:25:::0;;;20930:32:::1;::::0;;2185:25:1;;;2241:2;2226:18;;2219:34;;;20930:32:0::1;::::0;2158:18:1;20930:32:0::1;2011:248:1::0;17059:1356:0;17141:11;17174:16;17167:4;17155:9;;:16;;;;:::i;:::-;:35;;;;:::i;:::-;17141:49;;17225:12;17272:3;17256:12;;17241;:27;;;;:::i;:::-;17240:35;;;;:::i;:::-;17225:50;;17290:15;;17308:1;17290:19;;:46;;;;;17332:4;17313:15;;:23;;17290:46;17286:1122;;;17437:4;17419:15;;:22;;;;:::i;:::-;17401:15;:40;17481:26;17495:4;17502;17481:5;:26::i;:::-;17568:27;;1492:25:1;;;17578:10:0;;17568:27;;1480:2:1;1465:18;17568:27:0;1346:177:1;17286:1122:0;17658:22;17690:15;;17683:4;:22;;;;:::i;:::-;17658:47;;17756:37;17770:4;17777:15;;17756:5;:37::i;:::-;17865:15;;17843:38;;1492:25:1;;;17853:10:0;;17843:38;;1480:2:1;1465:18;17843:38:0;;;;;;;17908:1;17896:9;:13;18009:1;17991:15;:19;18038:7;;18025:36;;18038:7;;18055:4;18025:12;:36::i;:::-;18134:7;:23;;;;18152:4;18134:23;;;18238:33;18244:10;18256:14;18238:5;:33::i;:::-;18356:40;;1492:25:1;;;18369:10:0;;18356:40;;1480:2:1;1465:18;18356:40:0;;;;;;;17613:795;17088:1327;;17059:1356::o;39205:322::-;39278:17;;;39270:61;;;;;;;20421:2:1;39270:61:0;;;20403:21:1;20460:2;20440:18;;;20433:30;20499:33;20479:18;;;20472:61;20550:18;;39270:61:0;20219:355:1;39270:61:0;39381:11;;;:21;;39367:35;;39434:14;;;;;;-1:-1:-1;39434:14:0;;;;;;;;;;:24;;39417:41;;39485:34;1492:25:1;;;39434:14:0;;39381:11;39485:34;;1465:18:1;39485:34:0;;;;;;;;39205:322;;:::o;15513:125::-;15589:41;;;;;:20;10751:15:1;;;15589:41:0;;;10733:34:1;10803:15;;;10783:18;;;10776:43;15628:1:0;10835:18:1;;;10828:34;15589:7:0;:20;;;;10645:18:1;;15589:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15513:125;;:::o;31945:439::-;32020:22;32079:4;32062:14;;32046:5;:13;;;:30;;;;:::i;:::-;:37;;;;:::i;:::-;32020:64;;32095:13;32128:5;:16;;;32111:14;:33;;;;:::i;:::-;32095:49;;32155:26;32170:3;32175:5;32155:14;:26::i;:::-;32308:14;;32292:13;;32325:4;;32292:30;;;:::i;:::-;:37;;;;:::i;:::-;32273:16;;;:56;32345:31;;;19774:42:1;19762:55;;19744:74;;19849:2;19834:18;;19827:34;;;32353:10:0;;32345:31;;19717:18:1;32345:31:0;;;;;;;32009:375;;31945:439;;:::o;31332:288::-;31420:13;;:24;-1:-1:-1;31420:24:0;31412:55;;;;;;;21192:2:1;31412:55:0;;;21174:21:1;21231:2;21211:18;;;21204:30;21270:20;21250:18;;;21243:48;21308:18;;31412:55:0;20990:342:1;31412:55:0;31495:7;31478:5;:13;;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;31547:14:0;;31513:21;;31564:4;;31537:24;;:7;:24;:::i;:::-;:31;;;;:::i;:::-;31513:55;;31599:13;31579:5;:16;;;:33;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;31332:288:0:o;21120:595::-;21168:7;21213:9;21376:18;21360:12;;21345;:27;21344:50;;;;;:::i;:::-;;21238:2;21226:9;;:14;;;;;:::i;:::-;;21225:170;21213:182;;21418:9;;21414:1;:13;21410:127;;;7277:4;21505:16;;;21120:595;:::o;21410:127::-;21567:9;;:13;;;7277:4;21599:17;;21595:75;;;-1:-1:-1;7277:4:0;21595:75;21691:5;21120:595;-1:-1:-1;;21120:595:0:o;38848:218::-;38934:16;;;;;;;:9;:16;;;;;;:26;;38953:7;;38934:26;:::i;:::-;38915:16;;;;;;;:9;:16;;;;;:45;;;;38985:11;:21;;38999:7;;38985:21;:::i;:::-;38971:11;:35;;;39022:36;;1492:25:1;;;39022:36:0;;;;;;1480:2:1;1465:18;39022:36:0;1346:177:1;15010:433:0;15123:12;15119:51;;15010:433;;:::o;15119:51::-;15225:4;15207:24;;;;:9;:24;;;;;;:34;;15234:7;;15207:34;:::i;:::-;15198:4;15180:24;;;;:9;:24;;;;;;:61;;;;:24;15269:14;;;;;;:24;;15286:7;;15269:24;:::i;:::-;15252:14;;;;;;;:9;:14;;;;;;;:41;;;;15309:37;;15326:4;;15309:37;;;;15338:7;1492:25:1;;1480:2;1465:18;;1346:177;30414:173:0;30510:7;30493:5;:13;;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;30558:14:0;;30575:4;;30548:24;;:7;:24;:::i;:::-;:31;;;;:::i;:::-;30528:5;:16;;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;30414:173:0:o;32581:410::-;32690:4;32655:14;32672:24;;;:9;:24;;;;;;32715:17;;;;32707:59;;;;;;;21539:2:1;32707:59:0;;;21521:21:1;21578:2;21558:18;;;21551:30;21617:31;21597:18;;;21590:59;21666:18;;32707:59:0;21337:353:1;32707:59:0;32847:4;32829:24;;;;:9;:24;;;;;;;;;;:34;;;32802:61;;32829:24;32895:14;;;;;;;;;;;:24;;32878:41;;32946:37;1492:25:1;;;32895:14:0;;32847:4;32946:37;;1465:18:1;32946:37:0;;;;;;;32644:347;32581:410;;:::o;14:656:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:154::-;761:42;754:5;750:54;743:5;740:65;730:93;;819:1;816;809:12;834:315;902:6;910;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1018:9;1005:23;1037:31;1062:5;1037:31;:::i;:::-;1087:5;1139:2;1124:18;;;;1111:32;;-1:-1:-1;;;834:315:1:o;1759:247::-;1818:6;1871:2;1859:9;1850:7;1846:23;1842:32;1839:52;;;1887:1;1884;1877:12;1839:52;1926:9;1913:23;1945:31;1970:5;1945:31;:::i;:::-;1995:5;1759:247;-1:-1:-1;;;1759:247:1:o;2264:456::-;2341:6;2349;2357;2410:2;2398:9;2389:7;2385:23;2381:32;2378:52;;;2426:1;2423;2416:12;2378:52;2465:9;2452:23;2484:31;2509:5;2484:31;:::i;:::-;2534:5;-1:-1:-1;2591:2:1;2576:18;;2563:32;2604:33;2563:32;2604:33;:::i;:::-;2264:456;;2656:7;;-1:-1:-1;;;2710:2:1;2695:18;;;;2682:32;;2264:456::o;2725:180::-;2784:6;2837:2;2825:9;2816:7;2812:23;2808:32;2805:52;;;2853:1;2850;2843:12;2805:52;-1:-1:-1;2876:23:1;;2725:180;-1:-1:-1;2725:180:1:o;3099:454::-;3194:6;3202;3210;3218;3226;3279:3;3267:9;3258:7;3254:23;3250:33;3247:53;;;3296:1;3293;3286:12;3247:53;-1:-1:-1;;3319:23:1;;;3389:2;3374:18;;3361:32;;-1:-1:-1;3440:2:1;3425:18;;3412:32;;3491:2;3476:18;;3463:32;;-1:-1:-1;3542:3:1;3527:19;3514:33;;-1:-1:-1;3099:454:1;-1:-1:-1;3099:454:1:o;4097:594::-;4192:6;4200;4208;4216;4224;4277:3;4265:9;4256:7;4252:23;4248:33;4245:53;;;4294:1;4291;4284:12;4245:53;4330:9;4317:23;4307:33;;4390:2;4379:9;4375:18;4362:32;4403:31;4428:5;4403:31;:::i;:::-;4453:5;-1:-1:-1;4510:2:1;4495:18;;4482:32;4523:33;4482:32;4523:33;:::i;:::-;4097:594;;;;-1:-1:-1;4575:7:1;;4629:2;4614:18;;4601:32;;-1:-1:-1;4680:3:1;4665:19;4652:33;;4097:594;-1:-1:-1;;4097:594:1:o;4696:315::-;4764:6;4772;4825:2;4813:9;4804:7;4800:23;4796:32;4793:52;;;4841:1;4838;4831:12;4793:52;4877:9;4864:23;4854:33;;4937:2;4926:9;4922:18;4909:32;4950:31;4975:5;4950:31;:::i;:::-;5000:5;4990:15;;;4696:315;;;;;:::o;5016:1383::-;5340:3;5353:22;;;5424:13;;5325:19;;;5446:22;;;5292:4;;5522;;5499:3;5484:19;;;5549:15;;;5292:4;5592:169;5606:6;5603:1;5600:13;5592:169;;;5667:13;;5655:26;;5701:12;;;;5736:15;;;;5628:1;5621:9;5592:169;;;-1:-1:-1;;;5809:42:1;5797:55;;5777:18;;;5770:83;5884:2;5869:18;;5862:34;;;5932:19;;;5927:2;5912:18;;5905:47;6002:13;;6024:21;;;6100:15;;;;6063:12;;;-1:-1:-1;6145:226:1;6161:8;6156:3;6153:17;6145:226;;;6234:15;;6251:30;6230:52;6216:67;;6344:17;;;;6305:14;;;;6189:1;6180:11;6145:226;;;-1:-1:-1;6388:5:1;;5016:1383;-1:-1:-1;;;;;;;;;5016:1383:1:o;6404:388::-;6472:6;6480;6533:2;6521:9;6512:7;6508:23;6504:32;6501:52;;;6549:1;6546;6539:12;6501:52;6588:9;6575:23;6607:31;6632:5;6607:31;:::i;:::-;6657:5;-1:-1:-1;6714:2:1;6699:18;;6686:32;6727:33;6686:32;6727:33;:::i;7571:184::-;7623:77;7620:1;7613:88;7720:4;7717:1;7710:15;7744:4;7741:1;7734:15;7760:125;7800:4;7828:1;7825;7822:8;7819:34;;;7833:18;;:::i;:::-;-1:-1:-1;7870:9:1;;7760:125::o;7890:128::-;7930:3;7961:1;7957:6;7954:1;7951:13;7948:39;;;7967:18;;:::i;:::-;-1:-1:-1;8003:9:1;;7890:128::o;8376:184::-;8446:6;8499:2;8487:9;8478:7;8474:23;8470:32;8467:52;;;8515:1;8512;8505:12;8467:52;-1:-1:-1;8538:16:1;;8376:184;-1:-1:-1;8376:184:1:o;8918:251::-;8988:6;9041:2;9029:9;9020:7;9016:23;9012:32;9009:52;;;9057:1;9054;9047:12;9009:52;9089:9;9083:16;9108:31;9133:5;9108:31;:::i;10873:277::-;10940:6;10993:2;10981:9;10972:7;10968:23;10964:32;10961:52;;;11009:1;11006;10999:12;10961:52;11041:9;11035:16;11094:5;11087:13;11080:21;11073:5;11070:32;11060:60;;11116:1;11113;11106:12;13885:184;13937:77;13934:1;13927:88;14034:4;14031:1;14024:15;14058:4;14055:1;14048:15;14074:274;14114:1;14140;14130:189;;14175:77;14172:1;14165:88;14276:4;14273:1;14266:15;14304:4;14301:1;14294:15;14130:189;-1:-1:-1;14333:9:1;;14074:274::o;15641:228::-;15681:7;15807:1;15739:66;15735:74;15732:1;15729:81;15724:1;15717:9;15710:17;15706:105;15703:131;;;15814:18;;:::i;:::-;-1:-1:-1;15854:9:1;;15641:228::o;17801:184::-;17853:77;17850:1;17843:88;17950:4;17947:1;17940:15;17974:4;17971:1;17964:15;17990:188;18069:13;;18122:30;18111:42;;18101:53;;18091:81;;18168:1;18165;18158:12;18091:81;17990:188;;;:::o;18183:450::-;18270:6;18278;18286;18339:2;18327:9;18318:7;18314:23;18310:32;18307:52;;;18355:1;18352;18345:12;18307:52;18378:40;18408:9;18378:40;:::i;:::-;18368:50;;18437:49;18482:2;18471:9;18467:18;18437:49;:::i;:::-;18427:59;;18529:2;18518:9;18514:18;18508:25;18573:10;18566:5;18562:22;18555:5;18552:33;18542:61;;18599:1;18596;18589:12;18542:61;18622:5;18612:15;;;18183:450;;;;;:::o;19320:245::-;19399:6;19407;19460:2;19448:9;19439:7;19435:23;19431:32;19428:52;;;19476:1;19473;19466:12;19428:52;-1:-1:-1;;19499:16:1;;19555:2;19540:18;;;19534:25;19499:16;;19534:25;;-1:-1:-1;19320:245:1:o

Swarm Source

ipfs://51741ae0275bf63b35d9cd243f70961ea7a7f7e545e5cfb3ed1a6b33bdb394c3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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