blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
281
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
6
116
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
313 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
18.2k
668M
star_events_count
int64
0
102k
fork_events_count
int64
0
38.2k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
107 values
src_encoding
stringclasses
20 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
4
6.02M
extension
stringclasses
78 values
content
stringlengths
2
6.02M
authors
listlengths
1
1
author
stringlengths
0
175
a498e72a6232e6bac2fe8995f50b5d738b698ff9
2efa78429062846c177acf048ad281c5ab9cda89
/tree/trie.py
8ee9638c3b1a5124640c2e9c578082c972176bdd
[ "MIT" ]
permissive
AnupamKP/py-coding
dcfc76b388ed5c0092a5cefae0e63396c42ef5ef
4e5134631a47178ed29add42fbe68d7c55a7d6f1
refs/heads/master
2023-06-24T15:38:37.527223
2021-01-23T13:20:19
2021-01-23T13:20:19
296,760,600
0
1
MIT
2020-10-02T10:55:34
2020-09-19T01:05:46
Python
UTF-8
Python
false
false
1,416
py
class Trie: class Node: def __init__(self): self.child_node = [None]*26 self.is_end = False def __init__(self): """ Initialize your data structure here. """ self.root = self.Node() def char_to_index(self,ch): return ord(ch) - ord('a') def insert_word(self, word: str) -> None: """ Adds a word into the data structure. """ curr = self.root for char in word: index = self.char_to_index(char) if not curr.child_node[index]: curr.child_node[index] = self.Node() curr = curr.child_node[index] curr.is_end = True def search_word(self, word: str) -> bool: """ Returns if the word is in the data structure. A word could contain the dot character '.' to represent any one letter. """ curr = self.root if '.' not in word: for char in word: index = self.char_to_index(char) if not curr.child_node[index]: return False curr = curr.child_node[index] else: return False return curr != None and curr.is_end if __name__ == "__main__": trie = Trie() trie.insert_word('anupam') trie.insert_word('pathi') print(trie.search_word('pathi'))
3523e457beec9ce756329a67297927e64492e657
93e705264407776a69e2e2e77661053e14aac05c
/patient.py
bb80646e6a6cd60eb105ab092e294c688661d9b0
[]
no_license
ssdfx007008/Patient_Simulation
4f298f74add822f514d2bea556e3bd2eda061015
330afe90cf5de4e3a47977cab9ddcb8616ee4787
refs/heads/master
2020-12-25T09:47:47.104592
2017-02-23T23:54:46
2017-02-23T23:54:46
61,467,306
0
0
null
null
null
null
UTF-8
Python
false
false
5,916
py
import sys from PyQt4 import QtGui from PyQt4 import QtCore from PyQt4.QtCore import QThread,SIGNAL import time class Patient(QThread): # the operation list contains all the buttons we needed in the main window # the index will be saved by order, the value will be recorded in states # states[0]=HR # states[1]=BPH # states[2]=BPL # states[3]=RR # states[4]=SatsPercentage # states[5]=SatsDescription # next_states[] passes all the states available to the main GUI # then it creates a dynamic table for the buttons # after specify all the available next states it should connect all the available signals to the next state functions def __init__(self,parent): super(Patient, self).__init__() self.parent=parent # when initializing the patient thread, we need to start the thread from the main thread, which is just before displaying the main GUI self.connect(parent,SIGNAL("Initialize patient"),self.start) def run(self): print("Initializing patient") self.states=[] self.states.append(130) self.states.append(85) self.states.append(52) self.states.append(29) self.states.append(89) self.states.append( "RA") self.next_states=[] self.On_state_changed() self.GSW_Prehospital() # every time the patient state changed, there will be a signal generated to tell the main gui # to read the states again and generate a new state display, then a new button list def On_state_changed(self): print("\r\n\r\nState Changed") self.emit(SIGNAL("patient_state_changed")) def GSW_Prehospital(self): print("GSW_Prehospital") self.states[0] = 130 self.states[1] = 85 self.states[2] = 52 self.states[3] = 29 self.states[4] = 89 self.states[5] = "RA" self.On_state_changed() start=time.time() a=0 while time.time()-start < 3 : a=a+1 self.Initial_Trauma_Bay() def Initial_Trauma_Bay(self): print("Initializing TraumaBay") self.states[0] = 134 self.states[1] = 89 self.states[2] = 50 self.states[3] = 30 self.states[4] = 90 self.states[5] = "NRB" self.next_states=[] self.next_states.append("Needle decompression") self.connect(self.parent, SIGNAL("Needle decompression"), self.Needle_Decompression) self.next_states.append("Place Chest Tube") self.connect(self.parent, SIGNAL("Place Chest Tube"), self.Chest_tube_placed) self.new_thread = No_chest_tube_300s_timer() self.connect(self.new_thread, SIGNAL("No_chest_tube_placed_300s()"), self.No_chest_tube_300s) # the timer permission gives the right for the timer to change the state, if 0 then the timer is not allowed to change the patient state self.timer_permission = 1 self.new_thread.start() self.On_state_changed() def Needle_Decompression(self): self.states[0] = 88 self.states[1] = 108 self.states[2] = 54 self.states[3] = 12 self.states[4] = 98 self.states[5] = "NRB" self.new_thread = No_chest_tube_300s_timer() self.connect(self.new_thread, SIGNAL("No_chest_tube_placed_300s()"), self.No_chest_tube_300s) self.new_thread.start() self.next_states=[] self.next_states.append("Place Chest Tube") self.connect(self.parent,SIGNAL("Place Chest Tube"),self.Chest_tube_placed) self.On_state_changed() def Chest_tube_placed(self): print("Chest_tube_placed") self.states[0] = 87 self.states[1] = 108 self.states[2] = 54 self.states[3] = 12 self.states[4] = 98 self.states[5] = "NRB" self.timer_permission=0 self.next_states=[] self.On_state_changed() self.emit(SIGNAL("Patient Cured")) def No_chest_tube_300s(self): print("No_chest_tube_300s") self.states[0] = 160 self.states[1] = 55 self.states[2] = 20 self.states[3] = 40 self.states[4] = 82 self.states[5] = "NRB/No Chest Tube placed for 300s" self.new_thread = No_chest_tube_placed_180s_timer(self) self.new_thread.start() self.connect(self.new_thread, SIGNAL("No_chest_tube_placed"), self.No_chest_tube_placed) self.connect(self.parent, SIGNAL("Chest_tube_placed"), self.Chest_tube_placed) self.next_states=[] self.next_states.append("place chest tube") self.On_state_changed() def No_chest_tube_placed(self): if self.timer_permission==1: print("No_chest_tube_placed") self.states[0] = 0 self.states[1] = 0 self.states[2] = 0 self.states[3] = 0 self.states[4] = 0 self.states[5] = "No_chest_tube_placed/Died" self.On_state_changed() class No_chest_tube_placed_180s_timer(QtCore.QThread): def __initial__(self, parent): super(No_chest_tube_placed_180s_timer, self).__init__() def run(self): print("in thread for 180 timer\n") start = time.time() a = 0 while (time.time() - start < 3.6): a = a + 1 self.emit(QtCore.SIGNAL("No_chest_tube_placed")) class No_chest_tube_300s_timer(QtCore.QThread): def __init__(self): super(No_chest_tube_300s_timer, self).__init__() def run(self): print("in thread for 300 timer\n") start=time.time() a=0 while(time.time()-start<6.0): a=a+1 print("timer stopped\n") self.emit(QtCore.SIGNAL("No_chest_tube_placed_300s()")) if __name__ == '__main__': app = QtGui.QApplication(sys.argv) ex = Patient(app) sys.exit(app.exec_())
4fad2da17132e760ada4823f86f1c68eaee544e8
85bc7c68adcad2032c880bc0f93133688d1cc967
/logger.py
9733db45e76ef3d906310b5f77433cee0c18634d
[]
no_license
rae83/autocomplete-server
e061156dcbb2bb3c6c45693b0b3d7ff2a1046443
66ae15558edc1eeb97b9da5c7ae461a8b7d02ff0
refs/heads/master
2020-03-26T15:32:37.732949
2018-08-16T23:51:41
2018-08-16T23:51:41
145,049,578
0
0
null
null
null
null
UTF-8
Python
false
false
1,422
py
import logging from logging.handlers import RotatingFileHandler import os # Logger from: https://github.com/yxtay/char-rnn-text-generation def get_logger(name, log_path=os.path.join(os.path.dirname(__file__), "main.log"), console=False): """ Simple logging wrapper that returns logger configured to log into file and console. Args: name (str): name of logger log_path (str): path of log file console (bool): whether to log on console Returns: logging.Logger: configured logger """ logger = logging.getLogger(name) logger.setLevel(logging.DEBUG) formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s") # Ensure that logging handlers are not duplicated for handler in list(logger.handlers): logger.removeHandler(handler) # Rotating file handler if log_path: fh = RotatingFileHandler(log_path, maxBytes=2 ** 20, # 1 MB backupCount=1) # 1 backup fh.setLevel(logging.DEBUG) fh.setFormatter(formatter) logger.addHandler(fh) # Console handler if console: ch = logging.StreamHandler() ch.setLevel(logging.INFO) ch.setFormatter(formatter) logger.addHandler(ch) if len(logger.handlers) == 0: logger.addHandler(logging.NullHandler()) return logger
7a012383ad04c665bb12c0cb0993588719fe3f71
1c784e8ab4ed1e1b77e522f99bfdf7da68c6c8bc
/7. Reverse Integer(整数反转)/solution.py
8c40803fb1135acb2a3d4155b9fda4afdb39a796
[]
no_license
jinliangXX/LeetCode
2d70bdedc39616b55b48f7799f82409911a51ad8
448417270fe4ec41a6a8fabfcd0fa62ba999cb5d
refs/heads/master
2021-07-10T00:00:41.450641
2020-07-24T14:09:59
2020-07-24T14:09:59
163,974,652
0
0
null
null
null
null
UTF-8
Python
false
false
836
py
class Solution(object): def reverse(self, x): """ :type x: int :rtype: int """ result = 0 isFu = False if x < 0: isFu = True while x != 0: if isFu: now = (x % -10) else: now = x % 10 print(now) if result > int((2 ** 31 - 1) / 10) or ( result == int((2 ** 31 - 1) / 10) // 10 and now > 7): return 0 if result < int(-(2 ** 31) / 10) or ( result == int(-(2 ** 31) / 10) and now < -8): return 0 result = result * 10 + now x = int(x / 10) return result if __name__ == '__main__': print(-123 % -10) so = Solution() re = so.reverse(-123) print(re)
4bfb6408fe3122c020282667a4a2da27d9bce309
ea2cf796332879d86561f80882da93b672966448
/configs/csl/rotated_retinanet_obb_csl_gaussian_r50_adamw_fpn_1x_dior_le90.py
06b08881da2ee813a6c9b31343d7fc13168ee2d2
[ "Apache-2.0" ]
permissive
yangxue0827/h2rbox-mmrotate
968c34adf22eca073ab147b670226884ea80ac61
cfd7f1fef6ae4d4e17cb891d1ec144ece8b5d7f5
refs/heads/main
2023-05-23T10:02:58.344148
2023-02-14T05:28:38
2023-02-14T05:28:38
501,580,810
68
8
null
null
null
null
UTF-8
Python
false
false
669
py
_base_ = \ ['../rotated_retinanet/rotated_retinanet_hbb_r50_adamw_fpn_1x_dior_oc.py'] angle_version = 'le90' model = dict( bbox_head=dict( type='CSLRRetinaHead', angle_coder=dict( type='CSLCoder', angle_version=angle_version, omega=4, window='gaussian', radius=3), loss_cls=dict( type='FocalLoss', use_sigmoid=True, gamma=2.0, alpha=0.25, loss_weight=1.0), loss_bbox=dict(type='L1Loss', loss_weight=1.0), loss_angle=dict( type='SmoothFocalLoss', gamma=2.0, alpha=0.25, loss_weight=0.8)))
f79c9ac3da69afb6f18aca5cfd8be28254cb7292
811b67fca9efd7b6a2b95500dfdfbd981a2be9a7
/Machine Learning For Finance/Lesson5_2.py
c7d259b4d24c65ca989844a257248ee28f058f98
[]
no_license
inaheaven/Finance_Tool
a978ae534dca646088a12b58e00a8ce995b08920
adeaf05307dc1d4af002bea3d39c3273e93af347
refs/heads/master
2020-05-23T13:41:33.912276
2019-07-03T02:06:28
2019-07-03T02:06:28
186,781,682
0
0
null
null
null
null
UTF-8
Python
false
false
1,658
py
import pandas as pd import matplotlib.pyplot as plt import os def symbol_to_path(symbol, base_dir="Data/data"): return os.path.join(base_dir, "{}.csv".format(str(symbol))) def get_data(symbols, dates): df = pd.DataFrame(index=dates) if 'SPY' not in symbols: symbols.insert(0, 'SPY') for symbol in symbols: df_tmp = pd.read_csv(symbol_to_path(symbol), usecols=['Date', 'Adj Close'], index_col='Date', parse_dates=True, na_values=['NaN']) df_tmp = df_tmp.rename(columns={'Adj Close': symbol}) df = df.join(df_tmp) df = df.dropna(subset=['SPY']) print(df) return df def normalize_data(df): return df / df.ix[0, :] def plot_data(df, title="STOCK PRICE"): ax = df.plot(title=title, fontsize=12) ax.set_xlabel("Date") ax.set_ylabel("Price") plt.show() def plot_selected(df, columns, start_index, end_index): plot_data(df.ix[start_index: end_index, columns], title="STOCK PRICE") def test_run(): dates = pd.date_range('2012-01-01', '2012-12-31') symbols = ['SPY'] df = get_data(symbols, dates) print("df", df) # df = normalize_data(df) # plot_selected(df, ['GOOG', 'SPY', 'IBM', 'GLD'], '2010-01-01', '2010-05-01') # print("MEAN", df.mean()) # print("MEDIAN", df.median()) # print("STD", df.std()) ax = df['SPY'].plot(title="SPY ROLLING MEAN", label='SPY') rm_SPY = df['SPY'].rolling(20).mean() rm_SPY.plot(label="Rolling mean", ax = ax) ax.set_xlabel("DATE") ax.set_ylabel("PRICE") ax.legend(loc="upper left") plt.show() if __name__ == '__main__': test_run()
cef1343e2d427562a2c92d36600febee19862051
1db0c9aacb84bd592981a1cc36daa3c612087a0a
/thenewboston/third_party/factory/utils.py
9592723e302292b6ae119024f9842559ff9ab9c4
[ "MIT" ]
permissive
shahraizali/thenewboston-python
0a296ddd97fa82025d866886479f5b1630622ca9
8eb606e4a53758b5cf121d73587fab57b0e0cee5
refs/heads/master
2022-12-27T09:43:50.412343
2020-10-16T20:35:33
2020-10-16T20:35:33
282,784,616
0
0
MIT
2020-07-27T03:25:48
2020-07-27T03:25:47
null
UTF-8
Python
false
false
232
py
import factory def build_json(factory_class, **kwargs): """ Build json representation for object using factory. """ return factory.build( dict, FACTORY_CLASS=factory_class, **kwargs, )
628776070784ddd0d523624b6c9462eea95ff6bf
0d8486c1d55c40bebea7c5428930f18165d2d0e9
/tests/asp/AllAnswerSets/aggregates/count.example4.test.py
76a4479b403d3b6ffc18810437b0f4bc40d563f8
[ "Apache-2.0" ]
permissive
bernardocuteri/wasp
6f81bf6aa8fb273c91bbf68ecce4ecb195a55953
05c8f961776dbdbf7afbf905ee00fc262eba51ad
refs/heads/master
2021-06-08T11:58:25.080818
2020-10-05T16:57:37
2020-10-05T16:57:37
124,245,808
0
0
Apache-2.0
2018-03-07T14:13:16
2018-03-07T14:13:16
null
UTF-8
Python
false
false
625
py
input = """ 1 2 0 0 1 3 0 0 1 4 0 0 1 5 0 0 1 6 2 1 7 8 1 7 2 1 6 8 1 8 0 0 1 9 2 1 10 11 1 10 2 1 9 11 1 11 0 0 1 12 2 1 13 14 1 13 2 1 12 14 1 14 0 0 1 15 2 1 16 17 1 16 2 1 15 17 1 17 0 0 2 18 2 0 2 12 6 1 1 1 0 18 2 19 2 0 2 15 9 1 1 1 0 19 1 20 1 0 15 1 20 1 0 12 1 21 1 0 9 1 21 1 0 6 1 1 1 1 21 1 1 1 1 20 0 20 ad(a) 21 ad(b) 6 a(b,2) 9 a(b,1) 12 a(a,2) 15 a(a,1) 4 c(a) 5 c(b) 7 na(b,2) 10 na(b,1) 13 na(a,2) 16 na(a,1) 2 b(1) 3 b(2) 0 B+ 0 B- 1 0 1 """ output = """ {b(1), b(2), c(a), c(b), a(b,2), na(b,1), na(a,2), a(a,1), ad(a), ad(b)} {b(1), b(2), c(a), c(b), na(b,2), a(b,1), a(a,2), na(a,1), ad(a), ad(b)} """
38927db265890ba6187601389420bb4787358329
5aef1c2397b96a352f26a9bc3c280bd69171da4c
/Environments/django-env/lib/python3.6/warnings.py
9425815c0fab76c7114648e38564d2b1a5e2efcd
[]
no_license
FRANKLIU90/Python
ed01cb6aa31c313cdcbb1b514df5db830d0090d3
b6066bde6e452c5463a4680a688d5628f4a1b898
refs/heads/master
2020-04-01T03:08:39.765409
2018-10-12T22:44:47
2018-10-12T22:44:47
152,811,094
0
0
null
null
null
null
UTF-8
Python
false
false
53
py
/Users/frankyoung/anaconda3/lib/python3.6/warnings.py
255d86692f47ac4f05fbe768ce1593113e5dfa5a
5a9a6ab5196182f76dcfaaa50be340ba12fd86d5
/11-binding/01-bindings.py
d8c0f65d07173ae1cef72421d0a5d3355678e064
[]
no_license
AlanLi7991/opencv-turtorial-notes
55eb54320aaa07f7dfc8c9481bcae8198bd74f59
15be75b5c2af619e6623590bae0d7c68ab0ccdea
refs/heads/master
2022-04-23T04:45:01.407245
2020-04-22T12:13:46
2020-04-22T12:13:46
257,841,014
3
0
null
null
null
null
UTF-8
Python
false
false
48
py
# # # Nothing necessary except site document # #
ebe79df1ad52ea7869c585362ad2a6af388c05ff
eb4877802021fa9f20962a7cfb176239dfb1e169
/py/testdir_single_jvm/test_GBMGrid_basic.py
bc789ffa818ccfead0bc492810e7f8731686b00e
[ "Apache-2.0" ]
permissive
jinbochen/h2o
bd6f2b937884a6c51ccd5673310c64d6a9e1839b
48a5196cc790ed46f7c4a556258f8d2aeb7eb1c1
refs/heads/master
2021-01-17T23:33:42.765997
2013-11-14T20:06:23
2013-11-14T20:08:01
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,703
py
import unittest, time, sys sys.path.extend(['.','..','py']) import h2o, h2o_cmd, h2o_glm, h2o_hosts, h2o_import as h2i, h2o_jobs DO_CLASSIFICATION = True class Basic(unittest.TestCase): def tearDown(self): h2o.check_sandbox_for_errors() @classmethod def setUpClass(cls): global localhost localhost = h2o.decide_if_localhost() if (localhost): h2o.build_cloud(1) else: h2o_hosts.build_cloud_with_hosts(1) @classmethod def tearDownClass(cls): h2o.tear_down_cloud() def test_GBMGrid_basic_benign(self): csvFilename = "benign.csv" print "\nStarting", csvFilename csvPathname = 'logreg/' + csvFilename parseResult = h2i.import_parse(bucket='smalldata', path=csvPathname, hex_key=csvFilename + ".hex", schema='put') # columns start at 0 # cols 0-13. 3 is output # no member id in this one # fails with n_folds print "Not doing n_folds with benign. Fails with 'unable to solve?'" # check the first in the models list. It should be the best colNames = [ 'STR','OBS','AGMT','FNDX','HIGD','DEG','CHK', 'AGP1','AGMN','NLV','LIV','WT','AGLP','MST' ] modelKey = 'GBMGrid_benign' # 'cols', 'ignored_cols_by_name', and 'ignored_cols' have to be exclusive params = { 'destination_key': modelKey, 'ignored_cols_by_name': 'STR', 'learn_rate': .1, 'ntrees': 2, 'max_depth': 8, 'min_rows': 1, 'response': 'FNDX', 'classification': 1 if DO_CLASSIFICATION else 0, } kwargs = params.copy() timeoutSecs = 1800 start = time.time() GBMFirstResult = h2o_cmd.runGBM(parseResult=parseResult, noPoll=True,**kwargs) print "\nGBMFirstResult:", h2o.dump_json(GBMFirstResult) # no pattern waits for all h2o_jobs.pollWaitJobs(pattern=None, timeoutSecs=300, pollTimeoutSecs=10, retryDelaySecs=5) elapsed = time.time() - start print "GBM training completed in", elapsed, "seconds." gbmTrainView = h2o_cmd.runGBMView(model_key=modelKey) # errrs from end of list? is that the last tree? errsLast = gbmTrainView['gbm_model']['errs'][-1] print "GBM 'errsLast'", errsLast if DO_CLASSIFICATION: cm = gbmTrainView['gbm_model']['cm'] pctWrongTrain = h2o_gbm.pp_cm_summary(cm); print "Last line of this cm might be NAs, not CM" print "\nTrain\n==========\n" print h2o_gbm.pp_cm(cm) else: print "GBMTrainView:", h2o.dump_json(gbmTrainView['gbm_model']['errs']) def test_GBMGrid_basic_prostate(self): csvFilename = "prostate.csv" print "\nStarting", csvFilename # columns start at 0 csvPathname = 'logreg/' + csvFilename parseResult = h2i.import_parse(bucket='smalldata', path=csvPathname, hex_key=csvFilename + ".hex", schema='put') colNames = ['ID','CAPSULE','AGE','RACE','DPROS','DCAPS','PSA','VOL','GLEASON'] modelKey = 'GBMGrid_prostate' # 'cols', 'ignored_cols_by_name', and 'ignored_cols' have to be exclusive params = { 'destination_key': modelKey, 'ignored_cols_by_name': 'ID', 'learn_rate': .1, 'ntrees': 2, 'max_depth': 8, 'min_rows': 1, 'response': 'CAPSULE', 'classification': 1 if DO_CLASSIFICATION else 0, } kwargs = params.copy() timeoutSecs = 1800 start = time.time() GBMFirstResult = h2o_cmd.runGBM(parseResult=parseResult, noPoll=True,**kwargs) print "\nGBMFirstResult:", h2o.dump_json(GBMFirstResult) # no pattern waits for all h2o_jobs.pollWaitJobs(pattern=None, timeoutSecs=300, pollTimeoutSecs=10, retryDelaySecs=5) elapsed = time.time() - start print "GBM training completed in", elapsed, "seconds." gbmTrainView = h2o_cmd.runGBMView(model_key=modelKey) # errrs from end of list? is that the last tree? errsLast = gbmTrainView['gbm_model']['errs'][-1] print "GBM 'errsLast'", errsLast if DO_CLASSIFICATION: cm = gbmTrainView['gbm_model']['cm'] pctWrongTrain = h2o_gbm.pp_cm_summary(cm); print "Last line of this cm might be NAs, not CM" print "\nTrain\n==========\n" print h2o_gbm.pp_cm(cm) else: print "GBMTrainView:", h2o.dump_json(gbmTrainView['gbm_model']['errs']) if __name__ == '__main__': h2o.unit_main()
905b497b63c36d0df8721fcbe09be8f5bcd07c97
7e409f6490957f96a1ea17161a3b791256a2ec4f
/31 - Form Field dan Option/mywebsite/forms.py
0019079b233c0b91fd26b93c04438c8e64622c04
[]
no_license
CuteCatCrying/Django
9fb8fd06f4793ef754e6e3dfd63b9caad03317f8
563119a66c81bf57616f62855bc78f448204ba83
refs/heads/master
2022-04-02T14:13:23.700165
2020-02-05T09:34:46
2020-02-05T09:34:46
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,360
py
from django import forms class FormField(forms.Form): # python data type integer_field = forms.IntegerField(required=False) decimal_field = forms.DecimalField(required=False) float_field = forms.FloatField(required=False) boolean_field = forms.BooleanField(required=False) char_field = forms.CharField(max_length=10, required=False) # string input email_field = forms.EmailField(required=False) regex_field = forms.RegexField(regex=r'(P?<test>)') slug_field = forms.SlugField() url_field = forms.URLField() ip_field = forms.GenericIPAddressField() # select input PILIHAN = ( ('nilai1', 'Pilihan1'), ('nilai2', 'Pilihan2'), ('nilai3', 'Pilihan3'), ) choice_field = forms.ChoiceField(choices=PILIHAN) multi_choice_field = forms.MultipleChoiceField(choices=PILIHAN) multi_typed_field = forms.TypedMultipleChoiceField(choices=PILIHAN) null_boolean_field = forms.NullBooleanField() # date time date_field = forms.DateField() datetime_field = forms.DateTimeField() duration_field = forms.DurationField() time_field = forms.TimeField() splidatetime_field = forms.SplitDateTimeField() # file input file_field = forms.FileField() image_field = forms.ImageField()
8dc0a87dd10e8d1d8503e312210b327d6098d695
6ab31b5f3a5f26d4d534abc4b197fe469a68e8e5
/katas/beta/only_readable_once_list.py
b075f9fe98d07c99e321b7906fe37c77f51fe6d7
[ "MIT" ]
permissive
mveselov/CodeWars
e4259194bfa018299906f42cd02b8ef4e5ab6caa
1eafd1247d60955a5dfb63e4882e8ce86019f43a
refs/heads/master
2021-06-09T04:17:10.053324
2017-01-08T06:36:17
2017-01-08T06:36:17
null
0
0
null
null
null
null
UTF-8
Python
false
false
377
py
class SecureList(object): def __init__(self, lst): self.lst = list(lst) def __getitem__(self, item): return self.lst.pop(item) def __len__(self): return len(self.lst) def __repr__(self): tmp, self.lst = self.lst, [] return repr(tmp) def __str__(self): tmp, self.lst = self.lst, [] return str(tmp)
a93164796eaa571c517dc3a2993e7377c297e581
faa54203033398d264c75814b899d253edf71c9b
/pyflux/gas/__init__.py
dfb1ab71874ada0b2da30c57785c375b3036e9ae
[ "BSD-3-Clause" ]
permissive
th3nolo/pyflux
4a9e646f9ee0e650676b82134d3810c0a98d8963
21bc18ddeabce277e4485e75962e5fa5ff3a46ea
refs/heads/master
2020-12-02T15:08:53.257900
2016-07-24T17:47:59
2016-07-24T17:47:59
null
0
0
null
null
null
null
UTF-8
Python
false
false
258
py
from .gas import GAS from .gasx import GASX from .gasmodels import GASPoisson, GASNormal, GASLaplace, GASt, GASSkewt, GASExponential from .gasllm import GASLLEV from .gasllt import GASLLT from .gasreg import GASReg from .scores import BetatScore, SkewtScore
b190c5125c2353ba82e1f90f3fdf45a4b86f617f
f0cf25bd4b08e75f0815932416dab60a11b4dc8a
/summary.py
d3e8b3714ac332a24943e855db3c8706d37657a4
[]
no_license
baganaakh/odoo_api
e89845e4335bd30e1e4d7f2a433741031d6f8758
9f1327da6abbfc35aebf2c0034c58b4bd47c0f0a
refs/heads/master
2023-01-06T14:35:34.767093
2020-11-06T10:03:45
2020-11-06T10:03:45
307,901,958
0
0
null
null
null
null
UTF-8
Python
false
false
4,260
py
import xmlrpc.client import json from datetime import datetime import time url = 'http://localhost:8099' db = 'db58atest' username = '[email protected]' password = 'work3939' common = xmlrpc.client.ServerProxy('{}/xmlrpc/2/common'.format(url)) uid = common.authenticate(db, username, password, {}) models = xmlrpc.client.ServerProxy('{}/xmlrpc/2/object'.format(url)) lot_id = models.execute_kw( db , uid , password , 'dev.rfid.tag.lot.rel', 'search_read' , [ [ ['tag_id.epc', '=', 'AAA3'], ['lot_id.product_id', '=', 40], ['status','=',True] ] ] , { 'fields': { 'lot_id': { 'fields': [ 'id' ] } , 'tag_id': { 'fields': [ 'id' ] } } } ) print('lot_id: ', lot_id) dumped = json.dumps(lot_id) loadedd = json.loads(dumped) lotid = loadedd[0]['lot_id'][0] lotname = loadedd[0]['lot_id'][1] prod = models.execute_kw(db, uid, password, 'stock.production.lot','search_read', [[['id', '=', lotid]]], { 'fields': ['product_id'] } ) print('porduct_id: ',prod) dumped2 = json.dumps(prod) loadedd2 = json.loads(dumped2) prod_id=loadedd2[0]['product_id'][0] prod_name=loadedd2[0]['product_id'][1] now=datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(now) new_stock_picking = models.execute_kw(db, uid, password, 'stock.picking', 'create', [{'picking_type_id': 85, 'location_id': 84, 'partner_id': 27, 'priority':'', 'location_dest_id': 114}]) print('newly created stock.picking Id is :', new_stock_picking) # time.sleep(60) import xmlrpc.client as client2 # url = 'http://localhost:8099' # db = 'db58atest' # username = '[email protected]' # password = 'work3939' # common = client2.ServerProxy('{}/xmlrpc/2/common'.format(url)) # uid = common.authenticate(db, username, password, {}) # models = client2.ServerProxy('{}/xmlrpc/2/object'.format(url)) new_stock_move = models.execute_kw(db, uid, password, 'stock.move', 'create', [{'name': prod_name, 'company_id': 1, 'product_id': prod_id, 'product_uom_qty': 22, 'product_uom': 1, 'location_id': 84, 'location_dest_id': 114, 'picking_id': new_stock_picking, 'picking_type_id': 85 }]) print('newly created stock.move Id is :', new_stock_move) # # time.sleep(60) # # import xmlrpc.client as client3 # url = 'http://localhost:8099' # db = 'db58atest' # username = '[email protected]' # password = 'work3939' # common = client3.ServerProxy('{}/xmlrpc/2/common'.format(url)) # uid = common.authenticate(db, username, password, {}) # models = client3.ServerProxy('{}/xmlrpc/2/object'.format(url)) print(lotid) new_stock_move_line = models.execute_kw(db, uid, password, 'stock.move.line', 'create', [{ 'company_id': 1, 'product_id': prod_id, 'qty_done': 22, 'product_uom_id': 1, 'location_id': 84, 'location_dest_id': 114, 'picking_id': new_stock_picking, 'lot_id': lotid, # 'move_id':new_stock_move }]) print('newly created stock.move.line Id is :', new_stock_move_line)
e6b5ea99b76ac5c4be63a4df030cc2d3b5250e7d
5e5263335626da19e7bffbf82cdbdf5cf2ef94bf
/output_to_nc.py
c4a57a3d473bd1c16141ffb165b6f0d579e9afcd
[]
no_license
nltyrrell/greb_tools
777e4e4000ed76841fb6d0b1aa9387d8c5d7c56d
37f6911138f08c5b2b8d490fe3fc07f0b14cec13
refs/heads/master
2021-01-01T16:26:01.578981
2015-03-27T01:06:40
2015-03-27T01:06:40
31,241,937
0
0
null
null
null
null
UTF-8
Python
false
false
4,291
py
import numpy as np import matplotlib.pyplot as plt import iris import iris.plot as iplt import iris.quickplot as qplt import sys import os # author: Nicholas Loveday # modified by Nicholas Tyrrell Feb 2015 to use Iris #This script contains functions for creating plots for the GREB model ######################################################################################### #Function to read data from GREB def read_data(years, infile, variable, exp_name): xdim = 96 # x dimensions ydim = 48 # y dimensions dx = 3.75 # model resolution xydim = xdim*ydim tdim = 12*years #Total time steps in the data print 'tdim = '+str(tdim) field = np.zeros((xdim,ydim,tdim)) # Create a zero numpy array with correct dimensions fid = open(infile,'r') #Process data for plotting for n in np.arange(0,tdim): #Loop through time steps in data xin1 = np.fromfile(fid, np.float32, count=xydim) #t_surf xin2 = np.fromfile(fid, np.float32, count=xydim) #t_atmos xin3 = np.fromfile(fid, np.float32, count=xydim) #t_ocean xin4 = np.fromfile(fid, np.float32, count=xydim) #vapour xin5 = np.fromfile(fid, np.float32, count=xydim) #albedo # Populate array with data from the chosen variable if variable == 't_surf': xin = xin1 long_name = 'surface temperature' standard_name = 'surface_temperature' unit = iris.unit.Unit('K') elif variable == 't_atmos': xin = xin2 long_name = 'atmosphere temperature' standard_name = 'air_temperature' unit = iris.unit.Unit('K') elif variable == 't_ocean': xin = xin3 long_name = 'ocean temperature' standard_name = 'sea_surface_temperature' unit = iris.unit.Unit('K') elif variable == 'vapour': xin = xin4 long_name = 'water vapour' standard_name = 'specific_humidity' unit = iris.unit.Unit('kg kg-1') elif variable == 'albedo': xin = xin5 long_name = 'surface temperature' standard_name = 'surface_albedo' unit = iris.unit.Unit('1') for i in np.arange(0,ydim): field[:,i,n] = xin[(xdim*(i)):((i+1)*xdim)] #Function to flip and rotate data field = np.rot90(field) field = np.flipud(field) newcube = iris.cube.Cube(field, long_name=long_name) lons = (np.arange(1.875,360,3.75)) # Define longitudes lats = (np.arange(-88.125,90,3.75)) #Define latitutdes time_coord = iris.coords.DimCoord(np.arange(0,tdim*30,30), standard_name='time', units=iris.unit.Unit('days since 1940-01-15 00:00:0.0', calendar='360_day')) newcube.add_dim_coord(iris.coords.DimCoord(lats, 'latitude', units='degrees'), 0) newcube.add_dim_coord(iris.coords.DimCoord(lons, 'longitude', units='degrees'), 1) newcube.add_dim_coord(time_coord, 2) newcube.standard_name = standard_name newcube.units = unit newcube.attributes = iris._cube_coord_common.LimitedAttributeDict({'source':'Data from GREB model'}) fid.close() iris.save(newcube,'./ncfiles/'+variable+'.'+exp_name+'.nc') print 'Save cube as '+ './ncfiles/'+variable+'.'+exp_name+'.nc' return field, newcube def write_exp(exp_name): var_list = ['t_surf', 't_atmos', 't_ocean', 'vapour', 'albedo'] cube_list = iris.cube.CubeList() #Dimensions xdim = 96 ydim = 48 dx = 3.75 tstep = 4 #timesteps per day xydim = xdim*ydim #Variables file_name = './bin_files/scenario.'+exp_name+'.bin' #File name of data to plot print file_name file_size = os.stat(file_name).st_size years = file_size/(xdim*ydim*len(var_list)*tstep*12) # years = 50 # must match data from GREB model. Choose the number of years that the GREB model is set to run for # climate_variable = albedo # Choose climate variable to plot #read and plot data for i in var_list: greb_data, newcube = read_data(years, file_name, i, exp_name=exp_name) # read data cube_list.append(newcube) return cube_list
7556cb3735c1fd4e20ea6630c3b74c34c5b5dc33
a336ca401d5ae916a0c40e02e9fb128e9200828c
/.c9/metadata/environment/accounts/models.py
8a93c154f7b621867991b1381b94e4fba7f160fa
[]
no_license
h8130084/UnicornAttractor
7566d6c81c2073e65bdae825dc87798c28c4ce0f
c3bfb12f1d9c0e43b7d21fbc67925278b24af7aa
refs/heads/master
2021-06-20T19:38:44.947213
2019-12-21T13:35:30
2019-12-21T13:35:30
222,289,623
0
1
null
2021-06-10T22:16:28
2019-11-17T17:59:55
HTML
UTF-8
Python
false
false
424
py
{"filter":false,"title":"models.py","tooltip":"/accounts/models.py","undoManager":{"mark":-1,"position":-1,"stack":[]},"ace":{"folds":[],"scrolltop":0,"scrollleft":0,"selection":{"start":{"row":2,"column":26},"end":{"row":2,"column":26},"isBackwards":false},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":0},"timestamp":1574274421881,"hash":"acf33addc7bb8e1ed02287a8ca3983fd73946bb3"}
54418ba4ea7bebddbc9352d1581bdaaae2620632
96502aad42c8ca91eb41aadca053f55c970799ea
/fastinference/inference/export.py
4ba118d10d8a10cec45f170e1082a2e96bfe76e2
[ "Apache-2.0" ]
permissive
hamelsmu/fastinference
7a39ae59d7360d1ab55fd1b84b9a22afd32f7744
13abbd3f34aee7bca0aa66ec35dbd0048631817c
refs/heads/master
2022-12-08T20:53:45.348089
2020-08-19T00:59:30
2020-08-19T00:59:30
288,598,960
1
0
Apache-2.0
2020-08-19T01:04:32
2020-08-19T01:04:31
null
UTF-8
Python
false
false
3,345
py
# AUTOGENERATED! DO NOT EDIT! File to edit: nbs/00b_inference.export.ipynb (unless otherwise specified). __all__ = ['get_information'] # Cell from fastai2.vision.all import * # Cell def _gen_dict(tfm): "Grabs the `attrdict` and transform name from `tfm`" tfm_dict = attrdict(tfm, *tfm.store_attrs.split(',')) if 'partial' in tfm.name: tfm_name = tfm.name[1].split(' --')[0] else: tfm_name = tfm.name.split(' --')[0] return tfm_dict, tfm_name # Cell def _make_tfm_dict(tfms, type_tfm=False): "Extracts transform params from `tfms`" tfm_dicts = {} for tfm in tfms: if hasattr(tfm, 'store_attrs') and not isinstance(tfm, AffineCoordTfm): if type_tfm or tfm.split_idx is not 0: tfm_dict,name = _gen_dict(tfm) tfm_dict = to_list(tfm_dict) tfm_dicts[name] = tfm_dict return tfm_dicts # Cell @typedispatch def _extract_tfm_dicts(dl:TfmdDL): "Extracts all transform params from `dl`" type_tfm,use_images = True,False attrs = ['tfms','after_item','after_batch'] tfm_dicts = {} for attr in attrs: tfm_dicts[attr] = _make_tfm_dict(getattr(dl, attr), type_tfm) if attr == 'tfms': if getattr(dl,attr)[0][1].name == 'PILBase.create': use_images=True if attr == 'after_item': tfm_dicts[attr]['ToTensor'] = {'is_image':use_images} type_tfm = False return tfm_dicts # Cell def get_information(dls): return _extract_tfm_dicts(dls[0]) # Cell from fastai2.tabular.all import * # Cell @typedispatch def _extract_tfm_dicts(dl:TabDataLoader): "Extracts all transform params from `dl`" types = 'normalize,fill_missing,categorify' if hasattr(dl, 'categorize'): types += ',categorize' if hasattr(dl, 'regression_setup'): types += ',regression_setup' tfms = {} name2idx = {name:n for n,name in enumerate(dl.dataset) if name in dl.cat_names or name in dl.cont_names} idx2name = {v:k for k,v in name2idx.items()} cat_idxs = {name2idx[name]:name for name in cat_names} cont_idxs = {name2idx[name]:name for name in cont_names} names = {'cats':cat_idxs, 'conts':cont_idxs} tfms['encoder'] = names for t in types.split(','): tfm = getattr(dl, t) tfms[t] = to_list(attrdict(tfm, *tfm.store_attrs.split(','))) categorize = dl.procs.categorify.classes.copy() for i,c in enumerate(categorize): categorize[c] = {a:b for a,b in enumerate(categorize[c])} categorize[c] = {v: k for k, v in categorize[c].items()} categorize[c].pop('#na#') categorize[c][np.nan] = 0 tfms['categorify']['classes'] = categorize new_dict = {} for k,v in tfms.items(): if k == 'fill_missing': k = 'FillMissing' new_dict.update({k:v}) else: new_dict.update({k.capitalize():v}) return new_dict # Cell @patch def to_fastinference(x:Learner, data_fname='data', model_fname='model', path=Path('.')): "Export data for `fastinference_onnx` or `_pytorch` to use" if not isinstance(path,Path): path = Path(path) dicts = get_information(x.dls) with open(path/f'{data_fname}.pkl', 'wb') as handle: pickle.dump(dicts, handle, protocol=pickle.HIGHEST_PROTOCOL) torch.save(x.model, path/f'{model_fname}.pkl')
35bc67154ffe8de7f1362b6480e4246002cbb1dd
0898fbb930a58aa1ff57c955bfefa5df66c9e6a3
/day08/day08.py
b1a799aa2ccb2960fd1ddd2a1991df95bfc1bf69
[]
no_license
ngsengleng/adventofcode2020
1e533ad7e00f462b47addcc3a7aa97d1b2f1425a
6d40768e19cd5b8a1ec7b75d336bbc7735b28999
refs/heads/master
2023-02-02T00:51:13.108655
2020-12-16T13:12:59
2020-12-16T13:12:59
317,387,224
0
0
null
null
null
null
UTF-8
Python
false
false
1,766
py
f = 'day08_input.txt' #f = 'a.txt' data = open(f, 'r').read().split("\n") import copy def get_instr(s): return s[:3] def get_num(s): return int(s.split(" ")[1]) # part 1 def prog1(): instr_set = set() num = 0 ptr = 0 while ptr not in instr_set: instr_set.add(ptr) instr = get_instr(data[ptr]) val = get_num(data[ptr]) if instr == 'nop': ptr += 1 elif instr == 'acc': num += val ptr += 1 else: ptr += val return num print(prog1()) # part 2 def prog2(acc, ptr, state, modified): if ptr in state: return 'infinite', acc elif ptr == len(data): return 'end', acc else: this_op = get_instr(data[ptr]) val = get_num(data[ptr]) c = copy.deepcopy(state) c.add(ptr) if modified: if this_op == 'nop': return prog2(acc, ptr + 1, c, modified) elif this_op == 'jmp': return prog2(acc, ptr + val, c, modified) else: return prog2(acc + val, ptr + 1, c, modified) else: if this_op == 'nop': a, b = prog2(acc, ptr + val, c, True) if a == 'end': return a, b else: return prog2(acc, ptr + 1, c, modified) elif this_op == 'jmp': a, b = prog2(acc, ptr + 1, c, True) if a == 'end': return a, b else: return prog2(acc, ptr + val, c, modified) else: return prog2(acc + val, ptr + 1, c, modified) n = set() a, b = prog2(0, 0, n, False) print(a,b)
5b8c497921a55d8f2874a4cd060150eafc9b020e
b24e42b82b211d7d22ec57a56d4fc6a9bf782040
/web/web/brainweb.py
ced39191f49e9820257201e71b706736f56a267c
[]
no_license
pmanava1/EM-connectome
d5276982ac94511b821d099bdf330c315c970079
ff35d46cea4b51900b4b3fe6d3546f87a29f5834
refs/heads/master
2021-01-15T16:57:50.601766
2012-01-25T18:37:03
2012-01-25T18:37:03
null
0
0
null
null
null
null
UTF-8
Python
false
false
863
py
#!/usr/bin/env /usr/local/epd-7.0-2-rh5-x86_64/bin/python import empaths import web import restargs import brainrest import annrest web.config.debug=True urls = ( '/bock11/(.*)', 'bock11' , '/hayworth5nm/(.*)', 'hayworth5nm' , '/hayworth5nm.annotate/(.*)', 'hayworth5nmAnnotate' , '/kasthuri11/(.*)', 'kasthuri11' ) app = web.application(urls, globals(), True) class bock11: def GET(self,name): return brainrest.bock11(web.websafe(name)) class hayworth5nm: def GET(self,name): return brainrest.hayworth5nm(web.websafe(name)) class kasthuri11: def GET(self,name): return brainrest.kasthuri11(web.websafe(name)) class hayworth5nmAnnotate: def GET(self,name): return annrest.hayworth5nm(web.websafe(name)) def POST(self,name): return annrest.hayworth5nmPost(web.websafe(name)) if __name__ == "__main__": app.run()
3b464e32cead8156280b1162b8ca8b0d564414bf
43ec7be4d9c9da383869f24ab07ddc6c7810fe95
/src/brick.py
c409a8d72d54694f1b2c13f9b57ea16e8340e60e
[]
no_license
Xaqiri/raycastingLOSTest
75197867be39166e1f6172f7b1253fb39439fab3
254d95dd701191f0633c99d1a0d7380e9d6eb998
refs/heads/master
2020-05-29T08:50:54.883309
2017-03-27T21:21:01
2017-03-27T21:21:05
70,184,366
0
0
null
null
null
null
UTF-8
Python
false
false
599
py
import pygame as p class Brick(): def __init__(self, pos, size, color, font): self.pos = pos self.size = size self.color = color self.icon = '#' if self.color == (100, 100, 100) else '.' self.font = font self.id = 'wall' if self.icon == '#' else 'floor' self.revealed = False def render(self, SCREEN, render_mode): if render_mode: p.draw.rect(SCREEN, self.color, (self.pos, self.size)) else: SCREEN.blit(self.font.render(self.icon, 1, self.color), (self.pos, self.size))
b86351c6429663e169bcf62e81619428d6e0a535
c878f4d92162f072b803b0c63cdc0a4a8a3090db
/board.py
4dc0da87b86961619b3e6b2485569c4cb8240e4b
[]
no_license
resfari/board
e9b87d4446126be4816d0441a4db81f905edd1a6
35dbdec5897bdb587b155322a9cca268ad8fb242
refs/heads/master
2020-12-28T11:06:00.105115
2020-02-06T00:46:04
2020-02-06T00:46:04
238,306,065
1
0
null
null
null
null
UTF-8
Python
false
false
6,385
py
import random import sys import time USAGE = """ ####################################################################### Usage: python3 board.py [-help] | [M] [N] | [-p] [path] Example:\n python3 board.py 70 70 Where is: [-help] - print usage [M] - Board hight (M >= 1) [N] - Board width (N >= 1) [-p] - flag for using path instead random generated board [path] - path of 'board' file (example python3 board.py -p test.txt) Ctrl+C - exit ######################################################################## """ def print_usage(num): print(USAGE) if num == 1: print("Wrong numbers in args") elif num == 2: print("Too many arguments") elif num == 3: print("Error in file") elif num == 4: print("M and N ") exit(1) def check_massive(mass): for i in mass: if i > 1 or i < 0: return True return False def check_size_mass(mass): len_et = len(mass[0]) for i in mass: if len_et != len(i): return True return False def generate_board(m, n): """ This function creates board(MxN) and randomly fill it """ board = [] for j in range(m): board.append([random.randint(0, 1) for i in range(n)]) return board, m, n def create_from_path(path): """ This function creates board from inputed path """ board = [] try: with open(path, "r") as f: loop = True while loop: s = list(map(int, f.readline().split())) if check_massive(s): raise Exception if s == []: loop = False else: board.append(s) if check_size_mass(board): raise Exception return board, len(board), len(board[0]) except: print_usage(3) def summ_connections(board, y, x, m, n): """ This function counts alive neighbors and exits if res > 3 """ res = 0 if y > 0 and x > 0: res += board[y - 1][x - 1] if y > 0: res += board[y - 1][x] if y > 0 and x < n - 1: res += board[y - 1][x + 1] if x > 0: res += board[y][x - 1] if res < 4 and x < n - 1: res += board[y][x + 1] if res < 4 and y < m - 1 and x > 0: res += board[y + 1][x - 1] if res < 4 and y < m - 1: res += board[y + 1][x] if res < 4 and y < m - 1 and x < n - 1: res += board[y + 1][x + 1] return res def change_status(summ_conn, status): """ This function determine status of the cell """ if status == 1: if summ_conn == 2 or summ_conn == 3: return 1 else: return 0 else: if summ_conn == 3: return 1 else: return 0 def print_status_cell(board): status_cell = [0, 0] for i in board: for cell in i: if cell == 1: status_cell[0] += 1 else: status_cell[1] += 1 print("Cell alive = {}\nCell died = {}".format(status_cell[0], status_cell[1])) def print_board(board, cases, status_cell): mass = [] for j, i in enumerate(board): mass.append(i) print(*mass[j]) if cases != 0: print("Cell alive = {}\nCell died = {}".format(status_cell[0], status_cell[1])) if cases == 1: print("No more changes on board") if cases == 2: print("Program ended") def check_board(board, m, n): """ This function changes state of the board and counts alive cells """ changes = False status_cell = [0, 0] for i in range(m): for j in range(n): summ_conn = summ_connections(board, i, j, m, n) prev = board[i][j] board[i][j] = change_status(summ_conn, board[i][j]) if prev != board[i][j]: changes = True if board[i][j] == 1: status_cell[0] += 1 else: status_cell[1] += 1 return board, changes, status_cell def programm(board_size, flag_p, path): """ This function is responsible for displaying status of the board. If there is no changes on board program will close """ if not flag_p: board, m, n = generate_board(board_size[0], board_size[1]) else: board, m, n = create_from_path(path) status_cell = [0, 0] print_board(board, 0, status_cell) print_status_cell(board) changes = True try: while changes: time.sleep(1) board, changes, status_cell = check_board(board, m, n) if changes == True: print_board(board, 3, status_cell) else: print_board(board, 1, status_cell) except KeyboardInterrupt: print_board(board, 2, status_cell) def check_arg(arg): try: if int(arg) < 1: raise Exception for i in arg: if not i.isdigit(): raise Exception except: print_usage(1) return True def validating(): board_size = [0, 0] count = 0 flag_p, flag_no_path, count, path = False, False, 0, "" if len(sys.argv) < 3: print("No arguments") exit(1) for i in range(1, len(sys.argv)): if count > 1: print_usage(2) elif i == "-help": print_usage(0) elif sys.argv[i] == "-p": if flag_no_path == True: print_usage(4) elif i + 1 == len(sys.argv) - 1: flag_p = True path = sys.argv[i + 1] break else: print_usage(0) elif check_arg(sys.argv[i]): if flag_p == True: print_usage(4) flag_no_path = True board_size[count] = int(sys.argv[i]) count += 1 else: print_usage(0) return board_size, flag_p, path def main(): board_size, flag_p, path = validating() programm(board_size, flag_p, path) if __name__ == '__main__': main()
077fa8b5db26b02abb818582046ec268a8d0215b
9b9a02657812ea0cb47db0ae411196f0e81c5152
/repoData/danfolkes-Magnet2Torrent/allPythonContent.py
0beca59a21a4fb5422f36851ab3bc50601572d49
[]
no_license
aCoffeeYin/pyreco
cb42db94a3a5fc134356c9a2a738a063d0898572
0ac6653219c2701c13c508c5c4fc9bc3437eea06
refs/heads/master
2020-12-14T14:10:05.763693
2016-06-27T05:15:15
2016-06-27T05:15:15
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,287
py
__FILENAME__ = Magnet_To_Torrent2 #!/usr/bin/env python ''' Created on Apr 19, 2012 @author: dan, Faless GNU GENERAL PUBLIC LICENSE - Version 3 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. http://www.gnu.org/licenses/gpl-3.0.txt ''' import shutil import tempfile import os.path as pt import sys import libtorrent as lt from time import sleep def magnet2torrent(magnet, output_name=None): if output_name and \ not pt.isdir(output_name) and \ not pt.isdir(pt.dirname(pt.abspath(output_name))): print("Invalid output folder: " + pt.dirname(pt.abspath(output_name))) print("") sys.exit(0) tempdir = tempfile.mkdtemp() ses = lt.session() params = { 'save_path': tempdir, 'duplicate_is_error': True, 'storage_mode': lt.storage_mode_t(2), 'paused': False, 'auto_managed': True, 'duplicate_is_error': True } handle = lt.add_magnet_uri(ses, magnet, params) print("Downloading Metadata (this may take a while)") while (not handle.has_metadata()): try: sleep(1) except KeyboardInterrupt: print("Aborting...") ses.pause() print("Cleanup dir " + tempdir) shutil.rmtree(tempdir) sys.exit(0) ses.pause() print("Done") torinfo = handle.get_torrent_info() torfile = lt.create_torrent(torinfo) output = pt.abspath(torinfo.name() + ".torrent") if output_name: if pt.isdir(output_name): output = pt.abspath(pt.join( output_name, torinfo.name() + ".torrent")) elif pt.isdir(pt.dirname(pt.abspath(output_name))): output = pt.abspath(output_name) print("Saving torrent file here : " + output + " ...") torcontent = lt.bencode(torfile.generate()) f = open(output, "wb") f.write(lt.bencode(torfile.generate())) f.close() print("Saved! Cleaning up dir: " + tempdir) ses.remove_torrent(handle) shutil.rmtree(tempdir) return output def showHelp(): print("") print("USAGE: " + pt.basename(sys.argv[0]) + " MAGNET [OUTPUT]") print(" MAGNET\t- the magnet url") print(" OUTPUT\t- the output torrent file name") print("") def main(): if len(sys.argv) < 2: showHelp() sys.exit(0) magnet = sys.argv[1] output_name = None if len(sys.argv) >= 3: output_name = sys.argv[2] magnet2torrent(magnet, output_name) if __name__ == "__main__": main() ########NEW FILE########
5199557c64e8efc44c6c09dfeb7a9589f570a1b3
ddcc3a61898229381300e6e23e43ef7eb3ecec73
/rancher2.py
43e0db84efec15d90fa9e82b65069a5aea73ae67
[]
no_license
gespi1/scripies
971a7aeab6f7ee40c02e7b673539f7213e00c764
1f321e8010e419f7be1f7994d01930213bd48178
refs/heads/master
2023-08-25T03:47:29.194424
2021-10-03T14:51:28
2021-10-03T14:51:28
146,621,321
0
0
null
null
null
null
UTF-8
Python
false
false
1,372
py
import requests import json import argparse parser = argparse.ArgumentParser(description='finds the volume ID for a persistent volume claim') parser.add_argument('--project', required=True, help='name of the project') parser.add_argument('--namespace', required=True, help='name of the namespace within project') parser.add_argument('--claimspace', required=True, help='name of claim space within namespace') parser.add_argument('--token', required=True, help='api token of rancher 2.0 user') args = parser.parse_args() token = args.token project_name = args.project project_id = "" namespace = args.namespace claim_space = args.claimspace claim_space_id = namespace + ':' + claim_space volume_id = "" headers = { "Content-Type": "application/json", "Authorization": "Bearer {}".format(token) } response = requests.get("https://devkube.greathealthworks.com/v3/projects", headers=headers) projects = json.loads(response.text) for project in projects["data"]: if project_name == project["name"]: project_id = project["id"] response = requests.get("https://devkube.greathealthworks.com/v3/projects/{}/persistentvolumeclaims".format(project_id), headers=headers) volumes = json.loads(response.text)["data"] for volume in volumes: if claim_space_id == volume['id']: volume_id = volume["volumeId"] print volume_id
7e04c1a3e47a0a3b89d53db7ec53b1b48c02ba06
7084600cd442ff13438e56e2ac81f40ff943c1a1
/tendenci/addons/campaign_monitor/tasks.py
6602b1370ec42638efe2fd4d448d3d89c8db7dba
[]
no_license
legutierr/tendenci
16989422c96dc4b542710db130113b81bfe4b7c0
7f5c9ab16e23b0de40a7a803b90306bdc31736a2
refs/heads/master
2021-01-16T21:52:35.751347
2012-09-27T18:45:26
2012-09-27T23:36:04
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,466
py
from celery.task import Task from celery.registry import tasks from django.contrib import messages from django.shortcuts import redirect from createsend import Template as CST from tendenci.core.site_settings.utils import get_setting class CampaignGenerateTask(Task): def run(self, template, **kwargs): #set up urls site_url = get_setting('site', 'global', 'siteurl') html_url = unicode("%s%s"%(site_url, template.get_html_url())) html_url += "?jump_links=%s" % form.cleaned_data.get('jump_links') try: from tendenci.addons.events.models import Event, Type html_url += "&events=%s" % form.cleaned_data.get('events') html_url += "&events_type=%s" % form.cleaned_data.get('events_type') html_url += "&event_start_dt=%s" % form.cleaned_data.get('event_start_dt', '') html_url += "&event_end_dt=%s" % form.cleaned_data.get('event_end_dt', '') except ImportError: pass html_url += "&articles=%s" % form.cleaned_data.get('articles') html_url += "&articles_days=%s" % form.cleaned_data.get('articles_days') html_url += "&news=%s" % form.cleaned_data.get('news') html_url += "&news_days=%s" % form.cleaned_data.get('news_days') html_url += "&jobs=%s" % form.cleaned_data.get('jobs') html_url += "&jobs_days=%s" % form.cleaned_data.get('jobs_days') html_url += "&pages=%s" % form.cleaned_data.get('pages') html_url += "&pages_days=%s" % form.cleaned_data.get('pages_days') if template.zip_file: if hasattr(settings, 'USE_S3_STORAGE') and settings.USE_S3_STORAGE: zip_url = unicode(template.get_zip_url()) else: zip_url = unicode("%s%s"%(site_url, template.get_zip_url())) else: zip_url = unicode() #sync with campaign monitor try: t = CST(template_id = template.template_id) t.update(unicode(template.name), html_url, zip_url) except BadRequest, e: messages.add_message(request, messages.ERROR, 'Bad Request %s: %s' % (e.data.Code, e.data.Message)) return redirect('campaign_monitor.campaign_generate') except Exception, e: messages.add_message(request, messages.ERROR, 'Error: %s' % e) return redirect('campaign_monitor.campaign_generate') tasks.register(CampaignGenerateTask)
d65acbb13cc247e4ebe4347446bc3a48b0474403
c9ee704b92fa0f32aa15a761ffa68569cb192544
/13.py
c94e9eea06974fb45a02bb5e60b1c1546b1cb33f
[]
no_license
projecteuler123/projecteuler123
0822cce85bb95be6a82523be852437f6fa63e39d
bfc6c868ba038b209df09a9fc995ae1a381561f4
refs/heads/master
2020-03-31T05:58:28.364912
2018-12-03T03:07:19
2018-12-03T03:07:19
151,963,724
0
0
null
null
null
null
UTF-8
Python
false
false
5,295
py
a="""37107287533902102798797998220837590246510135740250 46376937677490009712648124896970078050417018260538 74324986199524741059474233309513058123726617309629 91942213363574161572522430563301811072406154908250 23067588207539346171171980310421047513778063246676 89261670696623633820136378418383684178734361726757 28112879812849979408065481931592621691275889832738 44274228917432520321923589422876796487670272189318 47451445736001306439091167216856844588711603153276 70386486105843025439939619828917593665686757934951 62176457141856560629502157223196586755079324193331 64906352462741904929101432445813822663347944758178 92575867718337217661963751590579239728245598838407 58203565325359399008402633568948830189458628227828 80181199384826282014278194139940567587151170094390 35398664372827112653829987240784473053190104293586 86515506006295864861532075273371959191420517255829 71693888707715466499115593487603532921714970056938 54370070576826684624621495650076471787294438377604 53282654108756828443191190634694037855217779295145 36123272525000296071075082563815656710885258350721 45876576172410976447339110607218265236877223636045 17423706905851860660448207621209813287860733969412 81142660418086830619328460811191061556940512689692 51934325451728388641918047049293215058642563049483 62467221648435076201727918039944693004732956340691 15732444386908125794514089057706229429197107928209 55037687525678773091862540744969844508330393682126 18336384825330154686196124348767681297534375946515 80386287592878490201521685554828717201219257766954 78182833757993103614740356856449095527097864797581 16726320100436897842553539920931837441497806860984 48403098129077791799088218795327364475675590848030 87086987551392711854517078544161852424320693150332 59959406895756536782107074926966537676326235447210 69793950679652694742597709739166693763042633987085 41052684708299085211399427365734116182760315001271 65378607361501080857009149939512557028198746004375 35829035317434717326932123578154982629742552737307 94953759765105305946966067683156574377167401875275 88902802571733229619176668713819931811048770190271 25267680276078003013678680992525463401061632866526 36270218540497705585629946580636237993140746255962 24074486908231174977792365466257246923322810917141 91430288197103288597806669760892938638285025333403 34413065578016127815921815005561868836468420090470 23053081172816430487623791969842487255036638784583 11487696932154902810424020138335124462181441773470 63783299490636259666498587618221225225512486764533 67720186971698544312419572409913959008952310058822 95548255300263520781532296796249481641953868218774 76085327132285723110424803456124867697064507995236 37774242535411291684276865538926205024910326572967 23701913275725675285653248258265463092207058596522 29798860272258331913126375147341994889534765745501 18495701454879288984856827726077713721403798879715 38298203783031473527721580348144513491373226651381 34829543829199918180278916522431027392251122869539 40957953066405232632538044100059654939159879593635 29746152185502371307642255121183693803580388584903 41698116222072977186158236678424689157993532961922 62467957194401269043877107275048102390895523597457 23189706772547915061505504953922979530901129967519 86188088225875314529584099251203829009407770775672 11306739708304724483816533873502340845647058077308 82959174767140363198008187129011875491310547126581 97623331044818386269515456334926366572897563400500 42846280183517070527831839425882145521227251250327 55121603546981200581762165212827652751691296897789 32238195734329339946437501907836945765883352399886 75506164965184775180738168837861091527357929701337 62177842752192623401942399639168044983993173312731 32924185707147349566916674687634660915035914677504 99518671430235219628894890102423325116913619626622 73267460800591547471830798392868535206946944540724 76841822524674417161514036427982273348055556214818 97142617910342598647204516893989422179826088076852 87783646182799346313767754307809363333018982642090 10848802521674670883215120185883543223812876952786 71329612474782464538636993009049310363619763878039 62184073572399794223406235393808339651327408011116 66627891981488087797941876876144230030984490851411 60661826293682836764744779239180335110989069790714 85786944089552990653640447425576083659976645795096 66024396409905389607120198219976047599490197230297 64913982680032973156037120041377903785566085089252 16730939319872750275468906903707539413042652315011 94809377245048795150954100921645863754710598436791 78639167021187492431995700641917969777599028300699 15368713711936614952811305876380278410754449733078 40789923115535562561142322423255033685442488917353 44889911501440648020369068063960672322193204149535 41503128880339536053299340368006977710650566631954 81234880673210146739058568557934581403627822703280 82616570773948327592232845941706525094512325230608 22918802058777319719839450180888072429661980811197 77158542502016545090413245809786882778948721859617 72107838435069186155435662884062257473692284509516 20849603980134001723930671666823555245252804609722 53503534226472524250874054075591789781264330331690""".split() sum = 0 for n in a: sum += int(str(n)[0:11]) print(str(sum)[0:10])
710c30670b96b69fcbbe860faf68e239f623e14e
15eca1cdc59b02c432ef445b37661f0a0151d13d
/quiz/admin.py
4d46300e2c55298c3006a97019acd3170a161aa5
[ "MIT" ]
permissive
raksa/django-quickstart
cf27e3396f7b18a53fb48744a2b93eb0bdea8e62
ff3ca34662b0adca4ffb29cfa8f871d861053bf3
refs/heads/master
2022-12-20T20:41:18.016138
2019-08-09T07:38:38
2019-08-09T07:38:38
191,318,909
0
0
null
2022-12-08T05:14:49
2019-06-11T07:36:41
Python
UTF-8
Python
false
false
275
py
from django.contrib import admin from . import models as m @admin.register(m.Question) class QuestionAdmin(admin.ModelAdmin): list_display = ('question_text',) @admin.register(m.Choice) class ChoiceAdmin(admin.ModelAdmin): list_display = ('choice_text', 'votes')
f9c8be44958d2e203e046c76d6dfb7572522327f
1c59524a45a5859d1bff39f83f7b4e6b2f9fdfbb
/lib/mAP/mAP.py
78f5e3d6d62f015872801f3a79c328360dc00c04
[]
no_license
fendaq/Arithmetic_Func_detection_for_CTPN
d62087547e863f22df4c219ddd616ced4103a42b
2bf6e05cd706189918ef892666d151894a049fad
refs/heads/master
2020-03-30T04:17:10.971584
2018-09-28T09:48:27
2018-09-28T09:48:27
150,734,626
2
0
null
2018-09-28T12:05:15
2018-09-28T12:05:15
null
UTF-8
Python
false
false
26,963
py
import glob import json import os import shutil import operator import sys import argparse MINOVERLAP = 0.5 # default value (defined in the PASCAL VOC2012 challenge) parser = argparse.ArgumentParser() parser.add_argument('-na', '--no-animation', help="no animation is shown.", action="store_true") parser.add_argument('-np', '--no-plot', help="no plot is shown.", action="store_true") parser.add_argument('-q', '--quiet', help="minimalistic console output.", action="store_true") # argparse receiving list of classes to be ignored parser.add_argument('-i', '--ignore', nargs='+', type=str, help="ignore a list of classes.") # argparse receiving list of classes with specific IoU parser.add_argument('--set-class-iou', nargs='+', type=str, help="set IoU for a specific class.") args = parser.parse_args() # if there are no classes to ignore then replace None by empty list if args.ignore is None: args.ignore = [] specific_iou_flagged = False if args.set_class_iou is not None: specific_iou_flagged = True # if there are no images then no animation can be shown img_path = 'data/val_img' if os.path.exists(img_path): for dirpath, dirnames, files in os.walk(img_path): if not files: # no image files found args.no_animation = True else: args.no_animation = True # try to import OpenCV if the user didn't choose the option --no-animation show_animation = False if not args.no_animation: try: import cv2 show_animation = True except ImportError: print("\"opencv-python\" not found, please install to visualize the results.") args.no_animation = True # try to import Matplotlib if the user didn't choose the option --no-plot draw_plot = False if not args.no_plot: try: import matplotlib.pyplot as plt draw_plot = True except ImportError: print("\"matplotlib\" not found, please install it to get the resulting plots.") args.no_plot = True """ throw error and exit """ def error(msg): print(msg) sys.exit(0) """ check if the number is a float between 0.0 and 1.0 """ def is_float_between_0_and_1(value): try: val = float(value) if val > 0.0 and val < 1.0: return True else: return False except ValueError: return False """ Calculate the AP given the recall and precision array 1st) We compute a version of the measured precision/recall curve with precision monotonically decreasing 2nd) We compute the AP as the area under this curve by numerical integration. """ def voc_ap(rec, prec): """ --- Official matlab code VOC2012--- mrec=[0 ; rec ; 1]; mpre=[0 ; prec ; 0]; for i=numel(mpre)-1:-1:1 mpre(i)=max(mpre(i),mpre(i+1)); end i=find(mrec(2:end)~=mrec(1:end-1))+1; ap=sum((mrec(i)-mrec(i-1)).*mpre(i)); """ rec.insert(0, 0.0) # insert 0.0 at begining of list rec.append(1.0) # insert 1.0 at end of list mrec = rec[:] prec.insert(0, 0.0) # insert 0.0 at begining of list prec.append(0.0) # insert 0.0 at end of list mpre = prec[:] """ This part makes the precision monotonically decreasing (goes from the end to the beginning) matlab: for i=numel(mpre)-1:-1:1 mpre(i)=max(mpre(i),mpre(i+1)); """ # matlab indexes start in 1 but python in 0, so I have to do: # range(start=(len(mpre) - 2), end=0, step=-1) # also the python function range excludes the end, resulting in: # range(start=(len(mpre) - 2), end=-1, step=-1) for i in range(len(mpre)-2, -1, -1): mpre[i] = max(mpre[i], mpre[i+1]) """ This part creates a list of indexes where the recall changes matlab: i=find(mrec(2:end)~=mrec(1:end-1))+1; """ i_list = [] for i in range(1, len(mrec)): if mrec[i] != mrec[i-1]: i_list.append(i) # if it was matlab would be i + 1 """ The Average Precision (AP) is the area under the curve (numerical integration) matlab: ap=sum((mrec(i)-mrec(i-1)).*mpre(i)); """ ap = 0.0 for i in i_list: ap += ((mrec[i]-mrec[i-1])*mpre[i]) return ap, mrec, mpre """ Convert the lines of a file to a list """ def file_lines_to_list(path): # open txt file lines to a list with open(path) as f: content = f.readlines() # remove whitespace characters like `\n` at the end of each line content = [x.strip() for x in content] return content """ Draws text in image """ def draw_text_in_image(img, text, pos, color, line_width): font = cv2.FONT_HERSHEY_PLAIN fontScale = 1 lineType = 1 bottomLeftCornerOfText = pos cv2.putText(img, text, bottomLeftCornerOfText, font, fontScale, color, lineType) text_width, _ = cv2.getTextSize(text, font, fontScale, lineType)[0] return img, (line_width + text_width) """ Plot - adjust axes """ def adjust_axes(r, t, fig, axes): # get text width for re-scaling bb = t.get_window_extent(renderer=r) text_width_inches = bb.width / fig.dpi # get axis width in inches current_fig_width = fig.get_figwidth() new_fig_width = current_fig_width + text_width_inches propotion = new_fig_width / current_fig_width # get axis limit x_lim = axes.get_xlim() axes.set_xlim([x_lim[0], x_lim[1]*propotion]) """ Draw plot using Matplotlib """ def draw_plot_func(dictionary, n_classes, window_title, plot_title, x_label, output_path, to_show, plot_color, true_p_bar): # sort the dictionary by decreasing value, into a list of tuples sorted_dic_by_value = sorted(dictionary.items(), key=operator.itemgetter(1)) # unpacking the list of tuples into two lists sorted_keys, sorted_values = zip(*sorted_dic_by_value) # if true_p_bar != "": """ Special case to draw in (green=true predictions) & (red=false predictions) """ fp_sorted = [] tp_sorted = [] for key in sorted_keys: fp_sorted.append(dictionary[key] - true_p_bar[key]) tp_sorted.append(true_p_bar[key]) plt.barh(range(n_classes), fp_sorted, align='center', color='crimson', label='False Predictions') plt.barh(range(n_classes), tp_sorted, align='center', color='forestgreen', label='True Predictions', left=fp_sorted) # add legend plt.legend(loc='lower right') """ Write number on side of bar """ fig = plt.gcf() # gcf - get current figure axes = plt.gca() r = fig.canvas.get_renderer() for i, val in enumerate(sorted_values): fp_val = fp_sorted[i] tp_val = tp_sorted[i] fp_str_val = " " + str(fp_val) tp_str_val = fp_str_val + " " + str(tp_val) # trick to paint multicolor with offset: # first paint everything and then repaint the first number t = plt.text(val, i, tp_str_val, color='forestgreen', va='center', fontweight='bold') plt.text(val, i, fp_str_val, color='crimson', va='center', fontweight='bold') if i == (len(sorted_values)-1): # largest bar adjust_axes(r, t, fig, axes) else: plt.barh(range(n_classes), sorted_values, color=plot_color) """ Write number on side of bar """ fig = plt.gcf() # gcf - get current figure axes = plt.gca() r = fig.canvas.get_renderer() for i, val in enumerate(sorted_values): str_val = " " + str(val) # add a space before if val < 1.0: str_val = " {0:.2f}".format(val) t = plt.text(val, i, str_val, color=plot_color, va='center', fontweight='bold') # re-set axes to show number inside the figure if i == (len(sorted_values)-1): # largest bar adjust_axes(r, t, fig, axes) # set window title fig.canvas.set_window_title(window_title) # write classes in y axis tick_font_size = 12 plt.yticks(range(n_classes), sorted_keys, fontsize=tick_font_size) """ Re-scale height accordingly """ init_height = fig.get_figheight() # comput the matrix height in points and inches dpi = fig.dpi height_pt = n_classes * (tick_font_size * 1.4) # 1.4 (some spacing) height_in = height_pt / dpi # compute the required figure height top_margin = 0.15 # in percentage of the figure height bottom_margin = 0.05 # in percentage of the figure height figure_height = height_in / (1 - top_margin - bottom_margin) # set new height if figure_height > init_height: fig.set_figheight(figure_height) # set plot title plt.title(plot_title, fontsize=14) # set axis titles # plt.xlabel('classes') plt.xlabel(x_label, fontsize='large') # adjust size of window fig.tight_layout() # save the plot fig.savefig(output_path) # show image if to_show: plt.show() # close the plot plt.close() """ Create a "tmp_files/" and "results/" directory """ tmp_files_path = "data/mAP/tmp_files" if not os.path.exists(tmp_files_path): # if it doesn't exist already os.makedirs(tmp_files_path) results_files_path = "data/mAP/results" if os.path.exists(results_files_path): # if it exist already # reset the results directory shutil.rmtree(results_files_path) os.makedirs(results_files_path) if draw_plot: os.makedirs(results_files_path + "/classes") if show_animation: os.makedirs(results_files_path + "/images") """ Ground-Truth Load each of the ground-truth files into a temporary ".json" file. Create a list of all the class names present in the ground-truth (gt_classes). """ # get a list with the ground-truth files ground_truth_files_list = glob.glob('data/mAP/ground_truth/*.txt') if len(ground_truth_files_list) == 0: error("Error: No ground-truth files found!") ground_truth_files_list.sort() # dictionary with counter per class gt_counter_per_class = {} for txt_file in ground_truth_files_list: #print(txt_file) file_id = txt_file.split(".txt",1)[0] file_id = os.path.basename(os.path.normpath(file_id)) # check if there is a correspondent predicted objects file if not os.path.exists('data/mAP/predicted/' + file_id + ".txt"): error_msg = "Error. File not found: predicted/" + file_id + ".txt\n" error_msg += "(You can avoid this error message by running extra/intersect-gt-and-pred.py)" error(error_msg) lines_list = file_lines_to_list(txt_file) # create ground-truth dictionary bounding_boxes = [] is_difficult = False for line in lines_list: try: if "difficult" in line: class_name, left, top, right, bottom, _difficult = line.split() is_difficult = True else: class_name, left, top, right, bottom = line.split() except ValueError: error_msg = "Error: File " + txt_file + " in the wrong format.\n" error_msg += " Expected: <class_name> <left> <top> <right> <bottom> ['difficult']\n" error_msg += " Received: " + line error_msg += "\n\nIf you have a <class_name> with spaces between words you should remove them\n" error_msg += "by running the script \"remove_space.py\" or \"rename_class.py\" in the \"extra/\" folder." error(error_msg) # check if class is in the ignore list, if yes skip if class_name in args.ignore: continue bbox = left + " " + top + " " + right + " " +bottom if is_difficult: bounding_boxes.append({"class_name":class_name, "bbox":bbox, "used":False, "difficult":True}) is_difficult = False else: bounding_boxes.append({"class_name":class_name, "bbox":bbox, "used":False}) # count that object if class_name in gt_counter_per_class: gt_counter_per_class[class_name] += 1 else: # if class didn't exist yet gt_counter_per_class[class_name] = 1 # dump bounding_boxes into a ".json" file with open(tmp_files_path + "/" + file_id + "_ground_truth.json", 'w') as outfile: json.dump(bounding_boxes, outfile) gt_classes = list(gt_counter_per_class.keys()) # let's sort the classes alphabetically gt_classes = sorted(gt_classes) n_classes = len(gt_classes) #print(gt_classes) #print(gt_counter_per_class) """ Check format of the flag --set-class-iou (if used) e.g. check if class exists """ if specific_iou_flagged: n_args = len(args.set_class_iou) error_msg = \ '\n --set-class-iou [class_1] [IoU_1] [class_2] [IoU_2] [...]' if n_args % 2 != 0: error('Error, missing arguments. Flag usage:' + error_msg) # [class_1] [IoU_1] [class_2] [IoU_2] # specific_iou_classes = ['class_1', 'class_2'] specific_iou_classes = args.set_class_iou[::2] # even # iou_list = ['IoU_1', 'IoU_2'] iou_list = args.set_class_iou[1::2] # odd if len(specific_iou_classes) != len(iou_list): error('Error, missing arguments. Flag usage:' + error_msg) for tmp_class in specific_iou_classes: if tmp_class not in gt_classes: error('Error, unknown class \"' + tmp_class + '\". Flag usage:' + error_msg) for num in iou_list: if not is_float_between_0_and_1(num): error('Error, IoU must be between 0.0 and 1.0. Flag usage:' + error_msg) """ Predicted Load each of the predicted files into a temporary ".json" file. """ # get a list with the predicted files predicted_files_list = glob.glob('data/mAP/predicted/*.txt') predicted_files_list.sort() for class_index, class_name in enumerate(gt_classes): bounding_boxes = [] for txt_file in predicted_files_list: #print(txt_file) # the first time it checks if all the corresponding ground-truth files exist file_id = txt_file.split(".txt",1)[0] file_id = os.path.basename(os.path.normpath(file_id)) if class_index == 0: if not os.path.exists('data/mAP/ground_truth/' + file_id + ".txt"): error_msg = "Error. File not found: ground-truth/" + file_id + ".txt\n" error_msg += "(You can avoid this error message by running extra/intersect-gt-and-pred.py)" error(error_msg) lines = file_lines_to_list(txt_file) for line in lines: try: tmp_class_name, confidence, left, top, right, bottom = line.split() except ValueError: error_msg = "Error: File " + txt_file + " in the wrong format.\n" error_msg += " Expected: <class_name> <confidence> <left> <top> <right> <bottom>\n" error_msg += " Received: " + line error(error_msg) if tmp_class_name == class_name: #print("match") bbox = left + " " + top + " " + right + " " +bottom bounding_boxes.append({"confidence":confidence, "file_id":file_id, "bbox":bbox}) #print(bounding_boxes) # sort predictions by decreasing confidence bounding_boxes.sort(key=lambda x:x['confidence'], reverse=True) with open(tmp_files_path + "/" + class_name + "_predictions.json", 'w') as outfile: json.dump(bounding_boxes, outfile) """ Calculate the AP for each class """ sum_AP = 0.0 ap_dictionary = {} # open file to store the results with open(results_files_path + "/results.txt", 'w') as results_file: results_file.write("# AP and precision/recall per class\n") count_true_positives = {} for class_index, class_name in enumerate(gt_classes): count_true_positives[class_name] = 0 """ Load predictions of that class """ predictions_file = tmp_files_path + "/" + class_name + "_predictions.json" predictions_data = json.load(open(predictions_file)) """ Assign predictions to ground truth objects """ nd = len(predictions_data) tp = [0] * nd # creates an array of zeros of size nd fp = [0] * nd for idx, prediction in enumerate(predictions_data): file_id = prediction["file_id"] if show_animation: # find ground truth image ground_truth_img = glob.glob1(img_path, file_id + ".*") #tifCounter = len(glob.glob1(myPath,"*.tif")) if len(ground_truth_img) == 0: error("Error. Image not found with id: " + file_id) elif len(ground_truth_img) > 1: error("Error. Multiple image with id: " + file_id) else: # found image #print(img_path + "/" + ground_truth_img[0]) # Load image img = cv2.imread(img_path + "/" + ground_truth_img[0]) # Add bottom border to image bottom_border = 60 BLACK = [0, 0, 0] img = cv2.copyMakeBorder(img, 0, bottom_border, 0, 0, cv2.BORDER_CONSTANT, value=BLACK) # assign prediction to ground truth object if any # open ground-truth with that file_id gt_file = tmp_files_path + "/" + file_id + "_ground_truth.json" ground_truth_data = json.load(open(gt_file)) ovmax = -1 gt_match = -1 # load prediction bounding-box bb = [ float(x) for x in prediction["bbox"].split() ] for obj in ground_truth_data: # look for a class_name match if obj["class_name"] == class_name: bbgt = [ float(x) for x in obj["bbox"].split() ] bi = [max(bb[0],bbgt[0]), max(bb[1],bbgt[1]), min(bb[2],bbgt[2]), min(bb[3],bbgt[3])] iw = bi[2] - bi[0] + 1 ih = bi[3] - bi[1] + 1 if iw > 0 and ih > 0: # compute overlap (IoU) = area of intersection / area of union ua = (bb[2] - bb[0] + 1) * (bb[3] - bb[1] + 1) + (bbgt[2] - bbgt[0] + 1) * (bbgt[3] - bbgt[1] + 1) - iw * ih ov = iw * ih / ua if ov > ovmax: ovmax = ov gt_match = obj # assign prediction as true positive/don't care/false positive if show_animation: status = "NO MATCH FOUND!" # status is only used in the animation # set minimum overlap min_overlap = MINOVERLAP if specific_iou_flagged: if class_name in specific_iou_classes: index = specific_iou_classes.index(class_name) min_overlap = float(iou_list[index]) if ovmax >= min_overlap: if "difficult" not in gt_match: if not bool(gt_match["used"]): # true positive tp[idx] = 1 gt_match["used"] = True count_true_positives[class_name] += 1 # update the ".json" file with open(gt_file, 'w') as f: f.write(json.dumps(ground_truth_data)) if show_animation: status = "MATCH!" else: # false positive (multiple detection) fp[idx] = 1 if show_animation: status = "REPEATED MATCH!" else: # false positive fp[idx] = 1 if ovmax > 0: status = "INSUFFICIENT OVERLAP" """ Draw image to show animation """ if show_animation: height, widht = img.shape[:2] # colors (OpenCV works with BGR) white = (255,255,255) light_blue = (255,200,100) green = (0,255,0) light_red = (30,30,255) # 1st line margin = 10 v_pos = int(height - margin - (bottom_border / 2)) text = "Image: " + ground_truth_img[0] + " " img, line_width = draw_text_in_image(img, text, (margin, v_pos), white, 0) text = "Class [" + str(class_index) + "/" + str(n_classes) + "]: " + class_name + " " img, line_width = draw_text_in_image(img, text, (margin + line_width, v_pos), light_blue, line_width) if ovmax != -1: color = light_red if status == "INSUFFICIENT OVERLAP": text = "IoU: {0:.2f}% ".format(ovmax*100) + "< {0:.2f}% ".format(min_overlap*100) else: text = "IoU: {0:.2f}% ".format(ovmax*100) + ">= {0:.2f}% ".format(min_overlap*100) color = green img, _ = draw_text_in_image(img, text, (margin + line_width, v_pos), color, line_width) # 2nd line v_pos += int(bottom_border / 2) rank_pos = str(idx+1) # rank position (idx starts at 0) text = "Prediction #rank: " + rank_pos + " confidence: {0:.2f}% ".format(float(prediction["confidence"])*100) img, line_width = draw_text_in_image(img, text, (margin, v_pos), white, 0) color = light_red if status == "MATCH!": color = green text = "Result: " + status + " " img, line_width = draw_text_in_image(img, text, (margin + line_width, v_pos), color, line_width) if ovmax > 0: # if there is intersections between the bounding-boxes bbgt = [ float(x) for x in gt_match["bbox"].split() ] cv2.rectangle(img,(int(bbgt[0]),int(bbgt[1])),(int(bbgt[2]),int(bbgt[3])),light_blue,2) if status == "MATCH!": cv2.rectangle(img,(int(bb[0]),int(bb[1])),(int(bb[2]),int(bb[3])),green,2) else: cv2.rectangle(img,(int(bb[0]),int(bb[1])),(int(bb[2]),int(bb[3])),light_red,2) cv2.imshow("Animation", img) cv2.waitKey(20) # show image for 20 ms # save image to results output_img_path = results_files_path + "/images/" + class_name + "_prediction" + str(idx) + ".jpg" cv2.imwrite(output_img_path, img) #print(tp) # compute precision/recall cumsum = 0 for idx, val in enumerate(fp): fp[idx] += cumsum cumsum += val cumsum = 0 for idx, val in enumerate(tp): tp[idx] += cumsum cumsum += val #print(tp) rec = tp[:] for idx, val in enumerate(tp): rec[idx] = float(tp[idx]) / gt_counter_per_class[class_name] #print(rec) prec = tp[:] for idx, val in enumerate(tp): prec[idx] = float(tp[idx]) / (fp[idx] + tp[idx]) #print(prec) ap, mrec, mprec = voc_ap(rec, prec) sum_AP += ap text = "{0:.2f}%".format(ap*100) + " = " + class_name + " AP " #class_name + " AP = {0:.2f}%".format(ap*100) """ Write to results.txt """ rounded_prec = [ '%.2f' % elem for elem in prec ] rounded_rec = [ '%.2f' % elem for elem in rec ] results_file.write(text + "\n Precision: " + str(rounded_prec) + "\n Recall :" + str(rounded_rec) + "\n\n") if not args.quiet: print(text) ap_dictionary[class_name] = ap """ Draw plot """ if draw_plot: plt.plot(rec, prec, '-o') # add a new penultimate point to the list (mrec[-2], 0.0) # since the last line segment (and respective area) do not affect the AP value area_under_curve_x = mrec[:-1] + [mrec[-2]] + [mrec[-1]] area_under_curve_y = mprec[:-1] + [0.0] + [mprec[-1]] plt.fill_between(area_under_curve_x, 0, area_under_curve_y, alpha=0.2, edgecolor='r') # set window title fig = plt.gcf() # gcf - get current figure fig.canvas.set_window_title('AP ' + class_name) # set plot title plt.title('class: ' + text) #plt.suptitle('This is a somewhat long figure title', fontsize=16) # set axis titles plt.xlabel('Recall') plt.ylabel('Precision') # optional - set axes axes = plt.gca() # gca - get current axes axes.set_xlim([0.0,1.0]) axes.set_ylim([0.0,1.05]) # .05 to give some extra space # Alternative option -> wait for button to be pressed #while not plt.waitforbuttonpress(): pass # wait for key display # Alternative option -> normal display #plt.show() # save the plot fig.savefig(results_files_path + "/classes/" + class_name + ".png") plt.cla() # clear axes for next plot if show_animation: cv2.destroyAllWindows() results_file.write("\n# mAP of all classes\n") mAP = sum_AP / n_classes text = "mAP = {0:.2f}%".format(mAP*100) results_file.write(text + "\n") print(text) # remove the tmp_files directory # shutil.rmtree(tmp_files_path) """ Count total of Predictions """ # iterate through all the files pred_counter_per_class = {} #all_classes_predicted_files = set([]) for txt_file in predicted_files_list: # get lines to list lines_list = file_lines_to_list(txt_file) for line in lines_list: class_name = line.split()[0] # check if class is in the ignore list, if yes skip if class_name in args.ignore: continue # count that object if class_name in pred_counter_per_class: pred_counter_per_class[class_name] += 1 else: # if class didn't exist yet pred_counter_per_class[class_name] = 1 #print(pred_counter_per_class) pred_classes = list(pred_counter_per_class.keys()) """ Plot the total number of occurences of each class in the ground-truth """ if draw_plot: window_title = "Ground-Truth Info" plot_title = "Ground-Truth\n" plot_title += "(" + str(len(ground_truth_files_list)) + " files and " + str(n_classes) + " classes)" x_label = "Number of objects per class" output_path = results_files_path + "/Ground-Truth Info.png" to_show = False plot_color = 'forestgreen' draw_plot_func( gt_counter_per_class, n_classes, window_title, plot_title, x_label, output_path, to_show, plot_color, '', ) """ Write number of ground-truth objects per class to results.txt """ with open(results_files_path + "results.txt", 'a') as results_file: results_file.write("\n# Number of ground-truth objects per class\n") for class_name in sorted(gt_counter_per_class): results_file.write(class_name + ": " + str(gt_counter_per_class[class_name]) + "\n") """ Finish counting true positives """ for class_name in pred_classes: # if class exists in predictions but not in ground-truth then there are no true positives in that class if class_name not in gt_classes: count_true_positives[class_name] = 0 #print(count_true_positives) """ Plot the total number of occurences of each class in the "predicted" folder """ if draw_plot: window_title = "Predicted Objects Info" # Plot title plot_title = "Predicted Objects\n" plot_title += "(" + str(len(predicted_files_list)) + " files and " count_non_zero_values_in_dictionary = sum(int(x) > 0 for x in list(pred_counter_per_class.values())) plot_title += str(count_non_zero_values_in_dictionary) + " detected classes)" # end Plot title x_label = "Number of objects per class" output_path = results_files_path + "/Predicted Objects Info.png" to_show = False plot_color = 'forestgreen' true_p_bar = count_true_positives draw_plot_func( pred_counter_per_class, len(pred_counter_per_class), window_title, plot_title, x_label, output_path, to_show, plot_color, true_p_bar ) """ Write number of predicted objects per class to results.txt """ with open(results_files_path + "/results.txt", 'a') as results_file: results_file.write("\n# Number of predicted objects per class\n") for class_name in sorted(pred_classes): n_pred = pred_counter_per_class[class_name] text = class_name + ": " + str(n_pred) text += " (tp:" + str(count_true_positives[class_name]) + "" text += ", fp:" + str(n_pred - count_true_positives[class_name]) + ")\n" results_file.write(text) """ Draw mAP plot (Show AP's of all classes in decreasing order) """ if draw_plot: window_title = "mAP" plot_title = "mAP = {0:.2f}%".format(mAP*100) x_label = "Average Precision" output_path = results_files_path + "/mAP.png" to_show = True plot_color = 'royalblue' draw_plot_func( ap_dictionary, n_classes, window_title, plot_title, x_label, output_path, to_show, plot_color, "" )
2d54d1dc86dd11ca0fd2da892931be9a65a2636a
51f887286aa3bd2c3dbe4c616ad306ce08976441
/pybind/nos/v6_0_2f/interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/__init__.py
5325359c0954094916091552e54c3c268cbea198
[ "Apache-2.0" ]
permissive
b2220333/pybind
a8c06460fd66a97a78c243bf144488eb88d7732a
44c467e71b2b425be63867aba6e6fa28b2cfe7fb
refs/heads/master
2020-03-18T09:09:29.574226
2018-04-03T20:09:50
2018-04-03T20:09:50
null
0
0
null
null
null
null
UTF-8
Python
false
false
52,828
py
from operator import attrgetter import pyangbind.lib.xpathhelper as xpathhelper from pyangbind.lib.yangtypes import RestrictedPrecisionDecimalType, RestrictedClassType, TypedListType from pyangbind.lib.yangtypes import YANGBool, YANGListType, YANGDynClass, ReferenceType from pyangbind.lib.base import PybindBase from decimal import Decimal from bitarray import bitarray import __builtin__ import virtual_ip import track import short_path_forwarding class vrrpv3e(PybindBase): """ This class was auto-generated by the PythonClass plugin for PYANG from YANG module brocade-interface - based on the path /interface/port-channel/ipv6/hide-vrrpv3-holder/vrrpv3e. Each member element of the container is represented as a class variable - with a specific YANG type. """ __slots__ = ('_pybind_generated_by', '_path_helper', '_yang_name', '_rest_name', '_extmethods', '__vrid','__virtual_ip','__track','__enable','__hold_time','__preempt_mode','__priority','__description','__advertise_backup','__nd_advertisement_timer','__advertisement_interval_scale','__backup_advertisement_interval','__vrrpe_advertisement_interval','__short_path_forwarding',) _yang_name = 'vrrpv3e' _rest_name = 'vrrp-extended-group' _pybind_generated_by = 'container' def __init__(self, *args, **kwargs): path_helper_ = kwargs.pop("path_helper", None) if path_helper_ is False: self._path_helper = False elif path_helper_ is not None and isinstance(path_helper_, xpathhelper.YANGPathHelper): self._path_helper = path_helper_ elif hasattr(self, "_parent"): path_helper_ = getattr(self._parent, "_path_helper", False) self._path_helper = path_helper_ else: self._path_helper = False extmethods = kwargs.pop("extmethods", None) if extmethods is False: self._extmethods = False elif extmethods is not None and isinstance(extmethods, dict): self._extmethods = extmethods elif hasattr(self, "_parent"): extmethods = getattr(self._parent, "_extmethods", None) self._extmethods = extmethods else: self._extmethods = False self.__enable = YANGDynClass(base=YANGBool, is_leaf=True, yang_name="enable", rest_name="enable", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable Session', u'cli-show-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True) self.__description = YANGDynClass(base=RestrictedClassType(base_type=unicode, restriction_dict={'length': [u'1..64']}), is_leaf=True, yang_name="description", rest_name="description", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Interface specific description', u'cli-multi-value': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='string', is_config=True) self.__track = YANGDynClass(base=track.track, is_container='container', presence=False, yang_name="track", rest_name="track", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Interface to be tracked', u'cli-incomplete-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='container', is_config=True) self.__nd_advertisement_timer = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'0..3600']}), is_leaf=True, yang_name="nd-advertisement-timer", rest_name="nd-advertisement-timer", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) self.__advertisement_interval_scale = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..10']}), is_leaf=True, yang_name="advertisement-interval-scale", rest_name="advertisement-interval-scale", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Ipv6 session advertisement interval scale factor <1|2|5|10>'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) self.__vrid = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=int, restriction_dict={'range': ['0..255']}, int_size=8), restriction_dict={'range': [u'1..255']}), is_leaf=True, yang_name="vrid", rest_name="vrid", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'cli-suppress-range': None}}, is_keyval=True, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='vrid-type', is_config=True) self.__advertise_backup = YANGDynClass(base=YANGBool, is_leaf=True, yang_name="advertise-backup", rest_name="advertise-backup", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable periodic backup advertisement messages'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True) self.__short_path_forwarding = YANGDynClass(base=short_path_forwarding.short_path_forwarding, is_container='container', presence=False, yang_name="short-path-forwarding", rest_name="short-path-forwarding", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable backup router to send traffic', u'cli-compact-syntax': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='container', is_config=True) self.__priority = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=int, restriction_dict={'range': ['0..255']}, int_size=8), restriction_dict={'range': [u'1..254']}), is_leaf=True, yang_name="priority", rest_name="priority", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set router priority within virtual router'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint8', is_config=True) self.__virtual_ip = YANGDynClass(base=YANGListType("virtual_ipaddr",virtual_ip.virtual_ip, yang_name="virtual-ip", rest_name="virtual-ip", parent=self, is_container='list', user_ordered=False, path_helper=self._path_helper, yang_keys='virtual-ipaddr', extensions={u'tailf-common': {u'info': u'Set virtual IPv6 address', u'cli-suppress-mode': None, u'cli-suppress-list-no': None, u'cli-full-no': None, u'cli-no-match-completion': None, u'callpoint': u'vrrpv3eVirtualIPPo'}}), is_container='list', yang_name="virtual-ip", rest_name="virtual-ip", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set virtual IPv6 address', u'cli-suppress-mode': None, u'cli-suppress-list-no': None, u'cli-full-no': None, u'cli-no-match-completion': None, u'callpoint': u'vrrpv3eVirtualIPPo'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='list', is_config=True) self.__vrrpe_advertisement_interval = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..255']}), is_leaf=True, yang_name="vrrpe-advertisement-interval", rest_name="advertisement-interval", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set advertisement interval', u'alt-name': u'advertisement-interval'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) self.__hold_time = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..3600']}), is_leaf=True, yang_name="hold-time", rest_name="hold-time", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Configure hold time for this session'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) self.__preempt_mode = YANGDynClass(base=YANGBool, is_leaf=True, yang_name="preempt-mode", rest_name="preempt-mode", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set preempt mode for the session', u'cli-show-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True) self.__backup_advertisement_interval = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'60..3600']}), is_leaf=True, yang_name="backup-advertisement-interval", rest_name="backup-advertisement-interval", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set Backup advertisement interval'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) load = kwargs.pop("load", None) if args: if len(args) > 1: raise TypeError("cannot create a YANG container with >1 argument") all_attr = True for e in self._pyangbind_elements: if not hasattr(args[0], e): all_attr = False break if not all_attr: raise ValueError("Supplied object did not have the correct attributes") for e in self._pyangbind_elements: nobj = getattr(args[0], e) if nobj._changed() is False: continue setmethod = getattr(self, "_set_%s" % e) if load is None: setmethod(getattr(args[0], e)) else: setmethod(getattr(args[0], e), load=load) def _path(self): if hasattr(self, "_parent"): return self._parent._path()+[self._yang_name] else: return [u'interface', u'port-channel', u'ipv6', u'hide-vrrpv3-holder', u'vrrpv3e'] def _rest_path(self): if hasattr(self, "_parent"): if self._rest_name: return self._parent._rest_path()+[self._rest_name] else: return self._parent._rest_path() else: return [u'interface', u'Port-channel', u'ipv6', u'vrrp-extended-group'] def _get_vrid(self): """ Getter method for vrid, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/vrid (vrid-type) """ return self.__vrid def _set_vrid(self, v, load=False): """ Setter method for vrid, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/vrid (vrid-type) If this variable is read-only (config: false) in the source YANG file, then _set_vrid is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_vrid() directly. """ parent = getattr(self, "_parent", None) if parent is not None and load is False: raise AttributeError("Cannot set keys directly when" + " within an instantiated list") if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=RestrictedClassType(base_type=RestrictedClassType(base_type=int, restriction_dict={'range': ['0..255']}, int_size=8), restriction_dict={'range': [u'1..255']}), is_leaf=True, yang_name="vrid", rest_name="vrid", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'cli-suppress-range': None}}, is_keyval=True, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='vrid-type', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """vrid must be of a type compatible with vrid-type""", 'defined-type': "brocade-vrrpv3:vrid-type", 'generated-type': """YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=int, restriction_dict={'range': ['0..255']}, int_size=8), restriction_dict={'range': [u'1..255']}), is_leaf=True, yang_name="vrid", rest_name="vrid", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'cli-suppress-range': None}}, is_keyval=True, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='vrid-type', is_config=True)""", }) self.__vrid = t if hasattr(self, '_set'): self._set() def _unset_vrid(self): self.__vrid = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=int, restriction_dict={'range': ['0..255']}, int_size=8), restriction_dict={'range': [u'1..255']}), is_leaf=True, yang_name="vrid", rest_name="vrid", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'cli-suppress-range': None}}, is_keyval=True, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='vrid-type', is_config=True) def _get_virtual_ip(self): """ Getter method for virtual_ip, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/virtual_ip (list) """ return self.__virtual_ip def _set_virtual_ip(self, v, load=False): """ Setter method for virtual_ip, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/virtual_ip (list) If this variable is read-only (config: false) in the source YANG file, then _set_virtual_ip is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_virtual_ip() directly. """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=YANGListType("virtual_ipaddr",virtual_ip.virtual_ip, yang_name="virtual-ip", rest_name="virtual-ip", parent=self, is_container='list', user_ordered=False, path_helper=self._path_helper, yang_keys='virtual-ipaddr', extensions={u'tailf-common': {u'info': u'Set virtual IPv6 address', u'cli-suppress-mode': None, u'cli-suppress-list-no': None, u'cli-full-no': None, u'cli-no-match-completion': None, u'callpoint': u'vrrpv3eVirtualIPPo'}}), is_container='list', yang_name="virtual-ip", rest_name="virtual-ip", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set virtual IPv6 address', u'cli-suppress-mode': None, u'cli-suppress-list-no': None, u'cli-full-no': None, u'cli-no-match-completion': None, u'callpoint': u'vrrpv3eVirtualIPPo'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='list', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """virtual_ip must be of a type compatible with list""", 'defined-type': "list", 'generated-type': """YANGDynClass(base=YANGListType("virtual_ipaddr",virtual_ip.virtual_ip, yang_name="virtual-ip", rest_name="virtual-ip", parent=self, is_container='list', user_ordered=False, path_helper=self._path_helper, yang_keys='virtual-ipaddr', extensions={u'tailf-common': {u'info': u'Set virtual IPv6 address', u'cli-suppress-mode': None, u'cli-suppress-list-no': None, u'cli-full-no': None, u'cli-no-match-completion': None, u'callpoint': u'vrrpv3eVirtualIPPo'}}), is_container='list', yang_name="virtual-ip", rest_name="virtual-ip", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set virtual IPv6 address', u'cli-suppress-mode': None, u'cli-suppress-list-no': None, u'cli-full-no': None, u'cli-no-match-completion': None, u'callpoint': u'vrrpv3eVirtualIPPo'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='list', is_config=True)""", }) self.__virtual_ip = t if hasattr(self, '_set'): self._set() def _unset_virtual_ip(self): self.__virtual_ip = YANGDynClass(base=YANGListType("virtual_ipaddr",virtual_ip.virtual_ip, yang_name="virtual-ip", rest_name="virtual-ip", parent=self, is_container='list', user_ordered=False, path_helper=self._path_helper, yang_keys='virtual-ipaddr', extensions={u'tailf-common': {u'info': u'Set virtual IPv6 address', u'cli-suppress-mode': None, u'cli-suppress-list-no': None, u'cli-full-no': None, u'cli-no-match-completion': None, u'callpoint': u'vrrpv3eVirtualIPPo'}}), is_container='list', yang_name="virtual-ip", rest_name="virtual-ip", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set virtual IPv6 address', u'cli-suppress-mode': None, u'cli-suppress-list-no': None, u'cli-full-no': None, u'cli-no-match-completion': None, u'callpoint': u'vrrpv3eVirtualIPPo'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='list', is_config=True) def _get_track(self): """ Getter method for track, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/track (container) YANG Description: Interface to be tracked """ return self.__track def _set_track(self, v, load=False): """ Setter method for track, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/track (container) If this variable is read-only (config: false) in the source YANG file, then _set_track is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_track() directly. YANG Description: Interface to be tracked """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=track.track, is_container='container', presence=False, yang_name="track", rest_name="track", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Interface to be tracked', u'cli-incomplete-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='container', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """track must be of a type compatible with container""", 'defined-type': "container", 'generated-type': """YANGDynClass(base=track.track, is_container='container', presence=False, yang_name="track", rest_name="track", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Interface to be tracked', u'cli-incomplete-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='container', is_config=True)""", }) self.__track = t if hasattr(self, '_set'): self._set() def _unset_track(self): self.__track = YANGDynClass(base=track.track, is_container='container', presence=False, yang_name="track", rest_name="track", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Interface to be tracked', u'cli-incomplete-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='container', is_config=True) def _get_enable(self): """ Getter method for enable, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/enable (empty) YANG Description: Enable Session """ return self.__enable def _set_enable(self, v, load=False): """ Setter method for enable, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/enable (empty) If this variable is read-only (config: false) in the source YANG file, then _set_enable is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_enable() directly. YANG Description: Enable Session """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=YANGBool, is_leaf=True, yang_name="enable", rest_name="enable", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable Session', u'cli-show-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """enable must be of a type compatible with empty""", 'defined-type': "empty", 'generated-type': """YANGDynClass(base=YANGBool, is_leaf=True, yang_name="enable", rest_name="enable", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable Session', u'cli-show-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True)""", }) self.__enable = t if hasattr(self, '_set'): self._set() def _unset_enable(self): self.__enable = YANGDynClass(base=YANGBool, is_leaf=True, yang_name="enable", rest_name="enable", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable Session', u'cli-show-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True) def _get_hold_time(self): """ Getter method for hold_time, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/hold_time (uint32) YANG Description: Configure hold time for this session """ return self.__hold_time def _set_hold_time(self, v, load=False): """ Setter method for hold_time, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/hold_time (uint32) If this variable is read-only (config: false) in the source YANG file, then _set_hold_time is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_hold_time() directly. YANG Description: Configure hold time for this session """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..3600']}), is_leaf=True, yang_name="hold-time", rest_name="hold-time", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Configure hold time for this session'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """hold_time must be of a type compatible with uint32""", 'defined-type': "uint32", 'generated-type': """YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..3600']}), is_leaf=True, yang_name="hold-time", rest_name="hold-time", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Configure hold time for this session'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True)""", }) self.__hold_time = t if hasattr(self, '_set'): self._set() def _unset_hold_time(self): self.__hold_time = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..3600']}), is_leaf=True, yang_name="hold-time", rest_name="hold-time", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Configure hold time for this session'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) def _get_preempt_mode(self): """ Getter method for preempt_mode, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/preempt_mode (empty) YANG Description: Set preempt mode for the session """ return self.__preempt_mode def _set_preempt_mode(self, v, load=False): """ Setter method for preempt_mode, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/preempt_mode (empty) If this variable is read-only (config: false) in the source YANG file, then _set_preempt_mode is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_preempt_mode() directly. YANG Description: Set preempt mode for the session """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=YANGBool, is_leaf=True, yang_name="preempt-mode", rest_name="preempt-mode", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set preempt mode for the session', u'cli-show-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """preempt_mode must be of a type compatible with empty""", 'defined-type': "empty", 'generated-type': """YANGDynClass(base=YANGBool, is_leaf=True, yang_name="preempt-mode", rest_name="preempt-mode", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set preempt mode for the session', u'cli-show-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True)""", }) self.__preempt_mode = t if hasattr(self, '_set'): self._set() def _unset_preempt_mode(self): self.__preempt_mode = YANGDynClass(base=YANGBool, is_leaf=True, yang_name="preempt-mode", rest_name="preempt-mode", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set preempt mode for the session', u'cli-show-no': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True) def _get_priority(self): """ Getter method for priority, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/priority (uint8) YANG Description: Set router priority within virtual router """ return self.__priority def _set_priority(self, v, load=False): """ Setter method for priority, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/priority (uint8) If this variable is read-only (config: false) in the source YANG file, then _set_priority is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_priority() directly. YANG Description: Set router priority within virtual router """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=RestrictedClassType(base_type=RestrictedClassType(base_type=int, restriction_dict={'range': ['0..255']}, int_size=8), restriction_dict={'range': [u'1..254']}), is_leaf=True, yang_name="priority", rest_name="priority", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set router priority within virtual router'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint8', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """priority must be of a type compatible with uint8""", 'defined-type': "uint8", 'generated-type': """YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=int, restriction_dict={'range': ['0..255']}, int_size=8), restriction_dict={'range': [u'1..254']}), is_leaf=True, yang_name="priority", rest_name="priority", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set router priority within virtual router'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint8', is_config=True)""", }) self.__priority = t if hasattr(self, '_set'): self._set() def _unset_priority(self): self.__priority = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=int, restriction_dict={'range': ['0..255']}, int_size=8), restriction_dict={'range': [u'1..254']}), is_leaf=True, yang_name="priority", rest_name="priority", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set router priority within virtual router'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint8', is_config=True) def _get_description(self): """ Getter method for description, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/description (string) YANG Description: Interface specific description """ return self.__description def _set_description(self, v, load=False): """ Setter method for description, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/description (string) If this variable is read-only (config: false) in the source YANG file, then _set_description is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_description() directly. YANG Description: Interface specific description """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=RestrictedClassType(base_type=unicode, restriction_dict={'length': [u'1..64']}), is_leaf=True, yang_name="description", rest_name="description", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Interface specific description', u'cli-multi-value': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='string', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """description must be of a type compatible with string""", 'defined-type': "string", 'generated-type': """YANGDynClass(base=RestrictedClassType(base_type=unicode, restriction_dict={'length': [u'1..64']}), is_leaf=True, yang_name="description", rest_name="description", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Interface specific description', u'cli-multi-value': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='string', is_config=True)""", }) self.__description = t if hasattr(self, '_set'): self._set() def _unset_description(self): self.__description = YANGDynClass(base=RestrictedClassType(base_type=unicode, restriction_dict={'length': [u'1..64']}), is_leaf=True, yang_name="description", rest_name="description", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Interface specific description', u'cli-multi-value': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='string', is_config=True) def _get_advertise_backup(self): """ Getter method for advertise_backup, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/advertise_backup (empty) YANG Description: Enable periodic backup advertisement messages """ return self.__advertise_backup def _set_advertise_backup(self, v, load=False): """ Setter method for advertise_backup, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/advertise_backup (empty) If this variable is read-only (config: false) in the source YANG file, then _set_advertise_backup is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_advertise_backup() directly. YANG Description: Enable periodic backup advertisement messages """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=YANGBool, is_leaf=True, yang_name="advertise-backup", rest_name="advertise-backup", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable periodic backup advertisement messages'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """advertise_backup must be of a type compatible with empty""", 'defined-type': "empty", 'generated-type': """YANGDynClass(base=YANGBool, is_leaf=True, yang_name="advertise-backup", rest_name="advertise-backup", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable periodic backup advertisement messages'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True)""", }) self.__advertise_backup = t if hasattr(self, '_set'): self._set() def _unset_advertise_backup(self): self.__advertise_backup = YANGDynClass(base=YANGBool, is_leaf=True, yang_name="advertise-backup", rest_name="advertise-backup", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable periodic backup advertisement messages'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='empty', is_config=True) def _get_nd_advertisement_timer(self): """ Getter method for nd_advertisement_timer, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/nd_advertisement_timer (uint32) """ return self.__nd_advertisement_timer def _set_nd_advertisement_timer(self, v, load=False): """ Setter method for nd_advertisement_timer, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/nd_advertisement_timer (uint32) If this variable is read-only (config: false) in the source YANG file, then _set_nd_advertisement_timer is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_nd_advertisement_timer() directly. """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'0..3600']}), is_leaf=True, yang_name="nd-advertisement-timer", rest_name="nd-advertisement-timer", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """nd_advertisement_timer must be of a type compatible with uint32""", 'defined-type': "uint32", 'generated-type': """YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'0..3600']}), is_leaf=True, yang_name="nd-advertisement-timer", rest_name="nd-advertisement-timer", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True)""", }) self.__nd_advertisement_timer = t if hasattr(self, '_set'): self._set() def _unset_nd_advertisement_timer(self): self.__nd_advertisement_timer = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'0..3600']}), is_leaf=True, yang_name="nd-advertisement-timer", rest_name="nd-advertisement-timer", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) def _get_advertisement_interval_scale(self): """ Getter method for advertisement_interval_scale, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/advertisement_interval_scale (uint32) YANG Description: Ipv6 session advertisement interval scale factor <1|2|5|10> """ return self.__advertisement_interval_scale def _set_advertisement_interval_scale(self, v, load=False): """ Setter method for advertisement_interval_scale, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/advertisement_interval_scale (uint32) If this variable is read-only (config: false) in the source YANG file, then _set_advertisement_interval_scale is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_advertisement_interval_scale() directly. YANG Description: Ipv6 session advertisement interval scale factor <1|2|5|10> """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..10']}), is_leaf=True, yang_name="advertisement-interval-scale", rest_name="advertisement-interval-scale", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Ipv6 session advertisement interval scale factor <1|2|5|10>'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """advertisement_interval_scale must be of a type compatible with uint32""", 'defined-type': "uint32", 'generated-type': """YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..10']}), is_leaf=True, yang_name="advertisement-interval-scale", rest_name="advertisement-interval-scale", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Ipv6 session advertisement interval scale factor <1|2|5|10>'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True)""", }) self.__advertisement_interval_scale = t if hasattr(self, '_set'): self._set() def _unset_advertisement_interval_scale(self): self.__advertisement_interval_scale = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..10']}), is_leaf=True, yang_name="advertisement-interval-scale", rest_name="advertisement-interval-scale", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Ipv6 session advertisement interval scale factor <1|2|5|10>'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) def _get_backup_advertisement_interval(self): """ Getter method for backup_advertisement_interval, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/backup_advertisement_interval (uint32) YANG Description: Set Backup advertisement interval """ return self.__backup_advertisement_interval def _set_backup_advertisement_interval(self, v, load=False): """ Setter method for backup_advertisement_interval, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/backup_advertisement_interval (uint32) If this variable is read-only (config: false) in the source YANG file, then _set_backup_advertisement_interval is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_backup_advertisement_interval() directly. YANG Description: Set Backup advertisement interval """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'60..3600']}), is_leaf=True, yang_name="backup-advertisement-interval", rest_name="backup-advertisement-interval", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set Backup advertisement interval'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """backup_advertisement_interval must be of a type compatible with uint32""", 'defined-type': "uint32", 'generated-type': """YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'60..3600']}), is_leaf=True, yang_name="backup-advertisement-interval", rest_name="backup-advertisement-interval", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set Backup advertisement interval'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True)""", }) self.__backup_advertisement_interval = t if hasattr(self, '_set'): self._set() def _unset_backup_advertisement_interval(self): self.__backup_advertisement_interval = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'60..3600']}), is_leaf=True, yang_name="backup-advertisement-interval", rest_name="backup-advertisement-interval", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set Backup advertisement interval'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) def _get_vrrpe_advertisement_interval(self): """ Getter method for vrrpe_advertisement_interval, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/vrrpe_advertisement_interval (uint32) YANG Description: Set advertisement interval """ return self.__vrrpe_advertisement_interval def _set_vrrpe_advertisement_interval(self, v, load=False): """ Setter method for vrrpe_advertisement_interval, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/vrrpe_advertisement_interval (uint32) If this variable is read-only (config: false) in the source YANG file, then _set_vrrpe_advertisement_interval is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_vrrpe_advertisement_interval() directly. YANG Description: Set advertisement interval """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..255']}), is_leaf=True, yang_name="vrrpe-advertisement-interval", rest_name="advertisement-interval", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set advertisement interval', u'alt-name': u'advertisement-interval'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """vrrpe_advertisement_interval must be of a type compatible with uint32""", 'defined-type': "uint32", 'generated-type': """YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..255']}), is_leaf=True, yang_name="vrrpe-advertisement-interval", rest_name="advertisement-interval", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set advertisement interval', u'alt-name': u'advertisement-interval'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True)""", }) self.__vrrpe_advertisement_interval = t if hasattr(self, '_set'): self._set() def _unset_vrrpe_advertisement_interval(self): self.__vrrpe_advertisement_interval = YANGDynClass(base=RestrictedClassType(base_type=RestrictedClassType(base_type=long, restriction_dict={'range': ['0..4294967295']}, int_size=32), restriction_dict={'range': [u'1..255']}), is_leaf=True, yang_name="vrrpe-advertisement-interval", rest_name="advertisement-interval", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Set advertisement interval', u'alt-name': u'advertisement-interval'}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='uint32', is_config=True) def _get_short_path_forwarding(self): """ Getter method for short_path_forwarding, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/short_path_forwarding (container) YANG Description: Enable backup router to send traffic """ return self.__short_path_forwarding def _set_short_path_forwarding(self, v, load=False): """ Setter method for short_path_forwarding, mapped from YANG variable /interface/port_channel/ipv6/hide_vrrpv3_holder/vrrpv3e/short_path_forwarding (container) If this variable is read-only (config: false) in the source YANG file, then _set_short_path_forwarding is considered as a private method. Backends looking to populate this variable should do so via calling thisObj._set_short_path_forwarding() directly. YANG Description: Enable backup router to send traffic """ if hasattr(v, "_utype"): v = v._utype(v) try: t = YANGDynClass(v,base=short_path_forwarding.short_path_forwarding, is_container='container', presence=False, yang_name="short-path-forwarding", rest_name="short-path-forwarding", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable backup router to send traffic', u'cli-compact-syntax': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='container', is_config=True) except (TypeError, ValueError): raise ValueError({ 'error-string': """short_path_forwarding must be of a type compatible with container""", 'defined-type': "container", 'generated-type': """YANGDynClass(base=short_path_forwarding.short_path_forwarding, is_container='container', presence=False, yang_name="short-path-forwarding", rest_name="short-path-forwarding", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable backup router to send traffic', u'cli-compact-syntax': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='container', is_config=True)""", }) self.__short_path_forwarding = t if hasattr(self, '_set'): self._set() def _unset_short_path_forwarding(self): self.__short_path_forwarding = YANGDynClass(base=short_path_forwarding.short_path_forwarding, is_container='container', presence=False, yang_name="short-path-forwarding", rest_name="short-path-forwarding", parent=self, path_helper=self._path_helper, extmethods=self._extmethods, register_paths=True, extensions={u'tailf-common': {u'info': u'Enable backup router to send traffic', u'cli-compact-syntax': None}}, namespace='urn:brocade.com:mgmt:brocade-vrrpv3', defining_module='brocade-vrrpv3', yang_type='container', is_config=True) vrid = __builtin__.property(_get_vrid, _set_vrid) virtual_ip = __builtin__.property(_get_virtual_ip, _set_virtual_ip) track = __builtin__.property(_get_track, _set_track) enable = __builtin__.property(_get_enable, _set_enable) hold_time = __builtin__.property(_get_hold_time, _set_hold_time) preempt_mode = __builtin__.property(_get_preempt_mode, _set_preempt_mode) priority = __builtin__.property(_get_priority, _set_priority) description = __builtin__.property(_get_description, _set_description) advertise_backup = __builtin__.property(_get_advertise_backup, _set_advertise_backup) nd_advertisement_timer = __builtin__.property(_get_nd_advertisement_timer, _set_nd_advertisement_timer) advertisement_interval_scale = __builtin__.property(_get_advertisement_interval_scale, _set_advertisement_interval_scale) backup_advertisement_interval = __builtin__.property(_get_backup_advertisement_interval, _set_backup_advertisement_interval) vrrpe_advertisement_interval = __builtin__.property(_get_vrrpe_advertisement_interval, _set_vrrpe_advertisement_interval) short_path_forwarding = __builtin__.property(_get_short_path_forwarding, _set_short_path_forwarding) _pyangbind_elements = {'vrid': vrid, 'virtual_ip': virtual_ip, 'track': track, 'enable': enable, 'hold_time': hold_time, 'preempt_mode': preempt_mode, 'priority': priority, 'description': description, 'advertise_backup': advertise_backup, 'nd_advertisement_timer': nd_advertisement_timer, 'advertisement_interval_scale': advertisement_interval_scale, 'backup_advertisement_interval': backup_advertisement_interval, 'vrrpe_advertisement_interval': vrrpe_advertisement_interval, 'short_path_forwarding': short_path_forwarding, }
610f28250abaf9af175a94307bc6a7f7ee042213
7aaa07473630e113126779ca06feee0f38284c0e
/000_DOC/scripts_curso_ice/leo_linea.py
6964e0d4ee8c7ea0b7367515a70f00a0da3e5163
[]
no_license
angellinares/GEN_ALG_PY
10c7a8d8e0c3b1286827f6d70af209c16f884d0d
5f86e3171303f9cb1358e2944310a184151d80d2
refs/heads/master
2021-01-10T13:50:37.850627
2015-10-27T18:27:36
2015-10-27T18:27:36
45,052,412
0
0
null
null
null
null
UTF-8
Python
false
false
571
py
import timeit fichero = open("texto.txt", 'r') lineas = fichero.readlines() # leo el fichero de golpe print lineas for i, k in enumerate(lineas): if i == 2: lin = k.split(',') print "primer valor %d" % int(lin[0]) # si no lo convierto en entero me da error porque lo considera una cadena print "segundo valor %d" % int(lin[1]) print "tercer valor %d" % int(lin[2]) # ejercicio, obtener el penultimo valor de la 4 fila for i, k in enumerate(lineas): if i==3: lin = k.split(",") print "Penultimo valor de la fila 4: %d" %int(lin[3]) timeit.timeit()
4021f6ccb782ce07395d7c0a57af4745e9314937
395a4cdd8ce93181199901755a60aed30feabce0
/flask/bin/coverage
b6a50b476e47d10c218ea3d4cccdfb09a2f85611
[]
no_license
jlrosa/eserv_auth
61987cb1a591caf0de5a8fc11fb17b8b4698901f
8cea12e8e59e86a9522fc029b46a8b87fffa7687
refs/heads/master
2021-01-10T09:49:30.854348
2016-04-27T09:57:15
2016-04-27T09:57:15
48,278,451
0
0
null
null
null
null
UTF-8
Python
false
false
254
#!/home/jlrosa/PycharmProjects/EServ/flask/bin/python2 # -*- coding: utf-8 -*- import re import sys from coverage.cmdline import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(main())
f90e32623be87b1e57f0764c5dee61fda7509d3a
514223cfd2815fb91f811787d7994793d8c09019
/QUANTAXIS/QAMarket/QAShipaneBroker.py
141cfee13978a11d106b2673c9dd529de95f2819
[ "MIT" ]
permissive
frosthaoz/QUANTAXIS
350d9c8f28cecc124ae3f1b5ff1809daed5bd431
f5f482418e5f6e23ac3530089b8d17300d931b48
refs/heads/master
2020-04-01T04:24:17.147637
2018-10-12T05:17:16
2018-10-12T05:17:16
152,862,049
1
0
MIT
2018-10-13T10:44:03
2018-10-13T10:44:02
null
UTF-8
Python
false
false
14,363
py
# coding:utf-8 import base64 import configparser import json import os import urllib import future import asyncio import pandas as pd import requests import datetime from cryptography.hazmat.backends import default_backend from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes from QUANTAXIS.QAEngine.QAEvent import QA_Event from QUANTAXIS.QAMarket.common import cn_en_compare, trade_towards_cn_en, order_status_cn_en from QUANTAXIS.QAMarket.QABroker import QA_Broker from QUANTAXIS.QAMarket.QAOrderHandler import QA_OrderHandler from QUANTAXIS.QAUtil.QAParameter import (BROKER_EVENT, ORDER_DIRECTION, BROKER_TYPE, ORDER_MODEL, ORDER_STATUS) from QUANTAXIS.QAUtil.QADate_trade import QA_util_get_order_datetime from QUANTAXIS.QAUtil.QADate import QA_util_date_int2str from QUANTAXIS.QAUtil.QASetting import setting_path CONFIGFILE_PATH = '{}{}{}'.format(setting_path, os.sep, 'config.ini') DEFAULT_SHIPANE_URL = 'http://127.0.0.1:8888' DEFAULT_SHIPANE_KEY = '' class SPE_CONFIG(): def __init__(self, uri=DEFAULT_SHIPANE_URL, key=DEFAULT_SHIPANE_KEY): self.key = key self.uri = uri def get_config_SPE(): config = configparser.ConfigParser() if os.path.exists(CONFIGFILE_PATH): config.read(CONFIGFILE_PATH) try: return SPE_CONFIG(config.get('SPE', 'uri'), config.get('SPE', 'key')) except configparser.NoSectionError: config.add_section('SPE') config.set('SPE', 'uri', DEFAULT_SHIPANE_URL) config.set('SPE', 'key', DEFAULT_SHIPANE_KEY) return SPE_CONFIG() except configparser.NoOptionError: config.set('SPE', 'uri', DEFAULT_SHIPANE_URL) config.set('SPE', 'key', DEFAULT_SHIPANE_KEY) return SPE_CONFIG() finally: with open(CONFIGFILE_PATH, 'w') as f: config.write(f) else: f = open(CONFIGFILE_PATH, 'w') config.add_section('SPE') config.set('SPE', 'uri', DEFAULT_SHIPANE_URL) config.set('SPE', 'key', DEFAULT_SHIPANE_KEY) config.write(f) f.close() return DEFAULT_SHIPANE_URL class QA_SPEBroker(QA_Broker): """ 1. 查询账户: 如果有该账户, 返回可用资金和持仓 如果当前market不存在或异常, 返回False 2. 查询所有订单: 如果成功 返回一个DataFrame 如果失败 返回False 3. 查询未成交订单 如果成功 返回DataFrame 如果失败 返回False 4. 查询已成交订单 如果成功 返回DataFramne 如果失败 返回False 5. 下单 receive_order/send_order receive_order(QAMARKET 用法): 输入一个QA_ORDER类 如果下单成功 返回带realorder_id, ORDER_STATUS.QUEUED状态值 的QA_Order 如果下单失败 返回带 ORDER_STATUS.FAILED状态值的 QA_Order send_order(测试用法) 6. 撤单 cancel_order 如果撤单成功 返回 True 如果撤单失败 返回 具体的原因 dict/json格式 7. 全撤 如果成功 返回True """ def __init__(self): super().__init__() self.name = BROKER_TYPE.SHIPANE self.order_handler = QA_OrderHandler() self.setting = get_config_SPE() self._session = requests self._endpoint = self.setting.uri self.key = self.setting.key #self.account_headers = ['forzen_cash','balance_available','cash_available','pnl_money_today','total_assets','pnl_holding','market_value','money_available'] def run(self, event): if event.event_type is BROKER_EVENT.RECEIVE_ORDER: self.order_handler.run(event) #self.run(QA_Event(event_type=BROKER_EVENT.TRADE, broker=self)) # elif event.event_type is BROKER_EVENT.TRADE: # """实盘交易部分!!!!! ATTENTION # 这里需要开一个子线程去查询是否成交 # ATTENTION # """ # event = self.order_handler.run(event) # event.message = 'trade' # if event.callback: # event.callback(event) elif event.event_type is BROKER_EVENT.SETTLE: self.order_handler.run(event) if event.callback: event.callback('settle') def call(self, func, params=''): try: if self.key == '': uri = '{}/api/v1.0/{}?client={}'.format( self._endpoint, func, params.pop('client')) else: uri = '{}/api/v1.0/{}?key={}&client={}'.format( self._endpoint, func, self.key, params.pop('client')) # print(uri) response = self._session.get(uri, params) text = response.text return json.loads(text) except Exception as e: #print(e) if isinstance(e,ConnectionRefusedError): print('与主机失去连接') print(e) else: print(e) # print(uri) return None def call_post(self, func, params={}): if self.key == '': uri = '{}/api/v1.0/{}?client={}'.format( self._endpoint, func, params.pop('client')) else: uri = '{}/api/v1.0/{}?key={}&client={}'.format( self._endpoint, func, self.key, params.pop('client')) response = self._session.post(uri, json=params) text = response.text return json.loads(text) def call_delete(self, func, params=''): if self.key == '': uri = '{}/api/v1.0/{}?client={}'.format( self._endpoint, func, params.pop('client')) else: uri = '{}/api/v1.0/{}?key={}&client={}'.format( self._endpoint, func, self.key, params.pop('client')) response = self._session.delete(uri) text = response.text # print(text) try: if text in ['', '获取提示对话框超时,因为:组件为空']: print('success') return True else: return json.loads(text) except: return text def data_to_df(self, result): return pd.DataFrame(data=result) #------ functions def ping(self): return self.call("ping", {}) def query_accounts(self, accounts): return self.call("accounts", { 'client': accounts }) def query_positions(self, accounts): """查询现金和持仓 Arguments: accounts {[type]} -- [description] Returns: dict-- {'cash':xxx,'position':xxx} """ try: data = self.call("positions", { 'client': accounts }) # print(data) if data is not None: cash_part = data.get('subAccounts', {}).get('人民币', False) if cash_part: cash_available = cash_part.get('可用金额',cash_part.get('可用')) position_part = data.get('dataTable', False) if position_part: res = data.get('dataTable', False) if res: hold_headers = res['columns'] hold_headers = [cn_en_compare[item] for item in hold_headers] hold_available = pd.DataFrame( res['rows'], columns=hold_headers) if len(hold_available)==1 and hold_available.amount[0] in [None, '', 0]: hold_available=pd.DataFrame(data=None,columns=hold_headers) return {'cash_available': cash_available, 'hold_available': hold_available.assign(amount=hold_available.amount.apply(float)).loc[:, ['code', 'amount']].set_index('code').amount} else: print(data) return False, 'None ACCOUNT' except: return False def query_clients(self): return self.call("clients") def query_orders(self, accounts, status='filled'): """查询订单 Arguments: accounts {[type]} -- [description] Keyword Arguments: status {str} -- 'open' 待成交 'filled' 成交 (default: {'filled'}) Returns: [type] -- [description] """ try: data = self.call("orders", { 'client': accounts, 'status': status }) if data is not None: orders = data.get('dataTable', False) order_headers = orders['columns'] if ('成交状态' or '状态说明' in order_headers) and ('备注' in order_headers): order_headers[order_headers.index('备注')]='废弃' order_headers = [cn_en_compare[item] for item in order_headers] order_all = pd.DataFrame( orders['rows'], columns=order_headers).assign(account_cookie=accounts) order_all.towards = order_all.towards.apply( lambda x: trade_towards_cn_en[x]) if 'order_time' in order_headers: # 这是order_status order_all['status'] = order_all.status.apply(lambda x: order_status_cn_en[x]) if 'order_date' not in order_headers: order_all.order_time = order_all.order_time.apply( lambda x: QA_util_get_order_datetime(dt='{} {}'.format(datetime.date.today(), x))) else: order_all = order_all.assign(order_time=order_all.order_date.apply(QA_util_date_int2str)+' '+order_all.order_time) if 'trade_time' in order_headers: order_all.trade_time = order_all.trade_time.apply( lambda x: '{} {}'.format(datetime.date.today(), x)) if status is 'filled': return order_all.loc[:, self.dealstatus_headers].set_index(['account_cookie', 'realorder_id']).sort_index() else: return order_all.loc[:, self.orderstatus_headers].set_index(['account_cookie', 'realorder_id']).sort_index() else: print('response is None') return False except Exception as e: print(e) return False def send_order(self, accounts, code='000001', price=9, amount=100, order_direction=ORDER_DIRECTION.BUY, order_model=ORDER_MODEL.LIMIT): """[summary] Arguments: accounts {[type]} -- [description] code {[type]} -- [description] price {[type]} -- [description] amount {[type]} -- [description] Keyword Arguments: order_direction {[type]} -- [description] (default: {ORDER_DIRECTION.BUY}) order_model {[type]} -- [description] (default: {ORDER_MODEL.LIMIT}) priceType 可选择: 上海交易所: 0 - 限价委托 4 - 五档即时成交剩余撤销 6 - 五档即时成交剩余转限 深圳交易所: 0 - 限价委托 1 - 对手方最优价格委托 2 - 本方最优价格委托 3 - 即时成交剩余撤销委托 4 - 五档即时成交剩余撤销 5 - 全额成交或撤销委托 Returns: [type] -- [description] """ try: #print(code, price, amount) return self.call_post('orders', { 'client': accounts, "action": 'BUY' if order_direction == 1 else 'SELL', "symbol": code, "type": order_model, "priceType": 0 if order_model == ORDER_MODEL.LIMIT else 4, "price": price, "amount": amount }) except json.decoder.JSONDecodeError: print(RuntimeError('TRADE ERROR')) return None def cancel_order(self, accounts, orderid): return self.call_delete('orders/{}'.format(orderid), { 'client': accounts }) def cancel_all(self, accounts): return self.call_delete('orders', { 'client': accounts }) def receive_order(self, event): order = event.order res = self.send_order(accounts=order.account_cookie, code=order.code, price=order.price, amount=order.amount, order_direction=order.towards, order_model=order.order_model) try: # if res is not None and 'id' in res.keys(): # order.status = ORDER_STATUS.QUEUED # order.text = 'SUCCESS' order.queued(realorder_id=res['id']) print('success receive order {}'.format(order.realorder_id)) return order # else: except: text = 'WRONG' if res is None else res.get( 'message', 'WRONG') order.failed(text) print('FAILED FOR CREATE ORDER {} {}'.format( order.account_cookie, order.status)) print(res) return order #self.dealer.deal(order, self.market_data) if __name__ == '__main__': a = QA_SPEBroker() print('查询账户') acc = 'account:9173' print(a.query_positions(acc)) print('查询所有订单') print(a.query_orders(acc, '')) print('查询未成交订单') print(a.query_orders(acc, 'open')) print('查询已成交订单') print(a.query_orders(acc, 'filled')) """多账户同时下单测试 """ print('下单测试') res = a.send_order(acc, price=9) #a.send_order(acc, price=9) #a.send_order(acc, price=9) # print(res) print('查询新的未成交订单') print(a.query_orders(acc, 'open')) print('撤单') print(a.cancel_order(acc, res['id'])) print('查询已成交订单') print(a.query_orders(acc, 'filled')) # print(a.send_order('account:141',price=8.95)) print('一键全部撤单') print(a.cancel_all(acc)) print(a.cancel_order('account:141', '1703'))
19086394a0f2a9f79cbb20e7e4f5a39efe50a248
44c631dbb17d56ff48212c5629544125b9d83521
/tbgame.py
d82740792c1d18bc7097356b8299eaad3f7c7e75
[]
no_license
briankacupaj/WW2-TextBasedGame
1144110eaabeb756394723306389df7cd6c2fc84
f4dd263951c89df87cbaad32907c13c4a16070db
refs/heads/main
2023-07-21T20:29:09.671829
2021-09-02T22:37:29
2021-09-02T22:37:29
402,580,197
0
0
null
null
null
null
UTF-8
Python
false
false
35,077
py
import time import random items = [] def valid_input(prompt, options): while True: option = input(prompt).lower() if option in options: return option print_pause(f'Sorry, the option "{option}" is invalid. Try again.') def print_pause(string): print(string) time.sleep(2) def intro(): print("") print_pause("Welcome to the world of the 1930s.") print_pause("You are serving as the leader of the new German state.") print_pause("Tensions are running high after your rise to power, and " "it is your job to rapidly expand, while trying not to upset " "any of the other global superpowers.") print_pause("The Allies want to maintain peace in Europe, and you have to" " try to use that to your advantage.") print_pause("You will be presented many decisions, and each thing you do " "will change the course of history.") print_pause("Good luck.") def rhineland_intro(): print("") print_pause("It is March of 1936. 17 years since the Treaty of " "Versailles. In this treaty we were forced to demilitarize " "the area known as the Rhineland. This region is home to all " "our Western Fronts.") print_pause("In order to reassert our military's power, we must first " "remilitarize this region.") print_pause("What shall we do?") rhineland() def rhineland(): rhineland_decision = valid_input('Send the troops into the region or ' 'push it off. (1|2) \n', ['1', '2']) if rhineland_decision == '1': items.append("Rhineland") print_pause("You picked to send in the military.") print_pause("The people rejuvenate! We are slowly undoing the unfair " "treaty. The Allies back down after the lack of public " "support for an invasion.") elif rhineland_decision == '2': print_pause("You picked to do nothing.") print_pause("This isn't worth our time right now.") else: rhineland() def anschluss_intro(): print("") print_pause("Now, we have the issue of Austria.") print_pause("Since the establishment of Austrian fascism in 1933, the " "Austrian people realize that they are in fact, Germans.") print_pause("We now have a choice. After the current Austrian Prime " "Minister has said he will not allow German unification, we " "must decide to let them get their way, or to force them " "into the Reich.") print_pause("What shall we do here?") anschluss_event() def anschluss_event(): anschluss_decision = valid_input('Invade the Austrians or ignore them? ' '(1|2)\n', ['1', '2']) if anschluss_decision == '1': if "Rhineland" in items: print("") anschluss_success() if "Rhineland" not in items: index = random.randint(1, 6) if index < 3: anschluss_success() elif index > 3: anschluss_failure() elif index == 3: game_over_anschluss() elif anschluss_decision == '2': print_pause("We decide to ignore the Austrians.") print_pause("Their matters do not concern us at the moment.") sudetenland_intro() else: anschluss_event() def anschluss_success(): print("") print_pause("Our coup is a success!") print_pause("The NSDAP has taken power in Austria.") print_pause("The Wehrmacht enters to cheering crowds.") print_pause("The Allies turn their Heads.") items.append("Anschluss") sudetenland_intro() def anschluss_failure(): print("") print_pause("It is chaos in Vienna!") print_pause("Our coup has failed!") print_pause("The people have voted against unification and the Austrian " "government refuses to yield to our demands!") print_pause("We must look elsewhere...") sudetenland_intro() def sudetenland_intro(): print("") print_pause("It's 1938. Germans in Czechoslovakia are becoming more and " "more patriotic towards their homeland.") print_pause("These Germans are concentrated in the region known as the " "Sudetenland.") print_pause("Once part of German Austria, the Sudetenland was then " "shortly after seceded to Czechoslovakia.") print_pause("After the rise of fascism in Germany, these Germans feel " "now is the time to push for unification.") print_pause("We have the choice to host a conference between the Allied " "and Axis powers to discuss the future of this region.") print_pause("Or we can leave the Czechs to their own devices.") print_pause("What shall we do?") sudetenland_event() def sudetenland_event(): sudetenland_decision = valid_input('Host the Munich Conference or Forget ' 'about the Czechs. (1|2)\n', ['1', '2']) if sudetenland_decision == '1': if "Rhineland" and "Anschluss" in items: index2 = random.randint(1, 6) if index2 == 1: munich_diktat() else: munich_conference() elif "Anschluss" in items and "Rhineland" not in items: index2 = random.randint(1, 5) if index2 == 1: munich_diktat() elif index2 == 2: game_over_sudetenland() else: munich_conference() elif "Rhineland" in items and "Anschluss" not in items: index2 = random.randint(1, 4) if index2 == 1: game_over_sudetenland() elif index2 == 2: munich_diktat() else: munich_conference() elif "Rhineland" and "Anschluss" not in items: index2 = random.randint(1, 3) if index2 == 1: game_over_sudetenland() else: munich_diktat() elif sudetenland_decision == '2': if "Rhineland" and "Anschluss" not in items: print_pause("The Allies have found out about our plan to " "consider invading the Czechs!") game_over_sudetenland() elif "Anschluss" in items and "Rhineland" not in items: index2 = random.randint(1, 5) if index2 == 1: print_pause("The Allies have found out about our plan to " "consider invading the Czechs!") game_over_sudetenland() else: print_pause("We have decided to bypass the Czechs.") print_pause("Now we can either demand Danzig from Poland, " "or turn our eyes to the West.") west_or_east() elif "Anschluss" not in items and "Rhineland" in items: index2 = random.randint(1, 5) if index2 == 1 or 2: print_pause("The Allies have found out about our plan to " "consider invading the Czechs!") game_over_sudetenland() else: print_pause("We have decided to bypass the Czechs.") print_pause("Now we can either demand Danzig from Poland, or " "turn our eyes to the West.") west_or_east() elif "Anschluss" and "Rhineland" in items: print_pause("We have decided to bypass the Czechs.") print_pause("Now we can either demand Danzig from Poland, or " "turn our eyes to the West.") west_or_east() def munich_conference(): print("") print_pause("The Munich Conference is a success!") print_pause("The Sudetenland is ours.") print_pause("Per the agreement, we are not supposed to invade the rest " "of Czechoslovakia, but we choose to ignore that.") cze_invasion_success() def munich_diktat(): print("") print_pause("The Allies have denied us the Sudetenland!") print_pause("We now have the choice to either take it by force, or " "to back down.") print_pause("What shall we do?") diktat_choice() def diktat_choice(): diktat_decision = valid_input('Invade the Czechs or Back down (1|2)\n', ['1', '2']) if diktat_decision == '1': if "Rhineland" and "Anschluss" in items: index3 = random.randint(1, 6) if index3 == 1: game_over_sudetenland() else: print_pause("We declare war on Czechoslovakia, putting us at " "war with the Allies.") items.append("War") cze_invasion_success() elif "Rhineland" in items and "Anschluss" not in items: index3 = random.randint(1, 6) if index3 == 1 or 2: game_over_sudetenland() else: print_pause("We declare war on Czechoslovakia, putting us at " "war with the Allies.") items.append("War") cze_invasion_success() elif "Anschluss" in items and "Rhineland" not in items: index3 = random.randint(1, 5) if index3 == 1: game_over_sudetenland() else: print_pause("We declare war on Czechoslovakia, putting us at " "war with the Allies.") items.append("War") cze_invasion_success() elif "Anschluss" and "Rhineland" not in items: game_over_sudetenland() elif diktat_decision == '2': print_pause("We have backed down.") if "Rhineland" and "Anschluss" not in items: game_over_sudetenland() elif "Anschluss" not in items and "Rhineland" in items: index3 = random.randint(1, 4) if index3 == 1: game_over_sudetenland() else: print_pause("We now have a choice, to either demand the " "region of Danzig from Poland, which would put " "us at war with the Allies, or we could ignore " "Poland and just focus on the West.") west_or_east() elif "Anschluss" in items and "Rhineland" not in items: index3 = random.randint(1, 8) if index3 == 1: game_over_sudetenland() else: print_pause("We now have a choice, to either demand the " "region of Danzig from Poland, which would put " "us at war with the Allies, or we could ignore " "Poland and just focus on the West.") west_or_east() elif "Anschluss" and "Rhineland" in items: print_pause("We now have a choice, to either demand the " "region of Danzig from Poland, which would put " "us at war with the Allies, or we could ignore " "Poland and just focus on the West.") west_or_east() else: diktat_choice() def cze_invasion_success(): print("") items.append("Sudetenland") print_pause("The Czechs stood no chance against us.") print_pause("We can now concentrate our efforts to the Western front.") print_pause("But now we have a choice.") print_pause("Keep pushing Eastward and attack Poland, or focus on the " "West.") west_or_east() def west_or_east(): west_or_east_decision = valid_input('Ignore Poland or Danzig or War ' '(1|2)\n', ['1', '2']) if west_or_east_decision == '1': print_pause("We choose to not focus on Poland right now.") print_pause("We choose to focus on the West.") operation_weserubung() elif west_or_east_decision == '2': danzig_or_war() else: west_or_east() def danzig_or_war(): print("") print_pause("We send the ultimatum to Poland!") index4 = random.randint(1, 6) if index4 == 1: print_pause("Poland accepts!") print_pause("Danzig is ours.") if "War" in items: items.append("Poland") operation_weserubung() else: print_pause("Due to our aggression in the East, the Allies " "attack!") print_pause("We are now at war with Britain and France.") items.append("War") items.append("Poland") operation_weserubung() else: print_pause("The Poles refuse.") print_pause("We will launch our invasion soon.") molotov_ribbentrop() def molotov_ribbentrop(): print("") print_pause("But first, shall we form an alliance with the Soviets and " "cede Eastern Poland?") print_pause("This will give us a pact of non-aggression with them.") print_pause("This would be useful to avoid a 2 front war.") print_pause("Should we sign the pact?") molotov_ribbentrop_decision() def molotov_ribbentrop_decision(): molotov_ribbentrop_choice = valid_input('Sign the Pact or All of Poland ' 'is ours. (1|2)\n', ['1', '2']) if molotov_ribbentrop_choice == '1': print_pause("The pact has been signed.") items.append("West_Poland") if "War" not in items: print_pause("Because of our Eastern aggression, Britain and " "France declare war!") print_pause("We are now at war with the Allies.") items.append("War") else: pass print_pause("Poland has been crushed by the two powers crashing down " "on either side.") print_pause("We occupy the West, and the Soviets take the East.") operation_weserubung() elif molotov_ribbentrop_choice == '2': print_pause("We choose not to sign the pact.") if "Rhineland" in items: if "Anschluss" not in items: if "Sudetenland" not in items: index5 = random.randint(1, 2) if index5 == 1: game_over_poland() else: print_pause("The Poles fight hard, but we still come" " out victorious in the end.") items.append("Poland") operation_weserubung() else: index5 = random.randint(1, 5) if index5 == 1: game_over_poland() else: print_pause("The Poles fight hard, but we still come" " out victorious in the end.") items.append("Poland") operation_weserubung() else: if "Sudetenland" in items: index5 = random.randint(1, 4) if index5 == 1: game_over_poland() else: print_pause("The Poles fight hard, but we still come" " out victorious in the end.") items.append("Poland") operation_weserubung() else: index5 = random.randint(1, 2) if index5 == 1: game_over_poland() else: print_pause("The Poles fight hard, but we still come" " out victorious in the end.") items.append("Poland") operation_weserubung() elif "Rhineland" not in items: if "Anschluss" in items: if "Sudetenland" in items: index5 = random.randint(1, 8) if index5 == 1: game_over_poland() else: print_pause("The Poles fight hard, but we still come" " out victorious in the end.") items.append("Poland") operation_weserubung() else: index5 = random.randint(1, 5) if index5 == 1: game_over_poland() else: print_pause("The Poles fight hard, but we still come" " out victorious in the end.") items.append("Poland") operation_weserubung() else: if "Sudetenland" in items: index5 = random.randint(1, 4) if index5 == 1: game_over_poland() else: print_pause("The Poles fight hard, but we still come" " out victorious in the end.") items.append("Poland") operation_weserubung() else: game_over_poland() if index5 == 1: game_over_poland() else: print_pause("The Poles fight hard, but we still come out " "victorious in the end.") items.append("Poland") operation_weserubung() else: molotov_ribbentrop_decision() def operation_weserubung(): print("") print_pause("Before we launch our invasion into France, we have an " "opportunity to launch an invasion into Denmark and Norway.") print_pause("The Allies are blocking our trade with Sweden, and we need " "to secure our resources.") print_pause("Should we commence the operation?") operation_weserubung_decision() def operation_weserubung_decision(): print("") print("1. Launch the invasion.") print("2. Scandinavia is a waste of our time.") print("Pick either '1' or '2'.") operation_weserubung_choice = valid_input('Launch the invasion or ' 'Scandinavia is a waste of time ' '(1|2)\n', ['1', '2']) if operation_weserubung_choice == '1': items.append("iron_ore_surplus") print_pause("The invasion was a success!") print_pause("We have secured our trade with Sweden.") around_maginot_intro() elif operation_weserubung_choice == '2': items.append("Blockade") print_pause("We decide to do nothing, but now we suffer from the " "British blockade.") around_maginot_intro() else: operation_weserubung_decision() def around_maginot_intro(): print("") print_pause("Now that the East is covered, we now focus our efforts to " "the West, and more specifically, the French.") print_pause("We have a choice. To invade through the Benelux countries, " "through Switzerland, or pierce through the French maginot.") print_pause("What shall we do?") around_maginot() def around_maginot(): around_maginot_decision = valid_input('Go through the Benelux, ' 'Switzerland, or straight through? ' '(1|2|3)\n', ['1', '2', '3']) if around_maginot_decision == '1': if "Poland" or "West_Poland" in items: if "iron_ore_surplus" in items: benelux_victory() else: index6 = random.randint(1, 5) if index6 == 1: game_over_benelux() else: benelux_victory() else: if "iron_ore_surplus" in items: index6 = random.randint(1, 4) if index6 == 1: game_over_benelux() else: benelux_victory() elif around_maginot_decision == '2': if "Poland" or "West_Poland" in items: if "iron_ore_surplus" in items: swiss_victory() else: game_over_switzerland() elif "Anschluss" in items: if "iron_ore_surplus" in items: index6 = random.randint(1, 7) if index6 == 1: game_over_switzerland() else: print_pause("We have suffered heavy casualties in the " "fight through Switzerland.") print_pause("This will hurt us later on.") items.append("Heavy_Casualties") swiss_victory() else: game_over_switzerland() elif around_maginot_decision == '3': if "Poland" or "West_Poland" in items: if "Anschluss" and "Sudetenland" in items: if "iron_ore_surplus" in items: french_victory() else: index6 = random.randint(1, 4) if index6 == 1: game_over_france() else: print_pause("We have suffered heavy casualties in the " "fight through the French Maginot.") print_pause("This will hurt us later on.") items.append("Heavy_Casualties") french_victory() else: game_over_france() else: if "Anschluss" and "iron_ore_surplus" and "Sudetenland" in items: index6 = random.randint(1, 11) if index6 == 1: print_pause("We have suffered heavy casualties in the " "fight through the French Maginot.") print_pause("This will hurt us later on.") items.append("Heavy_Casualties") elif index6 == 2: game_over_france() else: french_victory() else: game_over_france() else: around_maginot() def benelux_victory(): print("") print_pause("We decide to go around the Maginot through Belgium.") print_pause("Fortunately for us, our operation is a success!") print_pause("We breeze through the Benelux and the Allied forces are " "caught off guard!") print_pause("We are able to push through France and Paris is ours.") print_pause("France has fallen.") fall_of_france() def french_victory(): print("") print_pause("We decide to try to pierce the Maginot.") print_pause("Fortunately for us, our strength outweighs that of the " "Allies.") print_pause("We are able to push through France.") print_pause("Paris is ours and France has fallen.") fall_of_france() def swiss_victory(): print("") print_pause("We decide to go around the Maginot and through Switzerland.") print_pause("Fortunately for us, our operation is a success!") print_pause("We fight through the Alps and finish off Switzerland.") print_pause("We move through France with ease.") print_pause("Paris is ours and France has fallen.") fall_of_france() def fall_of_france(): print("") if ["Rhineland", "Anschluss", "Sudetenland", "iron_ore_surplus"] in items: if "West_Poland" or "Poland" in items: western_victory() else: war_continues() else: war_continues() def western_victory(): print_pause("After the fall of France, because of our sheer power, the " "United Kingdom has decided to sue for peace.") print_pause("Now that the Western War has come to an end, now we have " "the issue of the Soviet Union.") print_pause("The Soviets pose no current threat to us, but in order to " "fulfill German lebensraum, Soviet territories may be of use " "to us.") print_pause("Shall we invade, or declare victory?") end_game_decision() def end_game_decision(): pvdecision = valid_input('Invade or Declare victory? (1|2)\n', ['1', '2']) items.remove("War") if "Blockade" in items: items.remove("Blockade") else: pass if pvdecision == '1': print_pause("We have decided to launch our invasion of the Soviets.") operation_barbarossa() elif pvdecision == '2': partial_victory() else: end_game_decision() def war_continues(): print("") print_pause("After the fall of France, The United Kingdom has decided to " "continue the war.") print_pause("Now that France has fallen however, we have an opportunity " "to strike in the East.") print_pause("The Red Army has been weakened after Stalin's purges and " "this is our opportunity to take advantage.") print_pause("What shall we do?") op_bar_decision() def op_bar_decision(): op_bar_decision = valid_input('Invade the Soviets or Do nothing (1|2)\n', ['1', '2']) if op_bar_decision == '1': print_pause("We decide to invade.") operation_barbarossa() elif op_bar_decision == '2': print_pause("We decide to do nothing.") soviet_invasion() else: op_bar_decision() def soviet_invasion(): print_pause("Although we decided to stay neutral, the Soviets launch " "their own invasion!") if "War" in items: print_pause("In new world news, Japan has attacked Pearl Harbor.") print_pause("This now means the United States has joined the Allies.") print_pause("Rumor has it that they're planning an invasion into " "France.") items.append("US") else: pass if "Blockade" in items: print_pause("Although we are initially able to hold them off, " "eventually, our material shortages get the best of us.") game_over_soviets() else: index8 = random.randint(1, 3) if index8 == '1': print_pause("We are unable to hold the Russians back.") game_over_soviets() else: print_pause("Unfortunately for the Soviets, they are no match " "for us.") print_pause("We are able to easily push the Red Army back.") barbarossa_victory() def operation_barbarossa(): print("") print_pause("The Red Army is caught off guard!") print_pause("We push easily through Ukraine and Belarus.") print_pause("Unfortunately though, it feels like Soviet resistance keeps " "hardening the futher we push.") if "War" in items: print_pause("In new world news, Japan has attacked Pearl Harbor.") print_pause("This now means the United States has joined the Allies.") print_pause("Rumor has it that they're planning an invasion into " "France.") items.append("US") else: pass if "Blockade" in items: print_pause("It seems that we are being successfully held in our " "advances.") print_pause("Due to British and French blockades, we do not have " "access to the resources to sustain this invasion.") print_pause("We are being pushed back!") print_pause("The Soviets have mobilized and outnumber us.") print_pause("The Soviet Union takes Warsaw and pushes to Berlin.") print_pause("The Allies land in France to little resistance and push " "inland.") print_pause("Game Over") play_again() else: if "Heavy_Casualties" in items: print_pause("It seems that we are being successfully held in our " "advances.") print_pause("Because of heavy losses from our Western wars, we " "are unable to sustain an Eastern invasion.") print_pause("The Soviets easily mobilize, outnumber, and push " "us back.") if "War" and "US" in items: print_pause("The Soviet Union takes Warsaw and pushes to " "Berlin.") print_pause("The Allies land in France to little resistance " "and push inland.") print_pause("Game Over") play_again() elif "War" in items and "US" not in items: print_pause("The Soviet Union takes Warsaw and pushes " "through Germany.") print_pause("Game Over") play_again() elif "War" not in items: index7 = random.randint(1, 4) if index7 == 1: print_pause("The Soviet Union takes Warsaw and pushes " "through Germany.") print_pause("Game Over") play_again() else: barbarossa_victory() else: if "War" and "US" in items: index7 = random.randint(1, 6) if index7 == 1: barbarossa_victory() else: print_pause("Back in the East, the Soviets have " "mobilized and outnumber us.") print_pause("We are now being pushed back.") print_pause("The Allies land in France to little " "resistance and push inland.") print_pause("The Soviet Union takes Warsaw and pushes " "to Berlin.") print_pause("Game Over") play_again() elif "War" in items and "US" not in items: index7 = random.randint(1, 4) if index7 == 1: barbarossa_victory() else: print_pause("Back in the East, the Soviets have " "mobilized and outnumber us.") print_pause("We are now being pushed back.") print_pause("The Soviet Union liberates Warsaw and " "pushes through Germany.") print_pause("Game Over") play_again() else: barbarossa_victory() def game_over_anschluss(): print("") print_pause("Disaster has struck!") print_pause("Austria has called on its Allies; the United Kingdom, " "France, and Italy to come to its protection!") print_pause("Due to our military weakness, we crumble.") print_pause("The Third Reich has come to an end.") play_again() def game_over_sudetenland(): print("") print_pause("The Allies notice our weaknesses and decide to invade to " "protect democracy in Europe.") print_pause("We are unable to hold them back.") print_pause("Berlin has fallen.") play_again() def game_over_poland(): print("") print_pause("We launch our invasion of Poland anyways.") if "War" in items: print_pause("Because of our invasion, Britain and France declare " "war!") else: pass print_pause("We are too weak! The Poles hold us back while the Allies " "push from the West!") print_pause("Our military has been disintigrated.") print_pause("We have been defeated.") play_again() def game_over_benelux(): print("") print_pause("We decide to repeat our World War 1 strategy and smash " "through Belgium.") print_pause("Unfortunately, the Allies were prepared and studied our " "weaknesses.") print_pause("The Dutch and Belgians hold us back long enough for the " "Allies to arrive.") print_pause("The coalition pushes us back.") print_pause("Game Over") play_again() def game_over_switzerland(): print("") print_pause("We decide to go around the Maginot and through Switzerland.") print_pause("Unfortunately, the Allies were prepared and studied our " "weaknesses.") print_pause("We are not prepared to cross the Swiss Alps, and the " "trained Swiss army is able to push us back.") print_pause("Game Over") play_again() def game_over_france(): print("") print_pause("We have decided to try to pierce the French Maginot.") print_pause("Unfortunately, the area was too fortified and we're stuck.") print_pause("We suffer heavy losses and the Allies are able to push us " "back.") print_pause("Game Over") play_again() def game_over_soviets(): print_pause("The Soviets keep pushing us back.") if "US" in items: print_pause("The Allies land in France to little resistance.") print_pause("They push from the West while the Soviets push from " "the East.") print_pause("The Soviet Union takes Warsaw and keeps pushing to " "Berlin.") print_pause("The Allies liberate West Germany.") print_pause("Game Over") play_again() def partial_victory(): print("") print_pause("We have decided to end the wars and begin rebuilding.") print_pause("We have successfully consolidated our position in Europe.") print_pause("We are content with a second superpower and establish " "positive diplomatic relations.") print_pause("We have won.") play_again() def barbarossa_victory(): print("") print_pause("We have breezed through the Soviet Union.") print_pause("They have fallen.") if "War" in items: print_pause("After our victory in the East, the Allies have all " "decided to sue for peace.") else: pass print_pause("We are now the only dominant continental superpower.") print_pause("We have won.") play_again() def play_game(): intro() rhineland_intro() anschluss_intro() def play_again(): play_again = valid_input('Would you like to play again? (yes|no)\n', ['yes', 'no']) if play_again == 'yes': items.clear() print("") play_game() play_game()
6e7091a9db3c8d7d22b1d7ab6cc6f3c41bd5c680
df07500faa45bc87105578ba941ce70d4b64c5da
/Chapter2:Large-scale_data_analysis_with_spaCy/Exercise15.py
477df8e045982cc1a8b967ce35961b3385e1d03c
[]
no_license
BrandonHT/spaCy-tutorial
08e564db42e1c39f3ec0f105e810ca553b5eeb24
f3236255e97b84a3ec96f5c14a39c2922fb2508a
refs/heads/main
2023-02-20T21:56:31.525029
2021-01-22T02:49:22
2021-01-22T02:49:22
330,812,968
0
0
null
null
null
null
UTF-8
Python
false
false
722
py
#Phrase matcher import json from spacy.lang.en import English with open("exercises/en/countries.json", encoding="utf8") as f: COUNTRIES = json.loads(f.read()) nlp = English() doc = nlp("Czech Republic may help Slovakia protect its airspace") # Import the PhraseMatcher and initialize it from spacy.matcher import PhraseMatcher matcher = PhraseMatcher(nlp.vocab) # Create pattern Doc objects and add them to the matcher # This is the faster version of: [nlp(country) for country in COUNTRIES] patterns = list(nlp.pipe(COUNTRIES)) matcher.add("COUNTRY", None, *patterns) # Call the matcher on the test document and print the result matches = matcher(doc) print([doc[start:end] for match_id, start, end in matches])
2c3f9bf1eb7af4abf52697eb26f2d9fc8262ce2d
23631af0987b3f1d30b0bf8bfcea1bd63159eeba
/gate_api/configuration.py
4b19c91ec5f25ad45dffcb2880c0358f4580b286
[]
no_license
xuvw/gateapi-python
08c3c72ff0e2c4713bf3a2ffe0b15d05e57491ca
1a3f3551cba4a756f76f17b070c3e0c5ff2e88ea
refs/heads/master
2020-05-25T14:33:35.592775
2019-04-02T08:50:25
2019-04-02T08:50:25
null
0
0
null
null
null
null
UTF-8
Python
false
false
8,144
py
# coding: utf-8 """ Gate API v4 APIv4 provides spot, margin and futures trading operations. There are public APIs to retrieve the real-time market statistics, and private APIs which needs authentication to trade on user's behalf. # noqa: E501 OpenAPI spec version: 4.6.1 Contact: [email protected] Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import copy import logging import multiprocessing import sys import urllib3 import six from six.moves import http_client as httplib class TypeWithDefault(type): def __init__(cls, name, bases, dct): super(TypeWithDefault, cls).__init__(name, bases, dct) cls._default = None def __call__(cls): if cls._default is None: cls._default = type.__call__(cls) return copy.copy(cls._default) def set_default(cls, default): cls._default = copy.copy(default) class Configuration(six.with_metaclass(TypeWithDefault, object)): """NOTE: This class is auto generated by OpenAPI Generator Ref: https://openapi-generator.tech Do not edit the class manually. """ def __init__(self): """Constructor""" # Default Base url self.host = "https://api.gateio.ws/api/v4" # Temp file folder for downloading files self.temp_folder_path = None # Authentication Settings # dict to store API key(s) self.api_key = {} # dict to store API prefix (e.g. Bearer) self.api_key_prefix = {} # Username for HTTP basic authentication self.username = "" # Password for HTTP basic authentication self.password = "" # Logging Settings self.logger = {} self.logger["package_logger"] = logging.getLogger("gate_api") self.logger["urllib3_logger"] = logging.getLogger("urllib3") # Log format self.logger_format = '%(asctime)s %(levelname)s %(message)s' # Log stream handler self.logger_stream_handler = None # Log file handler self.logger_file_handler = None # Debug file location self.logger_file = None # Debug switch self.debug = False # SSL/TLS verification # Set this to false to skip verifying SSL certificate when calling API # from https server. self.verify_ssl = True # Set this to customize the certificate file to verify the peer. self.ssl_ca_cert = None # client certificate file self.cert_file = None # client key file self.key_file = None # Set this to True/False to enable/disable SSL hostname verification. self.assert_hostname = None # urllib3 connection pool's maximum number of connections saved # per pool. urllib3 uses 1 connection as default value, but this is # not the best value when you are making a lot of possibly parallel # requests to the same host, which is often the case here. # cpu_count * 5 is used as default value to increase performance. self.connection_pool_maxsize = multiprocessing.cpu_count() * 5 # Proxy URL self.proxy = None # Safe chars for path_param self.safe_chars_for_path_param = '' # API key and secret self.key = "" self.secret = "" @property def logger_file(self): """The logger file. If the logger_file is None, then add stream handler and remove file handler. Otherwise, add file handler and remove stream handler. :param value: The logger_file path. :type: str """ return self.__logger_file @logger_file.setter def logger_file(self, value): """The logger file. If the logger_file is None, then add stream handler and remove file handler. Otherwise, add file handler and remove stream handler. :param value: The logger_file path. :type: str """ self.__logger_file = value if self.__logger_file: # If set logging file, # then add file handler and remove stream handler. self.logger_file_handler = logging.FileHandler(self.__logger_file) self.logger_file_handler.setFormatter(self.logger_formatter) for _, logger in six.iteritems(self.logger): logger.addHandler(self.logger_file_handler) @property def debug(self): """Debug status :param value: The debug status, True or False. :type: bool """ return self.__debug @debug.setter def debug(self, value): """Debug status :param value: The debug status, True or False. :type: bool """ self.__debug = value if self.__debug: # if debug status is True, turn on debug logging for _, logger in six.iteritems(self.logger): logger.setLevel(logging.DEBUG) # turn on httplib debug httplib.HTTPConnection.debuglevel = 1 else: # if debug status is False, turn off debug logging, # setting log level to default `logging.WARNING` for _, logger in six.iteritems(self.logger): logger.setLevel(logging.WARNING) # turn off httplib debug httplib.HTTPConnection.debuglevel = 0 @property def logger_format(self): """The logger format. The logger_formatter will be updated when sets logger_format. :param value: The format string. :type: str """ return self.__logger_format @logger_format.setter def logger_format(self, value): """The logger format. The logger_formatter will be updated when sets logger_format. :param value: The format string. :type: str """ self.__logger_format = value self.logger_formatter = logging.Formatter(self.__logger_format) def get_api_key_with_prefix(self, identifier): """Gets API key (with prefix if set). :param identifier: The identifier of apiKey. :return: The token for api key authentication. """ if (self.api_key.get(identifier) and self.api_key_prefix.get(identifier)): return self.api_key_prefix[identifier] + ' ' + self.api_key[identifier] # noqa: E501 elif self.api_key.get(identifier): return self.api_key[identifier] def get_basic_auth_token(self): """Gets HTTP basic authentication header (string). :return: The token for basic HTTP authentication. """ return urllib3.util.make_headers( basic_auth=self.username + ':' + self.password ).get('authorization') def auth_settings(self): """Gets Auth Settings dict for api client. :return: The Auth Settings information dict. """ return { 'api_key': { 'type': 'api_key', 'in': 'header', 'key': 'KEY', 'value': self.get_api_key_with_prefix('KEY') }, 'api_sign': { 'type': 'api_key', 'in': 'header', 'key': 'SIGN', 'value': self.get_api_key_with_prefix('SIGN') }, 'api_timestamp': { 'type': 'api_key', 'in': 'header', 'key': 'Timestamp', 'value': self.get_api_key_with_prefix('Timestamp') }, } def to_debug_report(self): """Gets the essential information for debugging. :return: The report for debugging. """ return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 4.6.1\n"\ "SDK Package Version: 4.6.1".\ format(env=sys.platform, pyversion=sys.version)
5ba2c69680a94e067d20d9d5048ce32195a28bdc
081baf594da8cefdd99db375b161df0b3f80a15e
/core/utils/rabbitmq/fanout_exchange/send.py
c993324fea6c0a3562294c62f6d80bc9843369b6
[]
no_license
chaochaoge123/interview_flask
2d9924594535cf7a88663099870614096ea7133a
a1e7b1f08a2f2b98be1eff6f06fdd0eb6e2fae5d
refs/heads/master
2023-03-11T22:22:00.578869
2021-02-26T03:03:18
2021-02-26T03:03:18
341,771,813
0
0
null
null
null
null
UTF-8
Python
false
false
745
py
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/2/25 14:33 # @Author : qqc # @File : send.py # @Software: PyCharm import pika import sys # https://www.rabbitmq.com/tutorials/tutorial-three-python.html credentials = pika.PlainCredentials('admin', 'admin') parameters = pika.ConnectionParameters(host='172.30.4.154', port=5672, credentials=credentials, virtual_host='my_vhost') connection = pika.BlockingConnection(parameters) # 队列连接通道 channel = connection.channel() channel.exchange_declare(exchange='logs', exchange_type='fanout') message = ' '.join(sys.argv[1:]) or "info: Hello World!" channel.basic_publish(exchange='logs', routing_key='', body=message) print(" [x] Sent %r" % message) connection.close()
a4e757e00264694a74c847735313da1e78c7691a
25f086a7afc54275a6c5c46c78a69908dce9b130
/nerf/run_nerf_helpers.py
fd2c5902cbec25871357de4a1e9344a5a6183520
[ "MIT" ]
permissive
Tubbz-alt/NeRF-Implementation
57a32cf24d20b6b5355da52d2eb0634f9169a39d
4a0e46dbf61f45622c7f1bb33415eb977f8e0216
refs/heads/master
2022-12-18T22:34:55.142675
2020-09-27T04:00:15
2020-09-27T04:00:15
null
0
0
null
null
null
null
UTF-8
Python
false
false
8,440
py
import os import sys import tensorflow as tf import numpy as np import imageio import json # Misc utils def img2mse(x, y): return tf.reduce_mean(tf.square(x - y)) def mse2psnr(x): return -10.*tf.log(x)/tf.log(10.) def to8b(x): return (255*np.clip(x, 0, 1)).astype(np.uint8) # Positional encoding class Embedder: def __init__(self, **kwargs): self.kwargs = kwargs self.create_embedding_fn() def create_embedding_fn(self): embed_fns = [] d = self.kwargs['input_dims'] out_dim = 0 if self.kwargs['include_input']: embed_fns.append(lambda x: x) out_dim += d max_freq = self.kwargs['max_freq_log2'] N_freqs = self.kwargs['num_freqs'] if self.kwargs['log_sampling']: freq_bands = 2.**tf.linspace(0., max_freq, N_freqs) else: freq_bands = tf.linspace(2.**0., 2.**max_freq, N_freqs) for freq in freq_bands: for p_fn in self.kwargs['periodic_fns']: embed_fns.append(lambda x, p_fn=p_fn, freq=freq: p_fn(x * freq)) out_dim += d self.embed_fns = embed_fns self.out_dim = out_dim def embed(self, inputs): return tf.concat([fn(inputs) for fn in self.embed_fns], -1) def get_embedder(multires, i=0): if i == -1: return tf.identity, 3 embed_kwargs = { 'include_input': True, 'input_dims': 3, 'max_freq_log2': multires-1, 'num_freqs': multires, 'log_sampling': True, 'periodic_fns': [tf.math.sin, tf.math.cos], } embedder_obj = Embedder(**embed_kwargs) def embed(x, eo=embedder_obj): return eo.embed(x) return embed, embedder_obj.out_dim # Model architecture def init_nerf_model(D=8, W=256, input_ch=3, input_ch_views=3, output_ch=4, skips=[4], use_viewdirs=False): relu = tf.keras.layers.ReLU() def dense(W, act=relu): return tf.keras.layers.Dense(W, activation=act) print('MODEL', input_ch, input_ch_views, type( input_ch), type(input_ch_views), use_viewdirs) input_ch = int(input_ch) input_ch_views = int(input_ch_views) inputs = tf.keras.Input(shape=(input_ch + input_ch_views)) inputs_pts, inputs_views = tf.split(inputs, [input_ch, input_ch_views], -1) inputs_pts.set_shape([None, input_ch]) inputs_views.set_shape([None, input_ch_views]) print(inputs.shape, inputs_pts.shape, inputs_views.shape) outputs = inputs_pts for i in range(D): outputs = dense(W)(outputs) if i in skips: outputs = tf.concat([inputs_pts, outputs], -1) if use_viewdirs: alpha_out = dense(1, act=None)(outputs) bottleneck = dense(256, act=None)(outputs) inputs_viewdirs = tf.concat( [bottleneck, inputs_views], -1) # concat viewdirs outputs = inputs_viewdirs # The supplement to the paper states there are 4 hidden layers here, but this is an error since # the experiments were actually run with 1 hidden layer, so we will leave it as 1. for i in range(1): outputs = dense(W//2)(outputs) outputs = dense(3, act=None)(outputs) outputs = tf.concat([outputs, alpha_out], -1) else: outputs = dense(output_ch, act=None)(outputs) model = tf.keras.Model(inputs=inputs, outputs=outputs) return model def init_new_nerf_model(D=8, W=256, input_ch=3, input_ch_views=3, output_ch=4, skips=[4], use_viewdirs=False): relu = tf.keras.layers.ReLU() def dense(W, act=relu): return tf.keras.layers.Dense(W, activation=act) print('MODEL', input_ch, input_ch_views, type( input_ch), type(input_ch_views), use_viewdirs) input_ch = int(input_ch) input_ch_views = int(input_ch_views) inputs = tf.keras.Input(shape=(input_ch + input_ch_views)) inputs_pts, inputs_views = tf.split(inputs, [input_ch, input_ch_views], -1) inputs_pts.set_shape([None, input_ch]) inputs_views.set_shape([None, input_ch_views]) print(inputs.shape, inputs_pts.shape, inputs_views.shape) outputs = inputs_pts for i in range(D): outputs = tf.keras.layers.Dense(W)(outputs) outputs = tf.keras.activations.relu(outputs) if i in skips: outputs = tf.concat([inputs_pts, outputs], -1) if use_viewdirs: alpha_out = dense(1, act=None)(outputs) bottleneck = dense(256, act=None)(outputs) inputs_viewdirs = tf.concat( [bottleneck, inputs_views], -1) # concat viewdirs outputs = inputs_viewdirs # The supplement to the paper states there are 4 hidden layers here, but this is an error since # the experiments were actually run with 1 hidden layer, so we will leave it as 1. for i in range(1): outputs = dense(W//2)(outputs) outputs = dense(3, act=None)(outputs) outputs = tf.concat([outputs, alpha_out], -1) else: outputs = dense(output_ch, act=None)(outputs) model = tf.keras.Model(inputs=inputs, outputs=outputs) return model # Ray helpers def get_rays(H, W, focal, c2w): """Get ray origins, directions from a pinhole camera.""" i, j = tf.meshgrid(tf.range(W, dtype=tf.float32), tf.range(H, dtype=tf.float32), indexing='xy') dirs = tf.stack([(i-W*.5)/focal, -(j-H*.5)/focal, -tf.ones_like(i)], -1) rays_d = tf.reduce_sum(dirs[..., np.newaxis, :] * c2w[:3, :3], -1) rays_o = tf.broadcast_to(c2w[:3, -1], tf.shape(rays_d)) return rays_o, rays_d def get_rays_np(H, W, focal, c2w): """Get ray origins, directions from a pinhole camera.""" i, j = np.meshgrid(np.arange(W, dtype=np.float32), np.arange(H, dtype=np.float32), indexing='xy') dirs = np.stack([(i-W*.5)/focal, -(j-H*.5)/focal, -np.ones_like(i)], -1) rays_d = np.sum(dirs[..., np.newaxis, :] * c2w[:3, :3], -1) rays_o = np.broadcast_to(c2w[:3, -1], np.shape(rays_d)) return rays_o, rays_d def ndc_rays(H, W, focal, near, rays_o, rays_d): """Normalized device coordinate rays. Space such that the canvas is a cube with sides [-1, 1] in each axis. Args: H: int. Height in pixels. W: int. Width in pixels. focal: float. Focal length of pinhole camera. near: float or array of shape[batch_size]. Near depth bound for the scene. rays_o: array of shape [batch_size, 3]. Camera origin. rays_d: array of shape [batch_size, 3]. Ray direction. Returns: rays_o: array of shape [batch_size, 3]. Camera origin in NDC. rays_d: array of shape [batch_size, 3]. Ray direction in NDC. """ # Shift ray origins to near plane t = -(near + rays_o[..., 2]) / rays_d[..., 2] rays_o = rays_o + t[..., None] * rays_d # Projection o0 = -1./(W/(2.*focal)) * rays_o[..., 0] / rays_o[..., 2] o1 = -1./(H/(2.*focal)) * rays_o[..., 1] / rays_o[..., 2] o2 = 1. + 2. * near / rays_o[..., 2] d0 = -1./(W/(2.*focal)) * \ (rays_d[..., 0]/rays_d[..., 2] - rays_o[..., 0]/rays_o[..., 2]) d1 = -1./(H/(2.*focal)) * \ (rays_d[..., 1]/rays_d[..., 2] - rays_o[..., 1]/rays_o[..., 2]) d2 = -2. * near / rays_o[..., 2] rays_o = tf.stack([o0, o1, o2], -1) rays_d = tf.stack([d0, d1, d2], -1) return rays_o, rays_d # Hierarchical sampling helper def sample_pdf(bins, weights, N_samples, det=False): # Get pdf weights += 1e-5 # prevent nans pdf = weights / tf.reduce_sum(weights, -1, keepdims=True) cdf = tf.cumsum(pdf, -1) cdf = tf.concat([tf.zeros_like(cdf[..., :1]), cdf], -1) # Take uniform samples if det: u = tf.linspace(0., 1., N_samples) u = tf.broadcast_to(u, list(cdf.shape[:-1]) + [N_samples]) else: u = tf.random.uniform(list(cdf.shape[:-1]) + [N_samples]) # Invert CDF inds = tf.searchsorted(cdf, u, side='right') below = tf.maximum(0, inds-1) above = tf.minimum(cdf.shape[-1]-1, inds) inds_g = tf.stack([below, above], -1) cdf_g = tf.gather(cdf, inds_g, axis=-1, batch_dims=len(inds_g.shape)-2) bins_g = tf.gather(bins, inds_g, axis=-1, batch_dims=len(inds_g.shape)-2) denom = (cdf_g[..., 1]-cdf_g[..., 0]) denom = tf.where(denom < 1e-5, tf.ones_like(denom), denom) t = (u-cdf_g[..., 0])/denom samples = bins_g[..., 0] + t * (bins_g[..., 1]-bins_g[..., 0]) return samples
667c2f6baccf55d67c3bb2adc53b01dc04b4b014
9f456fa10d8f7570f8ca4ba80ccd988ff55ec8b1
/rango/forms.py
427b1a2a1f5799f927e714f04d37037e49bf2f5d
[]
no_license
EdwardTsangUoG/Rango
9026acbe8334ef8c23596ee29080b0028e958382
e9d8eee69f131b3988e08ee195f0b834048675c5
refs/heads/master
2022-06-13T12:41:48.033255
2020-05-04T03:10:46
2020-05-04T03:10:46
259,286,081
0
0
null
null
null
null
UTF-8
Python
false
false
1,651
py
from django import forms from rango.models import Page, Category from rango.models import UserProfile from django.contrib.auth.models import User class CategoryForm(forms.ModelForm): name = forms.CharField(max_length=Category.NAME_MAX_LENGTH, help_text="Please enter the category name.") views = forms.IntegerField(widget=forms.HiddenInput(), initial=0) likes = forms.IntegerField(widget=forms.HiddenInput(), initial=0) slug = forms.CharField(widget=forms.HiddenInput(), required=False) class Meta: model = Category fields = ('name',) class PageForm(forms.ModelForm): title = forms.CharField(max_length=Page.TITLE_MAX_LENGTH, help_text="Please enter the title of the page.") url = forms.URLField(max_length=200, help_text="Please enter the URL of the page.") views = forms.IntegerField(widget=forms.HiddenInput(), initial=0) def clean(self): cleaned_data = self.cleaned_data url = cleaned_data.get('url') if url and not url.startswith('http://'): url = f'http://{url}' cleaned_data['url'] = url return cleaned_data class Meta: model = Page exclude = ('category',) class UserForm(forms.ModelForm): password = forms.CharField(widget=forms.PasswordInput()) class Meta: model = User fields = ('username', 'email', 'password',) class UserProfileForm(forms.ModelForm): class Meta: model = UserProfile fields = ('website', 'picture',)
f52f5a4bad8ed31e4cb462e2ed17207a1b3255a4
e298bf40ae88c2bd8e0a07f3e92f3e08a92edcc6
/rpc.py
cbe3b0616fbd34a490c87035a6645337e0a63f49
[]
no_license
KevinKaiQian/polar-bear
46a814c746246394f76505846166673a049f12f2
61d4e0ccd7328a6aa543af3b75e5f7fedf98bf8e
refs/heads/master
2022-04-29T02:15:35.536039
2021-05-19T12:33:07
2021-05-19T12:33:07
172,068,536
2
0
null
2022-03-29T21:56:51
2019-02-22T13:11:58
Python
UTF-8
Python
false
false
16,644
py
# Copyright 2013 Red Hat, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. __all__ = [ 'init', 'cleanup', 'set_defaults', 'add_extra_exmods', 'clear_extra_exmods', 'get_allowed_exmods', 'RequestContextSerializer', 'get_client', 'get_server', 'get_notifier', 'TRANSPORT_ALIASES', ] import functools from oslo_log import log as logging import oslo_messaging as messaging from oslo_serialization import jsonutils from oslo_service import periodic_task from oslo_utils import timeutils import nova.conf import nova.context import nova.exception from nova.i18n import _ from nova import objects CONF = nova.conf.CONF LOG = logging.getLogger(__name__) TRANSPORT = None LEGACY_NOTIFIER = None NOTIFICATION_TRANSPORT = None NOTIFIER = None ALLOWED_EXMODS = [ nova.exception.__name__, ] EXTRA_EXMODS = [] # NOTE(markmc): The nova.openstack.common.rpc entries are for backwards compat # with Havana rpc_backend configuration values. The nova.rpc entries are for # compat with Essex values. TRANSPORT_ALIASES = { 'nova.openstack.common.rpc.impl_kombu': 'rabbit', 'nova.openstack.common.rpc.impl_qpid': 'qpid', 'nova.openstack.common.rpc.impl_zmq': 'zmq', 'nova.rpc.impl_kombu': 'rabbit', 'nova.rpc.impl_qpid': 'qpid', 'nova.rpc.impl_zmq': 'zmq', } def init(conf): global TRANSPORT, NOTIFICATION_TRANSPORT, LEGACY_NOTIFIER, NOTIFIER exmods = get_allowed_exmods() TRANSPORT = messaging.get_transport(conf, allowed_remote_exmods=exmods, aliases=TRANSPORT_ALIASES) NOTIFICATION_TRANSPORT = messaging.get_notification_transport( conf, allowed_remote_exmods=exmods, aliases=TRANSPORT_ALIASES) serializer = RequestContextSerializer(JsonPayloadSerializer()) if conf.notification_format == 'unversioned': LEGACY_NOTIFIER = messaging.Notifier(NOTIFICATION_TRANSPORT, serializer=serializer) NOTIFIER = messaging.Notifier(NOTIFICATION_TRANSPORT, serializer=serializer, driver='noop') elif conf.notification_format == 'both': LEGACY_NOTIFIER = messaging.Notifier(NOTIFICATION_TRANSPORT, serializer=serializer) NOTIFIER = messaging.Notifier(NOTIFICATION_TRANSPORT, serializer=serializer, topics=['versioned_notifications']) else: LEGACY_NOTIFIER = messaging.Notifier(NOTIFICATION_TRANSPORT, serializer=serializer, driver='noop') NOTIFIER = messaging.Notifier(NOTIFICATION_TRANSPORT, serializer=serializer, topics=['versioned_notifications']) def cleanup(): global TRANSPORT, NOTIFICATION_TRANSPORT, LEGACY_NOTIFIER, NOTIFIER assert TRANSPORT is not None assert NOTIFICATION_TRANSPORT is not None assert LEGACY_NOTIFIER is not None assert NOTIFIER is not None TRANSPORT.cleanup() NOTIFICATION_TRANSPORT.cleanup() TRANSPORT = NOTIFICATION_TRANSPORT = LEGACY_NOTIFIER = NOTIFIER = None def set_defaults(control_exchange): messaging.set_transport_defaults(control_exchange) def add_extra_exmods(*args): EXTRA_EXMODS.extend(args) def clear_extra_exmods(): del EXTRA_EXMODS[:] def get_allowed_exmods(): return ALLOWED_EXMODS + EXTRA_EXMODS class JsonPayloadSerializer(messaging.NoOpSerializer): @staticmethod def serialize_entity(context, entity): return jsonutils.to_primitive(entity, convert_instances=True) class RequestContextSerializer(messaging.Serializer): def __init__(self, base): self._base = base def serialize_entity(self, context, entity): if not self._base: return entity return self._base.serialize_entity(context, entity) def deserialize_entity(self, context, entity): if not self._base: return entity return self._base.deserialize_entity(context, entity) def serialize_context(self, context): return context.to_dict() def deserialize_context(self, context): return nova.context.RequestContext.from_dict(context) def get_transport_url(url_str=None): return messaging.TransportURL.parse(CONF, url_str, TRANSPORT_ALIASES) def get_client(target, version_cap=None, serializer=None): assert TRANSPORT is not None serializer = RequestContextSerializer(serializer) return messaging.RPCClient(TRANSPORT, target, version_cap=version_cap, serializer=serializer) def get_server(target, endpoints, serializer=None): assert TRANSPORT is not None serializer = RequestContextSerializer(serializer) return messaging.get_rpc_server(TRANSPORT, target, endpoints, executor='eventlet', serializer=serializer) def get_notifier(service, host=None, publisher_id=None): assert LEGACY_NOTIFIER is not None if not publisher_id: publisher_id = "%s.%s" % (service, host or CONF.host) return LegacyValidatingNotifier( LEGACY_NOTIFIER.prepare(publisher_id=publisher_id)) def get_versioned_notifier(publisher_id): assert NOTIFIER is not None return NOTIFIER.prepare(publisher_id=publisher_id) def create_transport(url): exmods = get_allowed_exmods() return messaging.get_transport(CONF, url=url, allowed_remote_exmods=exmods, aliases=TRANSPORT_ALIASES) class LegacyValidatingNotifier(object): """Wraps an oslo.messaging Notifier and checks for allowed event_types.""" # If true an exception is thrown if the event_type is not allowed, if false # then only a WARNING is logged fatal = False # This list contains the already existing therefore allowed legacy # notification event_types. New items shall not be added to the list as # Nova does not allow new legacy notifications any more. This list will be # removed when all the notification is transformed to versioned # notifications. allowed_legacy_notification_event_types = [ 'aggregate.addhost.end', 'aggregate.addhost.start', 'aggregate.create.end', 'aggregate.create.start', 'aggregate.delete.end', 'aggregate.delete.start', 'aggregate.removehost.end', 'aggregate.removehost.start', 'aggregate.updatemetadata.end', 'aggregate.updatemetadata.start', 'aggregate.updateprop.end', 'aggregate.updateprop.start', 'api.fault', 'compute.instance.create.end', 'compute.instance.create.error', 'compute.instance.create_ip.end', 'compute.instance.create_ip.start', 'compute.instance.create.start', 'compute.instance.delete.end', 'compute.instance.delete_ip.end', 'compute.instance.delete_ip.start', 'compute.instance.delete.start', 'compute.instance.evacuate', 'compute.instance.exists', 'compute.instance.finish_resize.end', 'compute.instance.finish_resize.start', 'compute.instance.live.migration.abort.start', 'compute.instance.live.migration.abort.end', 'compute.instance.live.migration.force.complete.start', 'compute.instance.live.migration.force.complete.end', 'compute.instance.live_migration.post.dest.end', 'compute.instance.live_migration.post.dest.start', 'compute.instance.live_migration._post.end', 'compute.instance.live_migration._post.start', 'compute.instance.live_migration.pre.end', 'compute.instance.live_migration.pre.start', 'compute.instance.live_migration.rollback.dest.end', 'compute.instance.live_migration.rollback.dest.start', 'compute.instance.live_migration._rollback.end', 'compute.instance.live_migration._rollback.start', 'compute.instance.pause.end', 'compute.instance.pause.start', 'compute.instance.power_off.end', 'compute.instance.power_off.start', 'compute.instance.power_on.end', 'compute.instance.power_on.start', 'compute.instance.reboot.end', 'compute.instance.reboot.start', 'compute.instance.rebuild.end', 'compute.instance.rebuild.error', 'compute.instance.rebuild.scheduled', 'compute.instance.rebuild.start', 'compute.instance.rescue.end', 'compute.instance.rescue.start', 'compute.instance.resize.confirm.end', 'compute.instance.resize.confirm.start', 'compute.instance.resize.end', 'compute.instance.resize.error', 'compute.instance.resize.prep.end', 'compute.instance.resize.prep.start', 'compute.instance.resize.revert.end', 'compute.instance.resize.revert.start', 'compute.instance.resize.start', 'compute.instance.restore.end', 'compute.instance.restore.start', 'compute.instance.resume.end', 'compute.instance.resume.start', 'compute.instance.shelve.end', 'compute.instance.shelve_offload.end', 'compute.instance.shelve_offload.start', 'compute.instance.shelve.start', 'compute.instance.shutdown.end', 'compute.instance.shutdown.start', 'compute.instance.snapshot.end', 'compute.instance.snapshot.start', 'compute.instance.soft_delete.end', 'compute.instance.soft_delete.start', 'compute.instance.suspend.end', 'compute.instance.suspend.start', 'compute.instance.trigger_crash_dump.end', 'compute.instance.trigger_crash_dump.start', 'compute.instance.unpause.end', 'compute.instance.unpause.start', 'compute.instance.unrescue.end', 'compute.instance.unrescue.start', 'compute.instance.unshelve.start', 'compute.instance.unshelve.end', 'compute.instance.update', 'compute.instance.volume.attach', 'compute.instance.volume.detach', 'compute.libvirt.error', 'compute.metrics.update', 'compute_task.build_instances', 'compute_task.migrate_server', 'compute_task.rebuild_server', 'HostAPI.power_action.end', 'HostAPI.power_action.start', 'HostAPI.set_enabled.end', 'HostAPI.set_enabled.start', 'HostAPI.set_maintenance.end', 'HostAPI.set_maintenance.start', 'keypair.create.start', 'keypair.create.end', 'keypair.delete.start', 'keypair.delete.end', 'keypair.import.start', 'keypair.import.end', 'network.floating_ip.allocate', 'network.floating_ip.associate', 'network.floating_ip.deallocate', 'network.floating_ip.disassociate', 'scheduler.select_destinations.end', 'scheduler.select_destinations.start', 'servergroup.addmember', 'servergroup.create', 'servergroup.delete', 'volume.usage', ] message = _('%(event_type)s is not a versioned notification and not ' 'whitelisted. See ./doc/source/notification.rst') def __init__(self, notifier): self.notifier = notifier for priority in ['debug', 'info', 'warn', 'error', 'critical']: setattr(self, priority, functools.partial(self._notify, priority)) def _is_wrap_exception_notification(self, payload): # nova.exception_wrapper.wrap_exception decorator emits notification # where the event_type is the name of the decorated function. This # is used in many places but it will be converted to versioned # notification in one run by updating the decorator so it is pointless # to white list all the function names here we white list the # notification itself detected by the special payload keys. return {'exception', 'args'} == set(payload.keys()) def _notify(self, priority, ctxt, event_type, payload): if (event_type not in self.allowed_legacy_notification_event_types and not self._is_wrap_exception_notification(payload)): if self.fatal: raise AssertionError(self.message % {'event_type': event_type}) else: LOG.warning(self.message, {'event_type': event_type}) getattr(self.notifier, priority)(ctxt, event_type, payload) class ClientWrapper(object): def __init__(self, client): self._client = client self.last_access_time = timeutils.utcnow() @property def client(self): self.last_access_time = timeutils.utcnow() return self._client class ClientRouter(periodic_task.PeriodicTasks): """Creates and caches RPC clients that route to cells or the default. The default client connects to the API cell message queue. The rest of the clients connect to compute cell message queues. """ def __init__(self, default_client): super(ClientRouter, self).__init__(CONF) self.clients = {} self.clients['default'] = ClientWrapper(default_client) self.target = default_client.target self.version_cap = default_client.version_cap # NOTE(melwitt): Cells v1 does its own serialization and won't # have a serializer available on the client object. self.serializer = getattr(default_client, 'serializer', None) # Prevent this empty context from overwriting the thread local copy self.run_periodic_tasks(nova.context.RequestContext(overwrite=False)) def _client(self, context, cell_mapping=None): if cell_mapping: client_id = cell_mapping.uuid else: client_id = 'default' try: client = self.clients[client_id].client except KeyError: transport = create_transport(cell_mapping.transport_url) client = messaging.RPCClient(transport, self.target, version_cap=self.version_cap, serializer=self.serializer) self.clients[client_id] = ClientWrapper(client) return client @periodic_task.periodic_task def _remove_stale_clients(self, context): timeout = 60 def stale(client_id, last_access_time): if timeutils.is_older_than(last_access_time, timeout): LOG.debug('Removing stale RPC client: %s as it was last ' 'accessed at %s', client_id, last_access_time) return True return False # Never expire the default client items_copy = list(self.clients.items()) for client_id, client_wrapper in items_copy: if (client_id != 'default' and stale(client_id, client_wrapper.last_access_time)): del self.clients[client_id] def by_instance(self, context, instance): try: cell_mapping = objects.InstanceMapping.get_by_instance_uuid( context, instance.uuid).cell_mapping except nova.exception.InstanceMappingNotFound: # Not a cells v2 deployment cell_mapping = None return self._client(context, cell_mapping=cell_mapping) def by_host(self, context, host): try: cell_mapping = objects.HostMapping.get_by_host( context, host).cell_mapping except nova.exception.HostMappingNotFound: # Not a cells v2 deployment cell_mapping = None return self._client(context, cell_mapping=cell_mapping)
432e3a168d9f8584af32b3451b25be2587875a63
59d345e60814e84a278fb9a23cb8b92aa0a73ffe
/Case4/python/Es2.py
8babb9e909efdab16343f055b3b426edcc4f6dd1
[]
no_license
paoloceravolo/BIS2021
b58aff463b716d8c56f5dbfeeeeffa97a73f60f1
749a638cb56e2955a1ca25f55ab0cae54c3c91e0
refs/heads/main
2023-05-30T05:47:54.971445
2021-06-09T07:56:58
2021-06-09T07:56:58
352,548,786
2
0
null
null
null
null
UTF-8
Python
false
false
3,277
py
import matplotlib.pyplot as plt import pandas as pd import numpy as np from mlxtend.preprocessing import TransactionEncoder from mlxtend.frequent_patterns import apriori, fpmax, fpgrowth from mlxtend.frequent_patterns import association_rules from pm4py.objects.log.util import dataframe_utils from pm4py.objects.conversion.log import converter as log_converter from pm4py.algo.filtering.log.variants import variants_filter df1 = pd.read_csv('./saleslog.csv', parse_dates=['Date']) df2 = pd.read_csv('./wine_description.csv') df_merge = pd.merge(df1,df2, left_on='itemDescription', right_on='name') df_merge['Origin_Type'] = df_merge.apply(lambda row: row.origin +'-'+ row.type, axis=1) print(df_merge) log_csv = dataframe_utils.convert_timestamp_columns_in_df(df_merge) log_csv = log_csv.sort_values('Date') # sort by the timestamp column # inverting itemDescription and type we can make the trace abstraction lower or higher log_csv.rename(columns={'Member_number': 'case:concept:name', 'Date': 'time:timestamp', 'Origin_Type': 'concept:name', 'origin': 'org:resource'}, inplace=True) #change the name to a colum parameters = {log_converter.Variants.TO_EVENT_LOG.value.Parameters.CASE_ID_KEY: 'case:concept:name'} # identify the case_id_key name (if not changed it will simply be the mane of the coloumn) event_log = log_converter.apply(log_csv, parameters=parameters, variant=log_converter.Variants.TO_EVENT_LOG) ## Count solt products count_product_type = log_csv.groupby('org:resource').agg(\ Type=('org:resource', 'count'),\ # Multiple aggregations of the same column using pandas ... FirstOccurence=('time:timestamp', lambda x: x.min()), LastOccurence=('time:timestamp', lambda x: x.max()), Endurance=('time:timestamp', lambda x: x.max() - x.min()), ) print(count_product_type) count_product = log_csv.groupby('concept:name').agg({\ 'concept:name': 'count'}) print(count_product) ## List variants variants = variants_filter.get_variants(event_log) # number of events, cases, and variants included in the list print('Events:', len(log_csv), '- Cases: ', len(event_log),'- Variants:', len(variants)) #print(variants) ## Directly-Follows Graph from pm4py.algo.discovery.dfg import algorithm as dfg_discovery from pm4py.visualization.dfg import visualizer as dfg_visualization # In principle other variants and parameters are available but they are not suported in the last version of PM4ML # https://pm4py.fit.fraunhofer.de/static/assets/api/1.3.4/_modules/pm4py/algo/discovery/dfg/algorithm.html dfg = dfg_discovery.apply(event_log, variant=dfg_discovery.Variants.FREQUENCY) # this setting of the parameters is required to save the result is an SVG file parameters = {dfg_visualization.Variants.FREQUENCY.value.Parameters.FORMAT: "svg"} gviz = dfg_visualization.apply(dfg, log=event_log, variant=dfg_visualization.Variants.FREQUENCY, parameters=parameters) #dfg_visualization.view(gviz) dfg_visualization.save(gviz, "dfg.svg") ## Eventually-Follows Graph #The eventually-follows graph (EFG) is a graph that represents the partial order of the events inside the process executions of the log. from pm4py.statistics.eventually_follows.log import get as efg_get efg_graph = efg_get.apply(event_log) print(len(efg_graph)) print(efg_graph)
5cb2d812c8f0556a94ef4ec982ce8335c0bb556d
9f3eb3b468c17ede4108e933b89686d81556b7db
/sso_db_dr.py
418bc9a4b0f09295c7535abdb216f17e00f6c1e7
[]
no_license
aditya-prasad13/myrepo
5667783dfe803c50713fe00feaac698abe547b7b
7519f237ba43d6498bd6ad03718f1596c70856ad
refs/heads/master
2020-12-02T17:43:27.684325
2017-07-21T09:55:45
2017-07-21T09:55:45
96,417,601
0
0
null
null
null
null
UTF-8
Python
false
false
449
py
#!/usr/bin/python import requests import flask_restful as restful class sso_full_dr(restful.Resource): def get(self): mxs_url = "http://192.168.42.112:5000/api/v0.1/sso_maxdrswitch" mng_url = "http://192.168.42.112:5000/api/v0.1/sso_mongodrswitch" mx_rslt = requests.get(mxs_url) mx_log = mx_rslt.json() mn_rslt = requests.get(mng_url) mn_log = mn_rslt.json() return(mx_log + mn_log)
dd47b3c3b12d0394c13cd989e4409d25f90ad2cc
3e3506f8a9c18744b5e9c1bda2f66315d2ebe753
/snippets/serializers.py
4089503add5e5b2f37f19c8d9fb456de701cad2f
[]
no_license
didoogan/drf
63ad069540124ab057d4f271aa76be650486981a
2a0446b6d38ef8ce67c031b2ac5bff62c519cf40
refs/heads/master
2020-07-31T00:24:19.904525
2016-08-24T20:55:11
2016-08-24T20:55:11
66,281,423
0
0
null
null
null
null
UTF-8
Python
false
false
804
py
from rest_framework import serializers from snippets.models import Snippet, LANGUAGE_CHOICES, STYLE_CHOICES from django.contrib.auth.models import User class SnippetSerializer(serializers.HyperlinkedModelSerializer): owner = serializers.ReadOnlyField(source='owner.username') highlight = serializers.HyperlinkedIdentityField(view_name='snippet-highlight', format='html') class Meta: model = Snippet fields = ('url', 'pk', 'highlight', 'owner', 'title', 'code', 'linenos', 'language', 'style') class UserSerializer(serializers.HyperlinkedModelSerializer): snippets = serializers.HyperlinkedRelatedField(many=True, view_name='snippet-detail', read_only=True) class Meta: model = User fields = ('url', 'pk', 'username', 'snippets')
4e8a9a0d46ec6fd7a0d4e4a3469d3697125dc00a
11c24617b0f62bc55b7d2f34eb65fa63e3e3ec06
/Comprehension-Exercise/02. Words Lengths.py
aea8d7a42100485f584a4451e6753d1751ba87ad
[]
no_license
SilviaKoynova/Python-Advanced
2d1750a4943b82a82ec910d29241bd3fc473289e
0a94556592bca60b29a85849a5e694f2eeeda52b
refs/heads/main
2023-07-18T05:41:33.641250
2021-08-26T21:15:13
2021-08-26T21:15:13
null
0
0
null
null
null
null
UTF-8
Python
false
false
89
py
text = input().split(', ') print(*[f"{name} -> {len(name)}" for name in text], sep=', ')
4dd41f91081d4649e198f6707d9523f035a40245
bad62c2b0dfad33197db55b44efeec0bab405634
/sdk/authorization/azure-mgmt-authorization/azure/mgmt/authorization/v2021_12_01_preview/aio/operations/_access_review_instance_operations.py
378596af3f8ac6f043cf6a4178c98399aedc4ea8
[ "MIT", "LicenseRef-scancode-generic-cla", "LGPL-2.1-or-later" ]
permissive
test-repo-billy/azure-sdk-for-python
20c5a2486456e02456de17515704cb064ff19833
cece86a8548cb5f575e5419864d631673be0a244
refs/heads/master
2022-10-25T02:28:39.022559
2022-10-18T06:05:46
2022-10-18T06:05:46
182,325,031
0
0
MIT
2019-07-25T22:28:52
2019-04-19T20:59:15
Python
UTF-8
Python
false
false
15,208
py
# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, Optional, TypeVar from azure.core.exceptions import ( ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, ResourceNotModifiedError, map_error, ) from azure.core.pipeline import PipelineResponse from azure.core.pipeline.transport import AsyncHttpResponse from azure.core.rest import HttpRequest from azure.core.tracing.decorator_async import distributed_trace_async from azure.core.utils import case_insensitive_dict from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models from ..._vendor import _convert_request from ...operations._access_review_instance_operations import ( build_accept_recommendations_request, build_apply_decisions_request, build_reset_decisions_request, build_send_reminders_request, build_stop_request, ) T = TypeVar("T") ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class AccessReviewInstanceOperations: """ .. warning:: **DO NOT** instantiate this class directly. Instead, you should access the following operations through :class:`~azure.mgmt.authorization.v2021_12_01_preview.aio.AuthorizationManagementClient`'s :attr:`access_review_instance` attribute. """ models = _models def __init__(self, *args, **kwargs) -> None: input_args = list(args) self._client = input_args.pop(0) if input_args else kwargs.pop("client") self._config = input_args.pop(0) if input_args else kwargs.pop("config") self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") @distributed_trace_async async def stop( # pylint: disable=inconsistent-return-statements self, schedule_definition_id: str, id: str, **kwargs: Any ) -> None: """An action to stop an access review instance. :param schedule_definition_id: The id of the access review schedule definition. Required. :type schedule_definition_id: str :param id: The id of the access review instance. Required. :type id: str :keyword callable cls: A custom type or function that will be passed the direct response :return: None or the result of cls(response) :rtype: None :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError, 304: ResourceNotModifiedError, } error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) api_version = kwargs.pop("api_version", _params.pop("api-version", "2021-12-01-preview")) # type: str cls = kwargs.pop("cls", None) # type: ClsType[None] request = build_stop_request( schedule_definition_id=schedule_definition_id, id=id, subscription_id=self._config.subscription_id, api_version=api_version, template_url=self.stop.metadata["url"], headers=_headers, params=_params, ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response if response.status_code not in [204]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorDefinition, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: return cls(pipeline_response, None, {}) stop.metadata = {"url": "/subscriptions/{subscriptionId}/providers/Microsoft.Authorization/accessReviewScheduleDefinitions/{scheduleDefinitionId}/instances/{id}/stop"} # type: ignore @distributed_trace_async async def reset_decisions( # pylint: disable=inconsistent-return-statements self, schedule_definition_id: str, id: str, **kwargs: Any ) -> None: """An action to reset all decisions for an access review instance. :param schedule_definition_id: The id of the access review schedule definition. Required. :type schedule_definition_id: str :param id: The id of the access review instance. Required. :type id: str :keyword callable cls: A custom type or function that will be passed the direct response :return: None or the result of cls(response) :rtype: None :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError, 304: ResourceNotModifiedError, } error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) api_version = kwargs.pop("api_version", _params.pop("api-version", "2021-12-01-preview")) # type: str cls = kwargs.pop("cls", None) # type: ClsType[None] request = build_reset_decisions_request( schedule_definition_id=schedule_definition_id, id=id, subscription_id=self._config.subscription_id, api_version=api_version, template_url=self.reset_decisions.metadata["url"], headers=_headers, params=_params, ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response if response.status_code not in [204]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorDefinition, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: return cls(pipeline_response, None, {}) reset_decisions.metadata = {"url": "/subscriptions/{subscriptionId}/providers/Microsoft.Authorization/accessReviewScheduleDefinitions/{scheduleDefinitionId}/instances/{id}/resetDecisions"} # type: ignore @distributed_trace_async async def apply_decisions( # pylint: disable=inconsistent-return-statements self, schedule_definition_id: str, id: str, **kwargs: Any ) -> None: """An action to apply all decisions for an access review instance. :param schedule_definition_id: The id of the access review schedule definition. Required. :type schedule_definition_id: str :param id: The id of the access review instance. Required. :type id: str :keyword callable cls: A custom type or function that will be passed the direct response :return: None or the result of cls(response) :rtype: None :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError, 304: ResourceNotModifiedError, } error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) api_version = kwargs.pop("api_version", _params.pop("api-version", "2021-12-01-preview")) # type: str cls = kwargs.pop("cls", None) # type: ClsType[None] request = build_apply_decisions_request( schedule_definition_id=schedule_definition_id, id=id, subscription_id=self._config.subscription_id, api_version=api_version, template_url=self.apply_decisions.metadata["url"], headers=_headers, params=_params, ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response if response.status_code not in [204]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorDefinition, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: return cls(pipeline_response, None, {}) apply_decisions.metadata = {"url": "/subscriptions/{subscriptionId}/providers/Microsoft.Authorization/accessReviewScheduleDefinitions/{scheduleDefinitionId}/instances/{id}/applyDecisions"} # type: ignore @distributed_trace_async async def send_reminders( # pylint: disable=inconsistent-return-statements self, schedule_definition_id: str, id: str, **kwargs: Any ) -> None: """An action to send reminders for an access review instance. :param schedule_definition_id: The id of the access review schedule definition. Required. :type schedule_definition_id: str :param id: The id of the access review instance. Required. :type id: str :keyword callable cls: A custom type or function that will be passed the direct response :return: None or the result of cls(response) :rtype: None :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError, 304: ResourceNotModifiedError, } error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) api_version = kwargs.pop("api_version", _params.pop("api-version", "2021-12-01-preview")) # type: str cls = kwargs.pop("cls", None) # type: ClsType[None] request = build_send_reminders_request( schedule_definition_id=schedule_definition_id, id=id, subscription_id=self._config.subscription_id, api_version=api_version, template_url=self.send_reminders.metadata["url"], headers=_headers, params=_params, ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response if response.status_code not in [204]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorDefinition, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: return cls(pipeline_response, None, {}) send_reminders.metadata = {"url": "/subscriptions/{subscriptionId}/providers/Microsoft.Authorization/accessReviewScheduleDefinitions/{scheduleDefinitionId}/instances/{id}/sendReminders"} # type: ignore @distributed_trace_async async def accept_recommendations( # pylint: disable=inconsistent-return-statements self, schedule_definition_id: str, id: str, **kwargs: Any ) -> None: """An action to accept recommendations for decision in an access review instance. :param schedule_definition_id: The id of the access review schedule definition. Required. :type schedule_definition_id: str :param id: The id of the access review instance. Required. :type id: str :keyword callable cls: A custom type or function that will be passed the direct response :return: None or the result of cls(response) :rtype: None :raises ~azure.core.exceptions.HttpResponseError: """ error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError, 304: ResourceNotModifiedError, } error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) api_version = kwargs.pop("api_version", _params.pop("api-version", "2021-12-01-preview")) # type: str cls = kwargs.pop("cls", None) # type: ClsType[None] request = build_accept_recommendations_request( schedule_definition_id=schedule_definition_id, id=id, api_version=api_version, template_url=self.accept_recommendations.metadata["url"], headers=_headers, params=_params, ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore pipeline_response = await self._client._pipeline.run( # type: ignore # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response if response.status_code not in [204]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorDefinition, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) if cls: return cls(pipeline_response, None, {}) accept_recommendations.metadata = {"url": "/providers/Microsoft.Authorization/accessReviewScheduleDefinitions/{scheduleDefinitionId}/instances/{id}/acceptRecommendations"} # type: ignore
3bf3ccb41efe680ae577b1d5444cf90dde7f37a2
4599452268f81ee81df8cd5b121fc29678391792
/src/draw_spheres.py
06d4fb0463b4a54a746afa4f497db0d8223de43b
[ "MIT" ]
permissive
detorto/mdvis
766cd94ac7f3c125608f83d3652b120ffbf9bfb7
289142f590d5df8f497621a1c1789afacce4809f
refs/heads/master
2021-01-23T14:03:52.960284
2015-11-17T11:23:39
2015-11-17T11:23:39
42,182,823
0
0
null
null
null
null
UTF-8
Python
false
false
6,597
py
# mencoder "mf://mpg_288x288x24_lam15_t273_a0353140_0000_rv.dat_%d.png" -mf fps=20 -o anim.avi -ovc lavc -lavcopts vcodec=msmpeg4v2:vbitrate=500 import numpy import sys from mmdlab.datareader import readfile_metgas_bin from mmdlab.utils import make_mlab_scalar_field from mmdlab.utils import show_scalar_planes from mmdlab.utils import show_vector_planes from mmdlab.utils import init_mlab_scene from mmdlab.utils import showable from mmdlab.utils import saveimg from mmdlab.utils import offscreen from mayavi import mlab import time import pylab from numba import jit from numba import float64, int8 import pp #@jit(int8(float64,float64,float64, float64,float64,float64,int8,int8),nogil=True) def mfilter(x,y,z,vx,vy,vz,t,n): ns =[8144152, 8142982, 8137175, 8142432, 8132058, 8130816, 8139516, 8137854, 8139295, 8154596, 8129084, 8134502, 8149714, 8134528, 8145199, 8131842, 8155706, 8129805, 8139771, 8146148, 8135555, 8134526, 8144085, 8130692, 8148841, 8142874, 8134494, 8129329, 8154557, 8128711, 8150156, 8150207, 8142836, 8154068, 8134148, 8129157, 8143673, 8144130, 8148536, 8128829, 8155106, 8137542, 8150948, 8135426, 8151492, 8155319, 8140672, 8144383, 8152104, 8145686, 8140149, 8155759, 8140222, 8151178, 8135977, 8149256, 8147517, 8148704, 8133363, 8155726, 8154429, 8139576, 8152290, 8151215, 8130536, 8139455, 8155697, 8147242, 8145822, 8137803, 8134794, 8149551, 8129039, 8149311, 8131412, 8130617, 8130340, 8133518, 8153647, 8144446, 8147725, 8141710, 8128719, 8137067, 8155636, 8138744, 8149002, 8131983, 8156214, 8139178, 8148133, 8135299, 8142516, 8129059, 8148007, 8129397, 8139214, 8135681, 8155840, 8151616, 8147665, 8146178, 8136830, 8150754, 8128688, 8154616, 8141421, 8145621, 8153072, 8142961, 8139978, 8144150, 8134973, 8130922, 8150702, 8145994, 8138922, 8135463, 8150372, 8155600, 8151275, 8146091, 8131391, 8146084, 8131485, 8136487, 8147690, 8145297, 8142450, 8144011, 8146063, 8152593, 8140472, 8141862, 8147634, 8153645, 8138217, 8131751, 8132770, 8138279, 8131678, 8149772, 8141578, 8143689, 8137524, 8129998, 8148840, 8136955, 8152885, 8137300, 8150211, 8138343, 8140685, 8150252, 8151006, 8151222, 8134343, 8136585, 8152699, 8152629, 8156585, 8147751, 8154660, 8134584, 8142159, 8150187, 8154913, 8148868, 8135148, 8150579, 8138668, 8154089, 8156221, 8131715, 8146196, 8134778, 8141532, 8132951, 8145946, 8133361, 8129611, 8137788, 8140157, 8146085, 8149448, 8142679, 8148455, 8144180, 8135738, 8143517, 8140707, 8145667, 8153296, 8151223, 8144199, 8146648, 8129640, 8133488, 8132506, 8149683, 8145992, 8133813, 8139051, 8155016, 8132819, 8130806, 8138958, 8149266, 8129537, 8150855, 8133341, 8155787, 8156076, 8132352, 8150047, 8133205, 8154433, 8139094, 8138391, 8149463, 8146049, 8154772, 8139710, 8133987, 8144938, 8156507, 8145558, 8132492, 8154418, 8148501, 8133796, 8140191, 8137956, 8133245, 8152886, 8129477, 8132385, 8142977, 8154559, 8141061, 8149822, 8148963, 8149369, 8134210, 8146548, 8130786, 8133663, 8139704, 8140119, 8146637, 8142395, 8142729, 8135689, 8150938, 8144609, 8130139, 8135347, 8147166, 8149730, 8146620, 8134913, 8134598, 8141882, 8143001, 8129198, 8144080, 8139374, 8139692, 8135254, 8133328, 8142561, 8137775, 8140855, 8134791, 8150071, 8151090, 8129054, 8149964, 8132777, 8132536, 8132268, 8136593, 8149078, 8154799, 8129224, 8139046, 8137099, 8152772, 8153219, 8135262, 8150266, 8136507, 8132670, 8153935, 8155594, 8137538,] #global ns if t == 0 and z > 9: return 1 else: if n in ns: return 1 else: return 0 return 0 #@showable #@saveimg("test.png") import threading from multiprocessing.dummy import Pool as ThreadPool def readdata(datafile): print datafile return mmdlab.datareader.readfile_metgas_bin(datafile,pfilter=mfilter, parts_at_once=10000) @jit(nogil = True) def get_traj(gas_steps): parts = {} for n in gas_steps[0].n: print "Making traj for ", n parts[n] = {"x":[],"y":[],"z":[],"t":[]} for step in gas_steps: parts[n]["x"].append(step.x[numpy.where(step.n==n)]) parts[n]["y"].append(step.y[numpy.where(step.n==n)]) parts[n]["z"].append(step.z[numpy.where(step.n==n)]) parts[n]["t"].append(step.t[numpy.where(step.n==n)]) return parts def do_mlab(): f = open(sys.argv[1]+"/index.list","r") lines = f.readlines() calls = [] lc = None for i,line in enumerate(lines): calls.append( (i, sys.argv[1]+line[:-1])) #,region=[0,10000,0,30,8,13]) lc = sys.argv[1]+line[:-1] print calls ppservers = () job_server = pp.Server(ppservers=ppservers, ncpus = 10) print "Starting pp with", job_server.get_ncpus(), "workers" # The following submits 8 jobs and then retrieves the results jobs = [ job_server.submit(readdata,(data[1],), (mfilter,), ("mmdlab","mmdlab.datareader")) for data in calls]; size = int(1920), int(1080) fig = mlab.figure('Viz', size=size,bgcolor=(0,0,0)) fig.scene.anti_aliasing_frames = 0 import time gas = [] for i,job in enumerate(jobs): (metal,g) = job() gas.append(g) print "Job",i,"done" traj = get_traj(gas) parts_no = [8144152,8156221, 8131715, 8146196, 8134778, 8141532, 8132951, 8145946, 8133361, 8129611, 8137788, 8140157, 8146085,] lm,lg = readfile_metgas_bin(lc, pfilter=mfilter, parts_at_once=10000) for p in parts_no: val = traj[p] ppl = mlab.plot3d(val["x"], val["y"], val["z"], val["t"], tube_radius=0.025, colormap='cool'); mlab.colorbar(ppl) #for g in gas: # mlab.points3d(g.x[numpy.where(g.n == p)],g.y[numpy.where(g.n == p)],g.z[numpy.where(g.n == p)],scale_factor=lm.d, colormap='cool') # mlab.text(color=(1,0,0),width=0.06,x = g.x[numpy.where(g.n == p)][0],y= g.y[numpy.where(g.n == p)][0],z = g.z[numpy.where(g.n == p)][0],text = str(g.t[numpy.where(g.n == p)][0])) #mlab.points3d(lg.x, lg.y, lg.z, lg.t, scale_mode="none",scale_factor=lg.d, colormap="cool") mscat = mlab.pipeline.scalar_scatter(lm.x, lm.y, lm.z) mgauss = mlab.pipeline.gaussian_splatter(mscat) mlab.pipeline.iso_surface(mgauss,colormap="black-white",contours=[0.9999,],opacity = 1) #mlab.points3d(lm.x, lm.y, lm.z, lm.t, scale_mode="none",scale_factor=lm.d, colormap="copper") #for val in traj.values(): # #print "Drawing metal" #metp = mlab.points3d(metal.x,metal.y,metal.z,metal.v,scale_mode="none",scale_factor=metal.d, colormap="copper",mode = "point",mask_points = 100) #print "Drawing gas" #gasp = mlab.points3d(gas.x,gas.y,gas.z,gas.v,scale_mode="none",scale_factor=gas.d,colormap="cool") #print "saving to ./vid/{num:02d}.png".format(num=i) #mlab.savefig("./vid/{num:02d}.png".format(num=i)) #mlab.clf() mlab.show() do_mlab()
9161e0ad432f400f0a9950f61ccdff10dcdb800a
69c613b80e324ff13d2fd69de87c19f159d10723
/test.py
92c5d4c80e8c3d0060843521db5f2d26d1e951a5
[]
no_license
cliu268/playground
e0f711cf4b50dd85583819e5a36e3eb470ab9af4
7ed0105e0ec020220cccde2dcee17f95c67b06a0
refs/heads/master
2023-08-30T01:13:33.398037
2021-09-15T15:35:23
2021-09-15T15:35:23
299,123,945
0
2
null
2021-03-11T04:23:18
2020-09-27T21:38:54
Jupyter Notebook
UTF-8
Python
false
false
572
py
# print("Hello World!") # print(" /|") # print(" / |") # print(" / |") # print(" / |") # print(" /____|") # name = "WHATTTT" # print(" My name is " + name + "!!!!") # num1 = input("Enter number1:") # num2 = input("Enter number2:") # result = float(num1) + float(num2) # print(result) import pandas as pd from urllib.request import urlretrieve urlretrieve('https://hub.jovian.ml/wp-content/uploads/2020/09/italy-covid-daywise.csv', 'italy-covid-daywise.csv') covid_df = pd.read_csv('italy-covid-daywise.csv') type(covid_df) covid_df
967471732afb0087d67b56255bd24043c473e360
40568ca4b55301ce319b7e2226b33a8a58ac45ec
/23. Intro to MongoDB/add_document_to_db.py
5a88b8e504d4f3efb3ed929265da4e659be23695
[]
no_license
robbrooks1991/Coding-Challenges
4b56fe9b6702a8636fe15b29cd46e9ac206b0c66
d56e60d53e4940c6a3377c43181b6381a548d461
refs/heads/master
2021-01-20T07:57:35.403416
2017-06-21T18:56:47
2017-06-21T18:56:47
90,068,262
0
0
null
null
null
null
UTF-8
Python
false
false
559
py
import pymongo def mongo_connect(): try: conn = pymongo.MongoClient() print "Mongo is connected!" return conn except pymongo.errors.ConnectionFailure, e: print "Could not connect to MongoDB: %s" % e conn = mongo_connect() db = conn['twitter_stream'] coll = db.my_collection doc = {"name": "Code", "surname": "Institute", "twitter": "@codersinstitute"} coll.insert( doc ) result = coll.find_one() print result # {u'twitter': u'@codersinstitute', u'_id': ObjectId('5629264db1bae125ac446ba5'), u'surname': u'Institute', u
9967b11ca418049e6e54fc94c3f1f8329ceb7f25
61e6538e049fd0d10424eb78f2197d8758fac3ce
/kitty.py
d2ddd30572d7f677c16f3e174e14e41a14345b7b
[]
no_license
chivaree/chivaree
544769e0350addffe6b1eac6c4fe69f3a8eb3b9b
4c265600b1de81f3918a1b7d58158651223837c5
refs/heads/master
2020-03-28T08:53:01.555001
2019-05-30T01:52:18
2019-05-30T01:52:18
147,996,168
0
2
null
null
null
null
UTF-8
Python
false
false
1,144,848
py
# -*- coding: utf-8 -*- from Rin2.linepy import * from Rin2.akad.ttypes import * from multiprocessing import Pool, Process from datetime import datetime from time import sleep from bs4 import BeautifulSoup from humanfriendly import format_timespan, format_size, format_number, format_length import time, random, sys, json, codecs, threading, glob, re, string, os, requests, subprocess, six, ast, pytz, urllib, urllib.request, urllib.parse, urllib.error, urllib.parse,antolib,subprocess,unicodedata,GACSender,pafy, youtube_dl, timeit, atexit, traceback _session = requests.session() from gtts import gTTS from googletrans import Translator import youtube_dl #==============================================================================# botStart = time.time() #==============================================================================# print ("\n\n🌟• 𝕔𝕙𝕚𝕧𝕒𝕣𝕖𝕖 𝕓𝕠𝕥𝕝𝕚𝕟𝕖 •🌟\n") #line = LINE() #line = LINE("เมล","พาส") line = LINE() line.log("Auth Token : " + str(line.authToken)) line.log("Timeline Token : " + str(line.tl.channelAccessToken)) print ("Login Succes") lineMID = line.profile.mid lineProfile = line.getProfile() lineSettings = line.getSettings() oepoll = OEPoll(line) #call = Call(line) readOpen = codecs.open("read.json","r","utf-8") settingsOpen = codecs.open("temp.json","r","utf-8") read = json.load(readOpen) settings = json.load(settingsOpen) Rfu = [line] Exc = [line] lineMID = line.getProfile().mid bot1 = line.getProfile().mid RfuBot=[lineMID] Family=["u7ae0eb00e07b2d6b7f4dd9ba577a2e3e",lineMID] admin=['u7ae0eb00e07b2d6b7f4dd9ba577a2e3e',lineMID] RfuFamily = RfuBot + Family protectname = [] protecturl = [] protection = [] autocancel = {} autoinvite = [] autoleaveroom = [] targets = [] #==============================================================================# msg_dict = {} msg_dict1 = {} msg_image={} msg_video={} msg_sticker={} settings = { "autoAdd": True, "autoJoin": False, 'autoCancel':{"on":True,"members":5}, "autoLeave": True, "autoRead": False, "leaveRoom": False, "detectMention": True, "checkSticker": False, "checkContact": False, "checkPost": False, "kickMention": False, "potoMention": True, "delayMention": False, "lang":"JP", "Wc": True, "Lv": True, "Nk": True, "Api": True, "Aip": False, "blacklist":{}, "winvite": False, "wblacklist": False, "dblacklist": False, "gift":False, "likeOn":False, "timeline":False, "commentOn":True, "commentBlack":{}, "wblack": False, "dblack": False, "clock": False, "cName":"", "cNames":"", "changeGroupPicture": [], "changePictureProfile":False, "unsendMessage": False, "autoJoinTicket": False, "welcome":"✧••••••••••❂✧✯✧❂••••••••••✧", "kick":"✧••••••••••❂✧✯✧❂•••••••••••✧", "bye":"❂•➤➤➤➤➤➤➤➤➤➤➤➤", "Respontag":"", "eror":"คุณใช้คำสั่งผิด กรุณาศึกษาวิธีใช้ หรือสอบถามกับผู้สร้าง โดยพิมคำสั่ง *.ผส*เพื่อแสดง คท ", "spam":{}, "invite": {}, "winvite": False, "pnharfbot": {}, "pname": {}, "server": "VPS", "pro_name": {}, "message1":"", "c":"✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯", "s":"", "message":"✧••••••••••••❂✧✯✧❂•••••••••••••✧\n ➤➤ ֆҽℓƒ-β❂T-ՃิՁণຮี ➤➤\n✧••••••••••••❂✧✯✧❂•••••••••••••✧\n\n 💀• Aüto Blöck Messagë •💀\n\n☆➣ บัญชีนี้ได้รับการป้องกันค่ะ\n☆➣ ระบบได้บล็อคคุณอัติโนมัติค่ะ\n☆➣ ต้องยืนยันกับเจ้าของบัญชีนี้\n☆➣ โดยการพิมคำว่า ไวรัสปีโป้\n☆➣ เราจะปลดบล็อคท่านอัติโนมัติ\n☆➣ ขออภัยที่ไม่ได้รับความสะดวก\n☆➣ เพราะเจ้าของบัญชีเกรียนค่ะ\n☆➣ ขอบคุณค่ะ จุ๊ฟป้อก~•▪○\n\n✧••••••••••••❂✧✯✧❂•••••••••••••✧\n ออโต้บล็อค: โดยท่านอัจฉริยะเอจัง", "comment":"✧••••••••••❂✧✯✧❂••••••••••✧", "userAgent": [ "Mozilla/5.0 (X11; U; Linux i586; de; rv:5.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (X11; U; Linux amd64; rv:5.0) Gecko/20100101 Firefox/5.0 (Debian)", "Mozilla/5.0 (X11; U; Linux amd64; en-US; rv:5.0) Gecko/20110619 Firefox/5.0", "Mozilla/5.0 (X11; Linux) Gecko Firefox/5.0", "Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20100101 Firefox/5.0 FirePHP/0.5", "Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20100101 Firefox/5.0 Firefox/5.0", "Mozilla/5.0 (X11; Linux x86_64) Gecko Firefox/5.0", "Mozilla/5.0 (X11; Linux ppc; rv:5.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (X11; Linux AMD64) Gecko Firefox/5.0", "Mozilla/5.0 (X11; FreeBSD amd64; rv:5.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:5.0) Gecko/20110619 Firefox/5.0", "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:5.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (Windows NT 6.1.1; rv:5.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (Windows NT 5.2; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (Windows NT 5.1; U; rv:5.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (Windows NT 5.0; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0", "Mozilla/5.0 (Windows NT 5.0; rv:5.0) Gecko/20100101 Firefox/5.0" ], "mimic": { "copy": False, "status": False, "target": {} } } RfuProtect = { "protect": False, "cancelprotect": False, "inviteprotect": False, "linkprotect": False, "Protectguest": False, "Protectjoin": False, "autoAdd": True, } Setmain = { "foto": {}, } read = { "readPoint": {}, "readMember": {}, "readTime": {}, "setTime":{}, "ROM": {} } myProfile = { "displayName": "", "statusMessage": "", "pictureStatus": "" } mimic = { "copy":False, "copy2":False, "status":False, "target":{} } RfuCctv={ "cyduk":{}, "point":{}, "sidermem":{} } rfuSet = { 'setTime':{}, 'ricoinvite':{}, 'winvite':{}, } user1 = lineMID user2 = "" setTime = {} setTime = rfuSet['setTime'] contact = line.getProfile() backup = line.getProfile() backup.dispalyName = contact.displayName backup.statusMessage = contact.statusMessage backup.pictureStatus = contact.pictureStatus mulai = time.time() try: with open("Log_data.json","r",encoding="utf_8_sig") as f: msg_dict = json.loads(f.read()) except: print("Couldn't read Log data") myProfile["displayName"] = lineProfile.displayName myProfile["statusMessage"] = lineProfile.statusMessage myProfile["pictureStatus"] = lineProfile.pictureStatus #==============================================================================# #==============================================================================# def Rapid1Say(mtosay): line.sendText(Rapid1To,mtosay) def sendMessageCustom(to, text, icon, name): khieCool = { 'MSG_SENDER_ICON': icon, 'MSG_SENDER_NAME': name, } line.sendMessage(to, text, contentMetadata=khieCool) def sendContactCustom(to, mid, icon, name): khieCool = { 'mid':mid, 'MSG_SENDER_ICON': icon, 'MSG_SENDER_NAME': name, } line.sendMessage(to, None, contentMetadata=khieCool, contentType=13) def RhyN_(to, mid): try: aa = '{"S":"0","E":"3","M":'+json.dumps(mid)+'}' text_ = '@Rh' line.sendMessage(to, text_, contentMetadata={'MENTION':'{"MENTIONEES":['+aa+']}'}, contentType=0) except Exception as error: logError(error) def load(): global images global stickers with open("image.json","r") as fp: images = json.load(fp) with open("sticker.json","r") as fp: stickers = json.load(fp) def sendSticker(to, version, packageId, stickerId): contentMetadata = { 'STKVER': version, 'STKPKGID': packageId, 'STKID': stickerId } line.sendMessage(to, '', contentMetadata, 7) def sendImage(to, path, name="image"): try: if settings["server"] == "VPS": line.sendImageWithURL(to, str(path)) except Exception as error: logError(error) def backupData(): try: backup1 = Setmain f = codecs.open('setting.json','w','utf-8') json.dump(backup1, f, sort_keys=True, indent=4, ensure_ascii=False) backup2 = settings f = codecs.open('settings.json','w','utf-8') json.dump(backup2, f, sort_keys=True, indent=4, ensure_ascii=False) backup3 = wait f = codecs.open('wait.json','w','utf-8') json.dump(backup3, f, sort_keys=True, indent=4, ensure_ascii=False) backup4 = read f = codecs.open('read.json','w','utf-8') json.dump(backup4, f, sort_keys=True, indent=4, ensure_ascii=False) return True except Exception as error: logError(error) return False def download_page(url): version = (3,0) cur_version = sys.version_info if cur_version >= version: import urllib,request try: headers = {} headers['User-Agent'] = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36" req = urllib,request.Request(url, headers = headers) resp = urllib,request.urlopen(req) respData = str(resp.read()) return respData except Exception as e: print(str(e)) else: import urllib2 try: headers = {} headers['User-Agent'] = "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.27 Safari/537.17" req = urllib2.Request(url, headers = headers) response = urllib2.urlopen(req) page = response.read() return page except: return"Page Not found" def summon(to, nama): aa = "" bb = "" strt = int(14) akh = int(14) nm = nama for mm in nm: akh = akh + 2 aa += """{"S":"""+json.dumps(str(strt))+""","E":"""+json.dumps(str(akh))+""","M":"""+json.dumps(mm)+"},""" strt = strt + 6 akh = akh + 4 bb += "\xe2\x95\xa0 @x \n" aa = (aa[:int(len(aa)-1)]) msg = Message() msg.to = to msg.text = "\xe2\x95\x94\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\n"+bb+"\xe2\x95\x9a\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90\xe2\x95\x90" msg.contentMetadata ={'MENTION':'{"MENTIONEES":['+aa+']}','EMTVER':'4'} print ("TAG ALL") try: line.sendMessage(msg) except Exception as error: print(error) def restartBot(): print ("RESTART SERVER") time.sleep(3) python = sys.executable os.execl(python, python, *sys.argv) def _images_get_all_items(page): items = [] while True: item, end_content = _images_get_next_item(page) if item == "no_links": break else: items.append(item) time.sleep(0.1) page = page[end_content:] return items def logError(text): line.log("[ แจ้งเตือน ] " + str(text)) time_ = datetime.now() with open("errorLog.txt","a") as error: error.write("\n[%s] %s" % (str(time), text)) def sendMention(to, mid, firstmessage, lastmessage): try: arrData = "" text = "%s " %(str(firstmessage)) arr = [] mention = "@x " slen = str(len(text)) elen = str(len(text) + len(mention) - 1) arrData = {'S':slen, 'E':elen, 'M':mid} arr.append(arrData) text += mention + str(lastmessage) line.sendMessage(to, text, {'MENTION': str('{"MENTIONEES":' + json.dumps(arr) + '}')}, 0) except Exception as error: logError(error) line.sendMessage(to, "[ INFO ] Error :\n" + str(error)) def sendMessage(to, text, contentMetadata={}, contentType=0): mes = Message() mes.to, mes.from_ = to, profile.mid mes.text = text mes.contentType, mes.contentMetadata = contentType, contentMetadata if to not in messageReq: messageReq[to] = -1 messageReq[to] += 1 def sendMessageWithMention(to, lineMID): try: aa = '{"S":"0","E":"3","M":'+json.dumps(lineMID)+'}' text_ = '@x ' line.sendMessage(to, text_, contentMetadata={'MENTION':'{"MENTIONEES":['+aa+']}'}, contentType=0) except Exception as error: logError(error) def cTime_to_datetime(unixtime): return datetime.fromtimestamp(int(str(unixtime)[:len(str(unixtime))-3])) def dt_to_str(dt): return dt.strftime('%H:%M:%S') def changeVideoAndPictureProfile(pict, vids): try: files = {'file': open(vids, 'rb')} obs_params = line.genOBSParams({'oid': lineMID, 'ver': '2.0', 'type': 'video', 'cat': 'vp.mp4'}) data = {'params': obs_params} r_vp = line.server.postContent('{}/talk/vp/upload.nhn'.format(str(line.server.LINE_OBS_DOMAIN)), data=data, files=files) if r_vp.status_code != 201: return "Failed update profile" line.updateProfilePicture(pict, 'vp') return "Success update profile" except Exception as e: raise Exception("Error change video and picture profile {}".format(str(e))) def waktu(secs): mins, secs = divmod(secs,60) hours, mins = divmod(mins,60) days,hours = divmod(hours,24) return '%02d วัน %02d ชั่วโมง %02d นาที %02d วินาที' % (days, hours, mins, secs) def delete_log(): ndt = datetime.datetime.now() for data in msg_dict: if (datetime.datetime.utcnow() - cTime_to_datetime(msg_dict[data]["createdTime"])) > datetime.timedelta(1): del msg_dict[msg_id] def welcomeMembers(to, mid): try: arrData = "" textx = "「{}」\nสวัสดี ".format(str(len(mid))) arr = [] no = 1 num = 2 for i in mid: ginfo = line.getGroup(to) mention = "@x\n" slen = str(len(textx)) elen = str(len(textx) + len(mention) - 1) arrData = {'S':slen, 'E':elen, 'M':i} arr.append(arrData) # textx += mention+settings["welcome"]+"\n 􂜁􀅣>􏿿􂘁􀄗w􏿿􂘁􀄅e􏿿􂘁􀄌l􏿿􂜁􀄃c􏿿􂘁􀄏o􏿿􂘁􀄍m􏿿 􂜁􀄅e􏿿􂜁􀅢<􏿿\n\n􀼂􀅝church􏿿􀼂􀅜arbor􏿿﹏􀼂􀅞limo 1􏿿􀼂􀅟limo 2􏿿􀼂􀅠limo 3􏿿﹏􀼂􀅜arbor􏿿􀼂􀅝church􏿿 \n\n􀼂􀆼หงส์􏿿 ยินดีต้อนรับ🌷ᵀᴼ ᴳᴿᴼᵁᴾ🌷􀼂􀆼หงส์􏿿\n"+str(ginfo.name)+"\n􀼂􀆼หงส์􏿿 มาใหม่ แนะนำตัวด้วยนะจ๊ะ 􀼂􀆼หงส์􏿿\n􀔃􀄲ปิดเสียง􏿿ปิดเสียงแจ้งเตือนด้วยจร้า􀔃􀄲ปิดเสียง􏿿\n􀼂􀅝church􏿿􀼂􀅜arbor􏿿﹏􀼂􀅞limo 1􏿿􀼂􀅟limo 2􏿿􀼂􀅠limo 3􏿿﹏􀼂􀅜arbor􏿿􀼂􀅝church􏿿 \n􀐂􀇲เขียน􏿿..ขอบคุณที่สนับสนุนบอทเรา..\n􀔃􀄎ข้อความ􏿿 ID tome2527\n􀼂􀆢โทร􏿿 0928081567\n\nระบบต้อนรับแยกห้องโดย 𝕿𝖔𝖒𝖊💞𝕾𝖊𝖑𝖋𝖇𝖔𝖙💞𝕴𝖓💞𝕷𝖎𝖓𝖊" textx += mention+settings["welcome"]+"\nชื่อห้อง "+str(ginfo.name)+"\n\nระบบต้อนรับแยกห้องโดย เอจัง" if no < len(mid): no += 1 textx += "%i " % (num) num=(num+1) else: try: no = "\n┗━━[ {} ]".format(str(client.getGroup(to).name)) except: no = "\n┗━━[ Success ]" line.sendMessage(to, textx, {'MENTION': str('{"MENTIONEES":' + json.dumps(arr) + '}')}, 0) except Exception as error: line.sendMessage(to, "[ INFO ] Error :\n" + str(error)) def leaveMembers(to, mid): try: arrData = "" textx = "「{}」\nลาก่อนจ้า ".format(str(len(mid))) arr = [] no = 1 num = 2 for i in mid: ginfo = line.getGroup(to) mention = "@x\n" slen = str(len(textx)) elen = str(len(textx) + len(mention) - 1) arrData = {'S':slen, 'E':elen, 'M':i} arr.append(arrData) #textx += mention+settings["leave"]+"\n\n 􀔃􀅇แดง􏿿􂜁􀄇g􏿿􂜁􀄏o􏿿􂜁􀄏o􏿿􂜁􀄄d􏿿􂜁􀅷b􏿿􂜁􀄙y􏿿􂘁􀄅e􏿿􀔃􀅇แดง􏿿􀬁\n 􀼂􀅝church􏿿􀼂􀅜arbor􏿿﹏􀼂􀅞limo 1􏿿􀼂􀅟limo 2􏿿􀼂􀅠limo 3􏿿﹏􀼂􀅜arbor􏿿􀼂􀅝church􏿿\n"+str(ginfo.name)+"\n 􀼂􀆼หงส์􏿿.. แล้วพบกันใหม่นะจ๊ะ..􀼂􀆼หงส์􏿿\n􀐂􀇲เขียน􏿿..ขอบคุณที่สนับสนุนบอท จร้าา.. \n􀼂􀅝church􏿿􀼂􀅜arbor􏿿﹏􀼂􀅞limo 1􏿿􀼂􀅟limo 2􏿿􀼂􀅠limo 3􏿿﹏􀼂􀅜arbor􏿿􀼂􀅝church􏿿 \n􀔃􀄎ข้อความ􏿿https://line.me/ti/p/tome2527\n􀼂􀆢โทร􏿿 0928081567\n\nระบบต้อนรับแยกห้องโดย 𝕿𝖔𝖒𝖊💞𝕾𝖊𝖑𝖋𝖇𝖔𝖙💞𝕴𝖓💞𝕷𝖎𝖓𝖊" textx += mention+settings["leave"]+"\nชื่อห้อง "+str(ginfo.name)+"\n\nระบบต้อนรับแยกห้องโดย คุณเอจัง" if no < len(mid): no += 1 textx += "%i " % (num) num=(num+1) else: try: no = "\n┗━━[ {} ]".format(str(client.getGroup(to).name)) except: no = "\n┗━━[ Success ]" line.sendMessage(to, textx, {'MENTION': str('{"MENTIONEES":' + json.dumps(arr) + '}')}, 0) except Exception as error: line.sendMessage(to, "[ INFO ] Error :\n" + str(error)) def sendMention(to, text="", mids=[]): arrData = "" arr = [] mention = "@zeroxyuuki " if mids == []: raise Exception("Invalid mids") if "@!" in text: if text.count("@!") != len(mids): raise Exception("Invalid mids") texts = text.split("@!") textx = "" for mid in mids: textx += str(texts[mids.index(mid)]) slen = len(textx) elen = len(textx) + 15 arrData = {'S':str(slen), 'E':str(elen - 4), 'M':mid} arr.append(arrData) textx += mention textx += str(texts[len(mids)]) else: textx = "" slen = len(textx) elen = len(textx) + 15 arrData = {'S':str(slen), 'E':str(elen - 4), 'M':mids[0]} arr.append(arrData) textx += mention + str(text) line.sendMessage(to, textx, {'MENTION': str('{"MENTIONEES":' + json.dumps(arr) + '}')}, 0) def mentionMembers(to, mid): try: arrData = "" textx = "╔══[Mention {} User]\n╠ ".format(str(len(mid))) arr = [] no = 1 for i in mid: mention = "@x\n" slen = str(len(textx)) elen = str(len(textx) + len(mention) - 1) arrData = {'S':slen, 'E':elen, 'M':i} arr.append(arrData) textx += mention if no < len(mid): no += 1 textx += "╠ " else: try: textx += "╚══[ {} ]".format(str(line.getGroup(to).name)) except: pass line.sendMessage(to, textx, {'MENTION': str('{"MENTIONEES":' + json.dumps(arr) + '}')}, 0) except Exception as error: logError(error) line.sendMessage(to, "[ INFO ] Error :\n" + str(error)) def myhelp(): myHelp = """✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✲•คำสั่งทั่วไปค่ะ•✲ ╭☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ║♡•➤ เอจังเช็ค, เช็ค ║♡•➣ ชิวารี 《คท.เรา》 ║♡•➤ หญิงเอ, ท่านเอ ║♡•➣ ญาญ่า, พัชราภา ║♡•➤ ไอดีไลน์ 《ไอดี.เรา》 ║♡•➣ ผส, ผู้สร้าง《คทเทพ》 ║♡•➤ ข้อมูลกู 《โชว์ข้อมูล》 ║♡•➣ ข้อมูล @ 《เพื่อน》 ║♡•➤ สกิล1 《โหมดเชลบอท》 ║♡•➣ สกิล2 《โหมดในกลุ่ม》 ║♡•➤ สกิล3 《โหมดตั้งค่า》 ║♡•➣ สกิล4 《โหมดโซเชียล》 ║♡•➤ สกิล5 《โหมดฟรุ้งฟริ้ง》 ║♡•➣ สกิล6 《โหมดเกรียน》 ║♡•➤ โปรโมท 《โปรโมทเรา》 ║♡•➣ ไอดี @ 《เพื่อน》 ║♡•➤ ชื่อ @ 《ชื่อเพื่อน》 ║♡•➣ ตัส @ 《ตัสเพื่อน》 ║♡•➤ รูป @ 《รูปเพื่อน》 ║♡•➣ ปก @ 《ปกเพื้อน》 ║♡•➤ คท @ 《ุ่คทเพื่อน》 ║♡•➣ วีดีโอโปร @ 《เพื้อน》 ║♡•➤ ไอดีล่อง《IDล่องหน》 ║♡•➣ คทล่อง《คท.ล่องหน》 ║♡•➤ แทคล่อง《แท็กล่องหน》 ║♡•➣ ปฏิทิน,ลาบานูน,กูหลงวัน ║♡•➤ สกืลเลียนแบบ on/off ║♡•➣ ลิสเลียนแบบ《รายชื่อ》 ║♡•➤ เลียนแบบ @ ║♡•➣ เลิกเลียนแบบ @ ║♡•➤ ส่งเสียงกลุ่ม《ข้อความ》 ║♡•➣ ส่งเสียงแชท《ข้อความ》 ║♡•➤ ประกาศกลุ่ม《ข้อความ》 ║♡•➣ ประกาศแชท《ข้อความ》 ║♡•➤ ส่งรูปภาพตามแชท ║♡•➣ ชิวารีออน 《เฟคออน》 ║♡•➤ เอจังออน 《เช็คออน》 ╰☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ♡วิธีใช้ : ไม่ต้องใส่จุดค่ะเสียเวลา♡""" return myHelp def listgrup(): listGrup = """✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✲•โหมดในกลุ่มค่ะ•✲ ╭☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ║♡•➤ เจ้าบ้าน,ผู้สร้างกลุ่ม ║♡•➣ ชื่อกลุ่ม ║♡•➤ ไอดีกลุ่ม ║♡•➣ เปิดลิ้งกลุ่ม ║♡•➤ ปิดลิ้งกลุ่ม ║♡•➣ เอจังยกเชิญ ║♡•➤ ลิ้งกลุ่ม, ขอลิ้ง ║♡•➣ รายการกลุ่ม ║♡•➤ สมาชิกกลุ่ม ║♡•➣ ข้อมูลกลุ่ม ║♡•➤ รูปกลุ่ม ║♡•➣ เปลี่ยนรูปกลุ่ม ║♡•➤ เอจังแทค, แทค ║♡•➣ ล้างจาน《ลบรันกลุ่ม》 ║♡•➤ เทส, เทสบอท ║♡•➣ รีเจนซี่, รีบอท ║♡•➤ ไอดีล่อง ║♡•➣ คทล่อง ║♡•➤ แทคล่อง ║♡•➣ ตั้งเวลา ║♡•➤ เลิกตั้งเวลา ║♡•➣ ตั้งเวลาใหม่ ║♡•➤ สกิลอ่าน ║♡•➣ เปิด/ปิดเอจังเปิดอ่าน ║♡•➤ เปิด/ปิดสแกน ║♡•➣ เปิด/ปิดรับแขก ║♡•➤ เปิด/ปิดส่งแขก ║♡•➣ เปิด/ปิดทักเตะ ║♡•➤ เปิด/ปิดapi ║♡•➣ เปิด/ปิดตรวจสอบ ║♡•➤ ยัดดำ @ 《แบน》 ║♡•➣ บัญชีดำ 《ลิสดำ》 ║♡•➤ ยัดดำกลุ่ม 《แบนยกห้อง》 ║♡•➣ ไฮเตอร์ 《ล้างบช.ดำ》 ║♡•➤ ประหารชีวิต 《เตะดำ》 ║♡•➣ เอจังบิน 《สั่งบินกลุ่ม》 ╰☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ♡วิธีใช้ : ไม่ต้องใส่จุดค่ะเสียเวลา♡""" return listGrup def socmedia(): socMedia = """✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✲•โหมดโซเชียลค่ะ•✲ ╭☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ║♡•➣ github ║♡•➤ ค้นหาไอดี《ไลน์》 ║♡•➣ ไอดีไลน์ ║♡•➤ พลังจิต《ชื่อ》ข้อความ ║♡•➣ สะกดจิต《ชื่อ》ข้อความ ║♡•➤ ทานข้าวยัง ║♡•➣ ทานข้าวกันไหม ║♡•➤ ขอความในใจ ║♡•➣ ขอเสียงเอฟซี ║♡•➤ ขอเสียงแฟนคลับ ║♡•➣ เอจังมาแล้ว ║♡•➤ แสดงความเคารพ ║♡•➣ ชมเค้าหน่อย ║♡•➤ ปฏิทิน, ลาบานูน ║♡•➣ ดูทูป《ชื่อเรื่อง》 ║♡•➤ ขอภาพ《ชื่อรูป》 ║♡•➣ ขอรูป《ชื่อรูป》 ║♡•➤ ขอคลิป《ชื่อเรื่อง》 ║♡•➣ ยูทูป《ชื่อเรื่อง》 ║♡•➤ มิวสิค《ชื่อเพลง》 ║♡•➣ ขอเพลง《ชื่อเพลง》 ║♡•➤ เพลย์สโต《ชื่อแอป》 ║♡•➣ เฟสบุค《ชื่อเฟส》 ║♡•➤ ขอหนัง《ชื่อหนัง》 ║♡•➣ ขอวีดีโอ《ชื่อเรื่อง》 ║♡•➤ ภาพการ์ตูน《ชื่อรูป》 ║♡•➣ รูปการ์ตูน《ชื่อรูป》 ║♡•➤ ไอจี 《ชื่อยูส》 ║♡•➣ ค้นหา《ข้อความ》 ╰☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ♡วิธีใช้ : ไม่ต้องใส่จุดค่ะเสียเวลา♡""" return socMedia def helpset(): helpSet = """✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✲•โหมดเชลบอทค่ะ•✲ ╭☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ║♡•➤ กู,เอ 《คท.เรา》 ║♡•➣ เช็คกลุ่ม 《ลิสกลุ่ม》 ║♡•➤ เพื่อนเพ 《ลิสเพื่อน》 ║♡•➣ สกิล 《เรียกคำสั่ง》 ║♡•➤ เปิดพรบฉุกเฉิน ║♡•➣ ปิดพรบฉุกเฉิน ║♡•➤ วัดรอบ, แรงม้า ║♡•➣ Sp, 4g, 8g, 9g ║♡•➤ 10g, 11g, 12g, 13g ║♡•➣ เอจังรัน 《@ชื่อ》 ║♡•➤ รันแชท 《@ชื่อ》 ║♡•➣ พวกนิโกร 《บชดำ》 ║♡•➤ ยิงเป้า 《เตะดำ》 ║♡•➣ ล้างขี้ 《ล้างบช.ดำ》 ║♡•➤ เปลี่ยนชื่อ《ข้อความ》 ║♡•➣ เปลี่ยนตัส《ข้อความ》 ║♡•➤ แปลงคท《เลขไอดี》 ║♡•➣ เปลี่ยนติส ║♡•➤ เปลี่ยนรูปกลุ่ม ║♡•➣ อัพชื่อ《ข้อความ》 ║♡•➤ อัพตัส《ข้อความ》 ║♡•➣ โคลนนิ่ง @ ║♡•➤ คืนร่าง ║♡•➣ เอจังเขียน《ข้อความ》 ║♡•➤ ทักเข้า:《ข้อความ》 ║♡•➣ ทักออก:《ข้อความ》 ║♡•➤ ทักเตะ:《ข้อความ》 ║♡•➣ ตั้งแทค:《ข้อความ》 ║♡•➤ ตั้งแอด:《ข้อความ》 ║♡•➣ คอมเม้น:《ข้อความ》 ║♡•➤ ไอดีเพื่อน ║♡•➣ ไอดีไลน์ ║♡•➤ ลบแบน @ ║♡•➣ บล็อค @ ║♡•➤ ลบรัน, ล้างรัน ║♡•➣ ลบแชท, ล้างแชท ║♡•➤ ล้อเล่น @《เตะดึง》 ║♡•➣ หวด @《เตะออก》 ║♡•➤ สอย @《เตะออก》 ║♡•➣ ลาก่อย@《เตะออก》 ║♡•➤ ปลิว @《เตะออก》 ║♡•➣ ดับไฟ 《คท.ไวรัส》 ║♡•➤ เทส, เทสบอท ║♡•➣ เอจังกลัวตาย ║♡•➤ เอจังไม่กลัว ║♡•➣ รันคอล 《จำนวน》 ╰☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ♡วิธีใช้ : ไม่ต้องใส่จุดค่ะเสียเวลา♡""" return helpSet def helpsetting(): helpSetting = """✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✲•โหมดตั้งค่าค่ะ•✲ ╭☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ║♡•➤ เปิดกัน/ปิดกัน ║♡•➣ กันยก/ปิดกันยก ║♡•➤ กันเชิญ/ปิดกันเชิญ ║♡•➣ กันลิ้ง/ปิดกันลิ้ง ║♡•➤ กันเข้า/ปิดกันเข้า ║♡•➣ เปิดหมด/ปิดหมด ║♡•➤ เปิดกทม/ปิดกทม ║♡•➣ เปิดเข้า/ปิดเข้า ║♡•➤ เปิดออก/ปิดออก ║♡•➣ เปิดติ๊ก/ปิดติ๊ก ║♡•➤ เปิดบล็อค/ปิดบล็อค ║♡•➣ เปิดมุด/ปิดมุด ║♡•➤ เปิดเสือก/ปิดเสือก ║♡•➣ เปิด/ปิดอ่าน ║♡•➤ เปิด/ปิดapi ║♡•➣ เปิด/ปิดแทค ║♡•➤ เปิด/ปิดแทค2 ║♡•➣ เปิด/ปิดแทค3 ║♡•➤ เปิด/ปิดเตะแทค ║♡•➣ เปิดคท/ปิดคท ║♡•➤ เปิด/ปิดตรวจสอบ ║♡•➣ เปิด/ปิดเช็คโพส ║♡•➤ เปิดแสกน/ปิดแสกน ║♡•➣ เปิด/ปิดรับแขก ║♡•➤ เปิด/ปิดส่งแขก ║♡•➣ เปิด/ปิดทักเตะ ║♡•➤ เปิด/ปิดข้อความ ╰☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ♡วิธีใช้ : ไม่ต้องใส่จุดค่ะเสียเวลา♡""" return helpSetting def helptexttospeech(): helpTextToSpeech = """✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✲•โหมดฟรุ้งฟริ้งค่ะ•✲ ╭☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ║♡•➤ ระเบิดเวลาเอจัง ║♡•➣ เอจังวางระเบิด ║♡•➤ ไวรัส 《Virus》 ║♡•➣ ไวรัสเอจัง ║♡•➤ ไวรัสเอจัง2 ║♡•➣ ไวรัสเอจัง3 ║♡•➤ ไวรัสชิวารี ║♡•➣ ไวรัสปีโป้ ║♡•➤ ไวรัสฟรุ้งฟริ้ง ║♡•➣ ไวรัสมุ้งมิ้ง ║♡•➤ ไวรัสคิทตี้ ║♡•➣ ไวรัสแมนยู ║♡•➤ ไวรัสฟรุตตี้ ║♡•➣ ไวรัสเยลลี่ ║♡•➤ ไวรัสสีชมพู ║♡•➣ ไวรัสเจเล่ ║♡•➤ ไวรัสป๊อกกี้ ║♡•➣ ไวรัสผลไม้ ║♡•➤ ไวรัสรวมมิตร ║♡•➣ ไวรัสแห่งความมืด ║♡•➤ ไวรัสแห่งความรัก ║♡•➣ ไวรัสแอ๊บแบ๊ว ║♡•➤ ไวรัสชนบท ║♡•➣ ไวรัสอวตาร ║♡•➤ ปีโป้อร่อยจัง ║♡•➣ Hello Kitty ║♡•➤ ไฮโล, เปิดไฮโล ║♡•➣ เต้าปูปลา ║♡•➤ เอจังด่า ║♡•➣ เศษตังแม่ ║♡•➤ ใครเกรียนสุด ║♡•➣ ใครสวยสุด ║♡•➤ เอจังนับ ║♡•➣ นับจีน ║♡•➤ นับไทย ║♡•➣ นับอินโด ║♡•➤ นับไฮโซ ║♡•➣ นับสเปน ║♡•➤ นับอังกฤษ ║♡•➣ เอจังclose ║♡•➤ เอจังopen ║♡•➣ ผู้สร้างไวรัส ╰☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ♡วิธีใช้ : ไม่ต้องใส่จุดค่ะเสียเวลา♡""" return helpTextToSpeech def helplanguange(): helpLanguange = """✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ✲• โหมดเกรียนค่ะ •✲ ╭☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ║♡•➤ เอจังบิน 《บินกลุ่ม》 ║♡•➣ ชิวารีออน 《เฟคออน》 ║♡•➤ ยัดดำ @《แบน》 ║♡•➣ กุดหัวมัน 《เตะดำ》 ║♡•➤ ไฮเตอร์ 《ล้างบชดำ》 ║♡•➣ ไฮสปีด, สปีดไฮ ║♡•➤ 4g 《เกรียนสปีด》 ║♡•➣ 8g 《เกรียนสปีด》 ║♡•➤ 9g 《เกรียนสปีด》 ║♡•➣ 10g 《เกรียนสปีด》 ║♡•➤ 11g 《เกรียนสปีด》 ║♡•➣ 12g 《เกรียนสปีด》 ║♡•➤ 13g 《เกรียนสปีด》 ║♡•➣ วัดรอบ, แรงม้า ║♡•➤ Bmx, Bmw,รถเต่า ║♡•➣ .22, .38, .357, .45 ║♡•➤ เปิดแอร์《ออโต้บล็อค》 ║♡•➣ ปิดแอร์《ออโต้บล็อค》 ║♡•➤ ทัก《จำนวน》 สต ║♡•➣ รันแชท @ ║♡•➤ ข้อมูลกู ║♡•➣ ชื่อกู 《ชื่อเรา》 ║♡•➤ ไอดีกู 《ไอดีเรา》 ║♡•➣ ปกกู 《ปกเรา》 ║♡•➤ ตัสกู 《ตัสเรา》 ║♡•➣ ดิสกู, รูปกู ║♡•➤ เกรียน on ... ║♡•➣ Spam on ... ║♡•➤ ส่งนอน 《จำนวน》 @ ║♡•➣ ส่งคลิป ... @ ║♡•➤ ส่งหัวใจ ... @ ║♡•➣ สแปมแทค ... @ ║♡•➤ ส่งของขวัญ .. @ ║♡•➣ ส่งความรัก ... @ ║♡•➤ แจกของขวัญ .. @ ║♡•➣ ส่งความคิดถึง .. @ ║♡•➤ รันคอล 《จำนวน》 ║♡•➣ สแปมคอล《จำนวน》 ║♡•➤ โคลนนิ่ง @ ║♡•➣ เอจังเปิดอ่าน ║♡•➤ เอจังปิดอ่าน ║♡•➣ โปรโมท 《ตัวเรา》 ║♡•➤ โปรโมท @《เพื่อนเรา》 ║♡•➣ คท, .คท《ต้องห้าม》 ║♡•➤ Me,me 《ต้องห้าม》 ║♡•➣ help 《สุดยอดคำสั่ง》 ║♡•➤ Help 《สุดยอดคำสั่ง》 ╰☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆ ✧••••••••••••❂✧✯✧❂•••••••••••••✧ ♡วิธีใช้ : ไม่ต้องใส่จุดค่ะเสียเวลา♡""" return helpLanguange #==============================================================================# def lineBot(op): try: if op.type == 0: return if op.type == 5: if settings["autoAdd"] == True: line.blockContact(op.param1) if op.type == 13: if lineMID in op.param3: G = line.getGroup(op.param1) if settings["autoJoin"] == True: if settings["autoCancel"]["on"] == True: if len(G.members) <= settings["autoCancel"]["members"]: line.rejectGroupInvitation(op.param1) else: line.acceptGroupInvitation(op.param1) else: line.acceptGroupInvitation(op.param1) elif settings["autoCancel"]["on"] == True: if len(G.members) <= settings["autoCancel"]["members"]: line.rejectGroupInvitation(op.param1) else: Inviter = op.param3.replace("",',') InviterX = Inviter.split(",") matched_list = [] for tag in settings["blacklist"]: matched_list+=[str for str in InviterX if str == tag] if matched_list == []: pass else: line.cancelGroupInvitation(op.param1, matched_list) # if op.type == 13: # group = line.getGroup(op.param1) # if settings["autoJoin"] == True: # line.acceptGroupInvitation(op.param1) if op.type == 24: if settings["autoLeave"] == True: line.leaveRoom(op.param1) if op.type == 25: msg = op.message if msg.contentType == 13: if settings["winvite"] == True: if msg._from in admin: _name = msg.contentMetadata["displayName"] invite = msg.contentMetadata["mid"] groups = line.getGroup(msg.to) pending = groups.invitee targets = [] for s in groups.members: if _name in s.displayName: line.sendMessage(msg.to,"-> " + _name + " \nทำการเชิญสำเร็จ") break elif invite in settings["blacklist"]: line.sendMessage(msg.to,"ขออภัย, " + _name + " บุคคนนี้อยู่ในรายการบัญชีดำ") line.sendMessage(msg.to,"ใช้คำสั่ง!, \n➡ล้างดำ➡ดึง" ) break else: targets.append(invite) if targets == []: pass else: for target in targets: try: line.findAndAddContactsByMid(target) line.inviteIntoGroup(msg.to,[target]) line.sendMessage(msg.to,"เชิญคนนี้สำเร็จแล้ว : \n➡" + _name) settings["winvite"] = False break except: try: line.findAndAddContactsByMid(invite) line.inviteIntoGroup(op.param1,[invite]) settings["winvite"] = False except: line.sendMessage(msg.to,"😧ตรวจพบข้อผิดพลาดที่ไม่ทราบสาเหตุ😩อาจเป็นได้ว่าบัญชีของคุณถูกแบนเชิญ😨") settings["winvite"] = False break if op.type == 25: msg = op.message if msg.contentType == 13: if settings["wblack"] == True: if msg.contentMetadata["mid"] in settings["commentBlack"]: line.sendMessage(msg.to,"รับทราบ") settings["wblack"] = False else: settings["commentBlack"][msg.contentMetadata["mid"]] = True settings["wblack"] = False line.sendMessage(msg.to,"decided not to comment") elif settings["dblack"] == True: if msg.contentMetadata["mid"] in settings["commentBlack"]: del settings["commentBlack"][msg.contentMetadata["mid"]] line.sendMessage(msg.to,"ลบจากรายการที่ถูกแบนแล้ว") settings["dblack"] = False else: settings["dblack"] = False line.sendMessage(msg.to,"Tidak Ada Dalam Daftar Blacklist") elif settings["wblacklist"] == True: if msg._from in admin: if msg.contentMetadata["mid"] in settings["blacklist"]: line.sendMessage(msg.to,"Sudah Ada") settings["wblacklist"] = False else: settings["blacklist"][msg.contentMetadata["mid"]] = True settings["wblacklist"] = False line.sendMessage(msg.to,"เพิ่มบัญชีนี้ในรายการสีดำเรียบร้อยแล้ว") elif settings["dblacklist"] == True: if msg._from in admin: if msg.contentMetadata["mid"] in settings["blacklist"]: del settings["blacklist"][msg.contentMetadata["mid"]] line.sendMessage(msg.to,"เพิ่มบัญชีนี้ในรายการสีขาวเรียบร้อยแล้ว") settings["dblacklist"] = False else: settings["dblacklist"] = False line.sendMessage(msg.to,"Tidak Ada Dalam Da ftar Blacklist") if op.type == 25: msg = op.message text = msg.text msg_id = msg.id receiver = msg.to sender = msg._from if msg.toType == 0 or msg.toType == 1 or msg.toType == 2: if msg.toType == 0: if sender != line.profile.mid: to = sender else: to = receiver elif msg.toType == 1: to = receiver elif msg.toType == 2: to = receiver if msg.contentType == 0: if text is None: return #==============================================================================# if ".พูด " in msg.text.lower(): spl = re.split(".พูด ",msg.text,flags=re.IGNORECASE) if spl[0] == "": mts = spl[1] mtsl = mts.split() mtsTimeArg = len(mtsl) - 1 mtsTime = mtsl[mtsTimeArg] del mtsl[mtsTimeArg] mtosay = " ".join(mtsl) global Rapid1To Rapid1To = msg.to RapidTime = mtsTime rmtosay = [] for count in range(0,int(RapidTime)): rmtosay.insert(count,mtosay) p = Pool(20) p.map(Rapid1Say,rmtosay) p.close() elif msg.text in ["สมุน","คำสั่ง","สกิล"]: myHelp = myhelp() line.sendMessage(to, str(myHelp)) # line.sendMessage(msg.to, None, contentMetadata={"STKID":"8385664","STKPKGID":"1206431","STKVER":"2"}, contentType=7) sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif msg.text in ["สมุน1","เอจัง1","สกิล1"]: helpSet = helpset() line.sendMessage(to, str(helpSet)) sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") # line.sendMessage(msg.to, None, contentMetadata={"STKID":"8385664","STKPKGID":"1206431","STKVER":"2"}, contentType=7) elif msg.text in ["สมุน2","เอจัง2","สกิล2"]: listGrup = listgrup() line.sendMessage(to, str(listGrup)) sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") # line.sendMessage(msg.to, None, contentMetadata={"STKID":"8385664","STKPKGID":"1206431","STKVER":"2"}, contentType=7) elif msg.text in ["สมุน3","เอจัง3","สกิล3"]: helpSetting = helpsetting() line.sendMessage(to, str(helpSetting)) sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") # line.sendMessage(msg.to, None, contentMetadata={"STKID":"8385664","STKPKGID":"1206431","STKVER":"2"}, contentType=7) elif msg.text in ["สมุน4","เอจัง4","สกิล4"]: socMedia = socmedia() line.sendMessage(to, str(socMedia)) sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") # line.sendMessage(msg.to, None, contentMetadata={"STKID":"8385664","STKPKGID":"1206431","STKVER":"2"}, contentType=7) elif msg.text in ["สมุน5","เอจัง5","สกิล5"]: helpTextToSpeech = helptexttospeech() line.sendMessage(to, str(helpTextToSpeech)) sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") # line.sendMessage(msg.to, None, contentMetadata={"STKID":"8385664","STKPKGID":"1206431","STKVER":"2"}, contentType=7) elif msg.text in ["สมุน6","เอจัง6","สกิล6"]: helpLanguange = helplanguange() line.sendMessage(to, str(helpLanguange)) sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") # line.sendMessage(msg.to, None, contentMetadata={"STKID":"8385664","STKPKGID":"1206431","STKVER":"2"}, contentType= #==============================================================================# elif msg.text in ["วัดรอบ","แรงม้า"]: start = time.time() line.sendMessage(to, "✯:::[[[ ®-ความจัดรอบเครื่อง ]]]:::✯") line.sendMessage(msg.to,"❂•••••••••✧แ.ร.ง.ม้.า✧••••••••••❂") elapsed_time = time.time() - start line.sendMessage(msg.to, "[ %s Sec ] [ " % (elapsed_time) + str(int(round((time.time() - start) * 1000)))+" ms ]") elif msg.text in ["Sp","sp","speed","Speed"]: start = time.time() line.sendMessage(to, "■•■•♡Spëed Tëst♡•■•■") line.sendMessage(msg.to,"●•➤➤➤➤➤➤➤➤➤➤➤➤") elapsed_time = time.time() - start line.sendMessage(msg.to, "[ %s Sec ] [ " % (elapsed_time) + str(int(round((time.time() - start) * 1000)))+" ms ]") elif text.lower() == 'เริ่มใหม่': line.sendMessage(to, "กำลังเริ่มต้นใหม่ ... โปรดรอสักครู่ ..") line.sendMessage(to, "Success Restarting.") restartBot() elif msg.text.lower().startswith("พูด "): sep = text.split(" ") say = text.replace(sep[0] + " ","") lang = 'th' tts = gTTS(text=say, lang=lang) tts.save("hasil.mp3") line.sendAudio(msg.to,"hasil.mp3") elif msg.text.lower().startswith("คอล "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): members = [mem.mid for mem in group.members] line.acquireGroupCallRoute(to) line.inviteIntoGroupCall(to, contactIds=members) else: line.sendMessage(to, "มาเล่นกันเถอะ ^_^".format(str(jml))) elif msg.text in ["เทส","เทสบอท"]: line.sendMessage(to, " ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n─━─━━•≪❂≫•━━─━─") line.sendMessage(to, "กำลังโหลด:▒...0%") line.sendMessage(to, "█▒... 10.0%") line.sendMessage(to, "██▒... 20.0%") line.sendMessage(to, "███▒... 30.0%") line.sendMessage(to, "████▒... 40.0%") line.sendMessage(to, "█████▒... 50.0%") line.sendMessage(to, "██████▒... 60.0%") line.sendMessage(to, "███████▒... 70.0%") line.sendMessage(to, "████████▒... 80.0%") line.sendMessage(to, "█████████▒... 90.0%") line.sendMessage(to, "███████████..100.0%") line.sendMentionFooter(to, '•─ ͜͡✫ѕєʟғвот[ ᴀ̶̲̅ ]κɪcκєʀ ͜͡✫─•\n', sender, "https://line.me/ti/p/~gu.11", "http://dl.profile.line-cdn.net/"+line.getContact(sender).pictureStatus, line.getContact(sender).displayName);line.sendMessage(to, line.getContact(sender).displayName, contentMetadata = {'previewUrl': 'http://dl.profile.line-cdn.net/'+line.getContact(sender).pictureStatus, 'i-installUrl': 'https://line.me/ti/p/~gu.11', 'type': 'mt', 'subText': settings["c"], 'a-installUrl': 'https://line.me/ti/p/~gu.11', 'a-installUrl': ' https://line.me/ti/p/~gu.11', 'a-packageName': 'com.spotify.music', 'countryCode': 'ID', 'a-linkUri': 'https://line.me/ti/p/~gu.11', 'i-linkUri': 'https://line.me/ti/p/~gu.11', 'id': 'mt000000000a6b79f9', 'text': 'Khie', 'linkUri': 'https://line.me/ti/p/~gu.11'}, contentType=19) elif msg.text in ["รีเจนซี่","รีบอท"]: line.sendMessage(to, "✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯") line.sendMessage(to, "รอสักครู่ค่ะ.................") time.sleep(1) line.sendMessage(to, "💙:::⭐ 3 ⭐:::💙") time.sleep(1) line.sendMessage(to, "💔:::⭐ 2 ⭐:::💔") time.sleep(1) line.sendMessage(to, "💚:::⭐ 1 ⭐:::💚") line.sendMessage(to, "╭➣➣➣➣➣➣➣➣➣➣➣➣\n✯ รีสตาร์ทเรียบร้อยแล้วค่ะ™\n╰➣➣➣➣➣➣➣➣➣➣➣➣") restartBot() elif msg.text in ["เอจังออน","บอทออน"]: timeNow = time.time() runtime = timeNow - botStart runtime = format_timespan(runtime) line.sendMessage(msg.to,"✧•••❂ เวลาทำงานของบอท ❂•••✧") line.sendMessage(msg.to," ❂-ՃิՁণຮี•➣Böt : 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n{}".format(str(runtime))) elif msg.text in ["เอจังข้อมูล","ข้อมูลเอจัง","ข้อมูล","ข้อมูลกู"]: try: arr = [] owner = "u7ae0eb00e07b2d6b7f4dd9ba577a2e3e" creator = line.getContact(owner) contact = line.getContact(lineMID) grouplist = line.getGroupIdsJoined() contactlist = line.getAllContactIds() blockedlist = line.getBlockedContactIds() ret_ = "✧•••••❂✧ข้อมูลคนน่ารัก✧❂•••••✧" ret_ += "\n۝ ชื่อ ═ {}".format(contact.displayName) ret_ += "\n۝ กลุ่ม ═ {}".format(str(len(grouplist))) ret_ += "\n۝ เพื่อน ═ {}".format(str(len(contactlist))) ret_ += "\n۝ บล็อค ═ {}".format(str(len(blockedlist))) # ret_ += "\n╠══[สถานะ] ═ {}".format(contact.statusMessage) ret_ += "\n۝ ผู้สร้าง ═ {}".format(creator.displayName) ret_ += "\n ••••✯🕸ֆҽℓƒ-β❂T-ՃิՁণຮี🕸✯••••" line.sendContact(to, owner) line.sendMessage(to, str(ret_)) except Exception as e: line.sendMessage(msg.to, str(e)) #==============================================================================# elif msg.text in ["เอจังเช็ค","เช็ค"]: try: ret_ = "✧•••••••••❂✧Â-jańg✧❂••••••••••✧\n ♡•สถานะที่เปิดอยู่ตอนนี้ค่ะ•♡\n✧••••••••••••❂✧✯✧❂•••••••••••••✧\n\n╭──┅━✥ ======= ✥━┅──" if settings["autoAdd"] == True: ret_ += "\n♡•➤ ออโต้บล็อค✔" else: ret_ += "\n♡•➤ ออโต้บล็อค ✘ " if settings["autoJoinTicket"] == True: ret_ += "\n♡•➤ มุดลิ้ง✔" else: ret_ += "\n♡•➤ มุดลิ้ง ✘ " if settings["autoJoin"] == True: ret_ += "\n♡•➤ เข้าห้องออโต้ ✔" else: ret_ += "\n♡•➤ เข้าห้องออโต้ ✘ " if settings["Api"] == True: ret_ += "\n♡•➤ บอทApi✔" else: ret_ += "\n♡•➤ บอทApi ✘ " if settings["Aip"] == True: ret_ += "\n♡•➤ แสกนคำพูด+คำสั่งบิน✔" else: ret_ += "\n♡•➤ แสกนคำพูด+คำสั่งบิน ✘ " if settings["Wc"] == True: ret_ += "\n♡•➤ ข้อความต้อนรับสมาชิก ✔" else: ret_ += "\n♡•➤ ข้อความต้อนรับสมาชิก ✘ " if settings["Lv"] == True: ret_ += "\n♡•➤ ข้อความอำลาสมาชิก ✔" else: ret_ += "\n♡•➤ ข้อความอำลาสมาชิก ✘ " if settings["Nk"] == True: ret_ += "\n♡•➤ ข้อความแจ้งคนลบ ✔" else: ret_ += "\n♡•➤ ข้อความแจ้งคนลบ ✘ " if settings["autoCancel"]["on"] == True:ret_+="\n♡•➤ ปฏิเสธกลุ่มที่ > " + str(settings["autoCancel"]["members"]) + " คน ✔" else: ret_ += "\n♡•➤ ปฏิเสธกลุ่มเชิญ ✘ " if settings["autoLeave"] == True: ret_ += "\n♡•➤ ออกแชทรวม ✔" else: ret_ += "\n♡•➤ ออกแชทรวม ✘ " if settings["autoRead"] == True: ret_ += "\n♡•➤ อ่านออโต้ ✔" else: ret_ += "\n♡•➤ อ่านออโต้ ✘ " if settings["checkContact"] == True: ret_ += "\n♡•➤ อ่านคท ✔" else: ret_ += "\n♡•➤ อ่านคท ✘ " if settings["checkPost"] == True: ret_ += "\n♡•➤ เช็คโพส ✔" else: ret_ += "\n♡•➤ เช็คโพส ✘ " if settings["checkSticker"] == True: ret_ += "\n♡•➤ Sticker ✔" else: ret_ += "\n♡•➤ Sticker ✘ " if settings["detectMention"] == True: ret_ += "\n♡•➤ ตอบกลับคนแทค ✔" else: ret_ += "\n♡•➤ ตอบกลับคนแทค ✘ " if settings["potoMention"] == True: ret_ += "\n♡•➤ แสดงภาพคนแทค ✔" else: ret_ += "\n♡•➤ แสดงภาพคนแทค ✘ " if settings["kickMention"] == True: ret_ += "\n♡•➤ เตะคนแทค ✔" else: ret_ += "\n♡•➤ เตะคนแทค ✘ " if settings["delayMention"] == True: ret_ += "\n♡•➤ แทคกลับคนแทค ✔" else: ret_ += "\n♡•➤ แทคกลับคนแทค ✘ " if RfuProtect["inviteprotect"] == True: ret_ += "\n♡•➤ กันเชิญ ✔" else: ret_ += "\n♡•➤ กันเชิญ ✘ " if RfuProtect["cancelprotect"] == True: ret_ += "\n♡•➤ กันยกเชิญ ✔" else: ret_ += "\n♡•➤ กันยกเชิญ ✘ " if RfuProtect["protect"] == True: ret_ += "\n♡•➤ ป้องกัน ✔" else: ret_ += "\n♡•➤ ป้องกัน ✘ " if RfuProtect["linkprotect"] == True: ret_ += "\n♡•➤ ป้องกันเปิดลิ้ง ✔" else: ret_ += "\n♡•➤ ป้องกันเปิดลิ้ง ✘ " if RfuProtect["Protectguest"] == True: ret_ += "\n♡•➤ ป้องกันสมาชิก ✔" else: ret_ += "\n♡•➤ ป้องกันสมาชิก ✘ " if RfuProtect["Protectjoin"] == True: ret_ += "\n♡•➤ ป้องกันเข้ากลุ่ม ✔" else: ret_ += "\n♡•➤ ป้องกันเข้ากลุ่ม ✘ " ret_ += "\n╰──┅━✥ ======= ✥━┅──\n\n✧••••••••••••❂✧✯✧❂•••••••••••••✧\n ✯🕸:ֆҽℓƒ-β❂T-ՃิՁণຮี:🕸✯" line.sendMessage(to, str(ret_)) sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") except Exception as e: line.sendMessage(msg.to, str(e)) elif msg.text in ["เอจังเปิดบล็อค","เปิดบล็อค","เปิดบล็อก","เปิดบล๊อค"]: settings["autoAdd"] = True line.sendMessage(to, "✧••••••••••❂✧✯✧❂•••••••••••✧\n เปิดระบบ Àutö Blőck: แล้วค่ะ\n✧••••••••••❂✧✯✧❂•••••••••••✧") sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif msg.text in ["เอจังปิดบล็อค","ปิดบล็อค","ปิดบล็อก","ปิดบล๊อค"]: settings["autoAdd"] = False line.sendMessage(to, "✧••••••••••❂✧✯✧❂•••••••••••✧\n ปิดระบบ Àutö Blőck: แล้วค่ะ\n✧••••••••••❂✧✯✧❂•••••••••••✧") sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif msg.text in ["เปิดแอร์"]: settings["autoAdd"] = True line.sendReplyMessage(msg.id,to, " ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n─━─━━•≪❂≫•━━─━─\n✲••เปิดแอร์อัติโนมัติแล้วค่ะ••✲\nอุณหภูมิคงที่ 24 องศาเซลเซียส") sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif msg.text in ["ปิดแอร์"]: settings["autoAdd"] = False line.sendMessage(to, " ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n─━─━━•≪❂≫•━━─━─\n✲•• ปิดแอร์อัติโนมัติแล้วค่ะ ••✲\nอุณหภูมิคงที่ 29 องศาเซลเซียส") sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif msg.text in ["เอจังเปิดเข้า","เปิดเข้า"]: settings["autoJoin"] = True line.sendMessage(to, "❂•เปิดเข้ากลุ่มอัติโนมัติแล้วค่ะ•❂\n A~jańg@Opën: 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["เอจังปิดเข้า","ปิดเข้า"]: settings["autoJoin"] = False line.sendMessage(to,"❂•ปิดเข้ากลุ่มอัติโนมัติแล้วค่ะ•❂\n A~jańg@Clöse 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif "gcancel:" in msg.text: try: strnum = msg.text.replace("gcancel:","") if strnum == "off": settings["autoCancel"]["on"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,str(settings["eror"])) else: line.sendMessage(msg.to,"关了邀请拒绝。要时开请指定人数发送") else: num = int(strnum) settings["autoCancel"]["on"] = True if settings["lang"] == "JP": line.sendMessage(msg.to, " สมาชิกในกลุ่มที่ไม่ถึง" + strnum + "จะถูกปฏิเสธคำเชิญโดยอัตโนมัติ") else: line.sendMessage(msg.to,strnum + "使人以下的小组用自动邀请拒绝") except: if settings["lang"] == "JP": line.sendMessage(msg.to,str(settings["eror"])) else: line.sendMessage(msg.to,"Bizarre ratings") elif msg.text in ["เอจังเปิดออก","เปิดออก","เปิดแชทรวม"]: settings["autoLeave"] = True line.sendMessage(to,"❂•เปิดออกแชทรวมอัติโนมัติค่ะ•❂\n A~jańg@Opën 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["เอจังปิดออก","ปิดออก","ปิดแชทรวม"]: settings["autoLeave"] = False line.sendMessage(to,"❂•ปิดออกแชทรวมอัติโนมัติค่ะ•❂\n A~jańg@Clöse 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["เปิดอ่าน"]: settings["autoRead"] = True line.sendMessage(to, "aütoRead : on •➣➣") line.sendMessage(to, "❂• เปิดอ่านข้อความอัติโนมัติค่ะ •❂") elif msg.text in ["ปิดอ่าน"]: settings["autoRead"] = False line.sendMessage(to, "aütoRead : off •➣➣") line.sendMessage(to, "❂• ปิดอ่านข้อความอัติโนมัติค่ะ •❂") elif msg.text in ["เปิดติ้ก","เปิดติ๊ก","เปิดติก","เอจังเปิดติก"]: settings["checkSticker"] = True line.sendMessage(to, "Sticket Check : on •➣➣") line.sendMessage(to, "✯:: เปิดระบบเช็คสติกเกอร์ค่ะ ::✯") elif msg.text in ["ปิดติ้ก","ปิดติ๊ก","ปิดติก","เอจังปิดติก"]: settings["checkSticker"] = False line.sendMessage(to, "Sticket Check : off •➣➣") line.sendMessage(to, "✯:: ปิดระบบเช็คสติกเกอร์ค่ะ ::✯") elif text.lower() == 'เปิดมุด': settings["autoJoinTicket"] = True line.sendMessage(to, "✯::Autojoin : Ticket enabled::✯") elif text.lower() == 'ปิดมุด': settings["autoJoinTicket"] = False line.sendMessage(to, "✯::Autojoin : Ticket disäbled::✯") elif msg.text in ["เปิดเสือก"]: settings["unsendMessage"] = True line.sendReplyMessage(msg.id,to, "✯:: เปิดระบบเสือกเรียบร้อยค่ะ ::✯") line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif msg.text in ["ปิดเสือก"]: settings["unsendMessage"] = False line.sendReplyMessage(msg.id,to, "✯:: ปิดระบบเสือกเรียบร้อยค่ะ ::✯") line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") #==============================================================================# elif msg.text.lower() == "โปรโมท": me = line.getContact(lineMID) line.sendMessage(msg.to,"✿👇 ชื่อคนน่ารักเจ้าค่ะ 👇✿") sendMessageWithMention(to, lineMID) line.sendMessage(msg.to,"✯::: ♡•สเตตัสเจ้าค่ะ•♡ :::✯\n" + me.statusMessage) line.sendContact(to, lineMID) line.sendMessage(msg.to,"✯::: ♡•รูปคนน่ารักเจ้าค่ะ•♡ :::✯") line.sendImageWithURL(msg.to,"http://dl.profile.line-cdn.net/" + me.pictureStatus) line.sendMessage(msg.to,"✯::: ♡•ปกคนน่ารักเจ้าค่ะ•♡ :::✯") cover = line.getProfileCoverURL(lineMID) line.sendImageWithURL(msg.to, cover) line.sendMessage(msg.to,str(settings["comment"]) +"\n ✥✥✥ ประวัติโดยย่อ ✥✥✥ \n✧••••••••••❂✧✯✧❂••••••••••✧\n •➣ สถานะโสดค่ะ\n •➣ จบโทจากอ็อกฟอร์ด\n •➣ นิสัยดีมากไม่เกรียน\n •➣ ชอบกินปีโป้\n •➣ รถซื้อกับข้าว เฟอรารี่,บีเอ็ม\n •➣ ชอบเล่นเกมเศรษฐี \n✧••••••••••❂✧✯✧❂••••••••••✧") elif msg.text in ["ชิวารี","น้องเอ","คุณเอ","ท่านเอ","เทพเอ","หญิงเอ","ลูกพี่เอ","เกรียนเอ"]: line.sendMentionFooter(to, '「SELF BOT」\n', sender, "https://line.me/ti/p/~gu.11", "http://dl.profile.line-cdn.net/"+line.getContact(sender).pictureStatus, line.getContact(sender).displayName);line.sendMessage(to, line.getContact(sender).displayName, contentMetadata = {'previewUrl': 'http://dl.profile.line-cdn.net/'+line.getContact(sender).pictureStatus, 'i-installUrl': 'https://line.me/ti/p/~gu.11', 'type': 'mt', 'subText': settings["c"], 'a-installUrl': 'https://line.me/ti/p/~gu.11', 'a-installUrl': ' https://line.me/ti/p/~gu.11', 'a-packageName': 'com.spotify.music', 'countryCode': 'ID', 'a-linkUri': 'https://line.me/ti/p/~gu.11', 'i-linkUri': 'https://line.me/ti/p/~gu.11', 'id': 'mt000000000a6b79f9', 'text': 'Khie', 'linkUri': 'https://line.me/ti/p/~gu.11'}, contentType=19) elif msg.text in ["นางแบบ","ญาญ่า","คนสวย","นางเอก","พัชราภา"]: line.sendMentionFooter(to, '「ผู้สร้างเชลบอท」\n', sender, "https://line.me/ti/p/~samuri5.", "http://dl.profile.line-cdn.net/"+line.getContact(sender).pictureStatus, line.getContact(sender).displayName);line.sendMessage(to, line.getContact(sender).displayName, contentMetadata = {'previewUrl': 'http://dl.profile.line-cdn.net/'+line.getContact(sender).pictureStatus, 'i-installUrl': 'https://line.me/ti/p/~samuri5.', 'type': 'mt', 'subText': "♡╬╬♡•ຟနุ้७ຟနิ้७•♡╬╬♡", 'a-installUrl': 'https://line.me/ti/p/~samuri5.', 'a-installUrl': ' https://line.me/ti/p/~samuri5.', 'a-packageName': 'com.spotify.music', 'countryCode': 'ID', 'a-linkUri': 'https://line.me/ti/p/~samuri5.', 'i-linkUri': 'https://line.me/ti/p/~samuri5.', 'id': 'mt000000000a6b79f9', 'text': 'Khie', 'linkUri': 'https://line.me/ti/p/~samuri5'}, contentType=19) elif msg.text in ["คทกู"]: sendMessageWithMention(to, lineMID) line.sendContact(to, lineMID) line.sendMessage(msg.to,"❂➣-ՃิՁণຮี: 🕟 " +datetime.today().strftime('%H:%M:%S')+ "➤") elif msg.text in ["เอจัง"]: me = line.getContact(lineMID) sendMessageWithMention(to, lineMID) line.sendContact(to, lineMID) line.sendImageWithURL(msg.to,"http://dl.profile.line-cdn.net/" + me.pictureStatus) elif msg.text in ["ผส","ผู้สร้าง"]: line.sendMessage(msg.to,"ผู้สร้างระบบ•➣➣➣➣➣➣➣➣\n ❂••• ท่านอัจฉริยะเอจัง •••❂\n➣➣➣➣➣➣➣➣• Chiväree™") sendMessageWithMention(to, lineMID) line.sendContact(to, "u7ae0eb00e07b2d6b7f4dd9ba577a2e3e") line.sendMessage(msg.to,"👆 •คนนี้ค่ะ• 🕟 " +datetime.today().strftime('%H:%M:%S')+ "➤") elif msg.text in ["โคสะนา","โฆษณา","โคนา"]: line.sendReplyMessage(msg.id,to, "╭❂—————————————❂╮\n┃SELF BOT LINE : A-jaNg™\n╰❂—————————————❂╯\n╭❂─────────────\n┃➣ ลูกเล่นมากกว่า 10,000 คำสั่ง\n┃➣ ราคา 10,000 ต่อปี\n┃➣ ระบบรันกลุ่มความเร็วแสง\n┃➣ ปีต่อไป 30,000\n┃➣ สปีดเทพเจ้า Super VPS™\n┃➣ ทีมบอทซึ่งเต็มไปด้วยอัจฉริยะ\n┃➣ ติดต่อทีมงานได้ 24 ชม.\n┃➣ อัพเดทระบบจากองค์กรนาซ่า\n┃➣ จำหน่ายสคริปบอทระดับโลก\n┃➣ กระโดดถีบหน้าพวกชอบแทค\n┃➣ CPU Core-i9 ยัดคาร์บู KR \n┃➣ ป้องกันการรันทุกรูปแบบ\n┃➣ มีระบบซักอบแห้งอัติโนมัติ\n┃➣ เป็นอมตะ ไม่มีวันตาย\n┃➣ มีดราก้อนบอลให้ฟื้นคืนชีพ\n╰❂─────────────\n╭❂—————————————❂╮\n┃ line.me/ti/p/~chivaree\n╰❂—————————————❂╯") sendMessageWithMention(to, lineMID) line.sendMessage(msg.to,"✿✿👇 กรุณาติดต่อ 👇✿✿") line.sendContact(to, "u7ae0eb00e07b2d6b7f4dd9ba577a2e3e") line.sendMessage(msg.to,"👆 •คนนี้ค่ะ• 🕟 " +datetime.today().strftime('%H:%M:%S')+ "➤") elif msg.text in ["ไอดีกู"]: line.sendReplyMessage(msg.id,to, "✯::: ♡•ไอดีคนน่ารักค่ะ•♡ ::✯\n" + lineMID) elif msg.text in ["ชื่อกู"]: me = line.getContact(lineMID) line.sendReplyMessage(msg.id,to, "✯::: ♡•ชื่อคนน่ารักค่ะ•♡ :::✯\n" + me.displayName) elif msg.text in ["ตัสกู"]: me = line.getContact(lineMID) line.sendReplyMessage(msg.id,to, "✯::: ♡•สเตตัสคนน่ารักค่ะ•♡ :::✯\n" + me.statusMessage) elif msg.text in ["โปรกู","ดิสกู","รูปกู","ภาพกู"]: line.sendReplyMessage(msg.id,to, "✯::: ♡•รูปคนน่ารักเจ้าค่ะ•♡ :::✯") me = line.getContact(lineMID) line.sendImageWithURL(msg.to,"http://dl.profile.line-cdn.net/" + me.pictureStatus) elif msg.text in ["วีดีโอกู"]: line.sendReplyMessage(msg.id,to, "✯::: ♡•วีดีโอคนน่ารักค่ะ•♡ :::✯") me = line.getContact(lineMID) line.sendVideoWithURL(msg.to,"http://dl.profile.line-cdn.net/" + me.pictureStatus + "/vp") elif msg.text in ["ปกกู"]: line.sendReplyMessage(msg.id,to, "🌀ปกคนน่ารักค่ะ " +datetime.today().strftime('%H:%M:%S')+ "™🌀") me = line.getContact(lineMID) cover = line.getProfileCoverURL(lineMID) line.sendImageWithURL(msg.to, cover) elif text.lower() == 'คอมเม้น': line.sendMessage(msg.to,str(settings["comment"])) elif text.lower() == 'ทักเข้า': line.sendMessage(msg.to, str(settings["welcome"])) elif text.lower() == 'ทักออก': line.sendMessage(msg.to, str(settings["bye"])) elif text.lower() == 'ทักเตะ': line.sendMessage(msg.to, str(settings["kick"])) elif text.lower() == 'ข้อความแอด': line.sendMessage(msg.to, str(settings["message"])) sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif text.lower() == 'ข้อความแทค': line.sendMessage(msg.to, str(settings["Respontag"])) elif text.lower() == 'แทคล่อง': gs = line.getGroup(to) targets = [] for g in gs.members: if g.displayName in "": targets.append(g.mid) if targets == []: line.sendReplyMessage(msg.id,to, "✯::•ไม่มีคนใส่ล่องหนในกลุ่มค่ะ•::✯") else: mc = "" for target in targets: mc += sendMessageWithMention(to,target) + "\n" line.sendMessage(to, mc) elif text.lower() == 'ไอดีล่อง': gs = line.getGroup(to) lists = [] for g in gs.members: if g.displayName in "": lists.append(g.mid) if lists == []: line.sendReplyMessage(msg.id,to, "✯::•ไม่มีคนใส่ล่องหนในกลุ่มค่ะ•::✯") else: mc = "" for mi_d in lists: mc += "->" + mi_d + "\n" line.sendMessage(to,mc) elif text.lower() == 'คทล่อง': gs = line.getGroup(to) lists = [] for g in gs.members: if g.displayName in "": lists.append(g.mid) if lists == []: line.sendReplyMessage(msg.id,to, "✯::•ไม่มีคนใส่ล่องหนในกลุ่มค่ะ•::✯") else: for ls in lists: contact = line.getContact(ls) mi_d = contact.mid line.sendContact(to, mi_d) #========================================================== elif msg.text.lower().startswith("คท "): if 'MENTION' in list(msg.contentMetadata.keys())!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for ls in lists: contact = line.getContact(ls) mi_d = contact.mid line.sendContact(msg.to, mi_d) line.sendMessage(msg.to,"✯::[[[☝คนหน้าม่อค่ะ☝]]]::✯") elif msg.text.lower().startswith("ปก "): if line != None: if 'MENTION' in list(msg.contentMetadata.keys())!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for ls in lists: path = line.getProfileCoverURL(ls) line.sendImageWithURL(msg.to, str(path)) line.sendMessage(msg.to,"🌀ปกคนหน้าม่อค่ะ " +datetime.today().strftime('%H:%M:%S')+ "™🌀") elif msg.text.lower().startswith("รูป "): if 'MENTION' in list(msg.contentMetadata.keys())!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for ls in lists: path = "http://dl.profile.line.naver.jp/" + line.getContact(ls).pictureStatus line.sendImageWithURL(msg.to, str(path)) line.sendMessage(to, "🌀รูปคนหน้าม่อค่ะ " +datetime.today().strftime('%H:%M:%S')+ "™🌀") elif msg.text.lower().startswith("ไอดี "): if 'MENTION' in list(msg.contentMetadata.keys())!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) ret_ = "" for ls in lists: ret_ += "✯::: ♡•ไอดีคนหน้าม่อค่ะ•♡ :::✯\n" + ls line.sendMessage(msg.to, str(ret_)) elif msg.text.lower().startswith("ชื่อ "): if 'MENTION' in list(msg.contentMetadata.keys())!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for ls in lists: contact = line.getContact(ls) line.sendMessage(msg.to, "☆::❂•ชื่อคนหน้าม่อค่ะ•❂::☆\n" + contact.displayName) elif msg.text.lower().startswith("ตัส "): if 'MENTION' in list(msg.contentMetadata.keys())!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for ls in lists: contact = line.getContact(ls) line.sendMessage(msg.to, "☆::❂•สเตตัสคนหน้าม่อค่ะ•❂::☆\n{}" + contact.statusMessage) #========================================================================== elif ".โพส " in msg.text: tl_text = msg.text.replace(".โพส ","") line.sendMessage(msg.to,"line://home/post?userMid="+lineMID+"&postId="+line.new_post(tl_text)["result"]["post"]["postInfo"]["postId"]) elif "โคลนนิ่ง " in msg.text: targets = [] key = eval(msg.contentMetadata["MENTION"]) key["MENTIONEES"][0]["M"] for x in key["MENTIONEES"]: targets.append(x["M"]) for target in targets: try: contact = line.getContact(target) X = contact.displayName profile = line.getProfile() profile.displayName = X line.updateProfile(profile) line.sendMessage(msg.to, "╭➣➣➣➣➣➣➣➣➣➣➣\n✯ เริ่มทำการโคลนนิ่งค่ะ®\n╰➣➣➣➣➣➣➣➣➣➣➣") #--------------------------------------- Y = contact.statusMessage lol = line.getProfile() lol.statusMessage = Y line.updateProfile(lol) #--------------------------------------- settings["changePictureProfile"] = True me = line.getContact(target) line.sendImageWithURL(msg.to,"http://dl.profile.line-cdn.net/" + me.pictureStatus) except Exception as e: line.sendMessage(msg.to, "Failed!") print (e) elif "คืนร่าง" in msg.text: if msg._from in admin: try: h = open('mydn.txt',"r") name = h.read() h.close() x = name profile = line.getProfile() profile.displayName = x line.updateProfile(profile) i = open('mysm.txt',"r") sm = i.read() i.close() y = sm cak = line.getProfile() cak.statusMessage = y line.updateProfile(cak) line.sendMessage(msg.to, "คืนได้แค่ชื่อกับตัสนะ😂😂") except Exception as e: line.sendMessage(msg.to,"การคืนร่างล้มเหลว!") print (e) #=========================================================================== elif msg.text in ["Allprotect on","เปิดกทม","เอจังกลัวตาย","เปิดระบบป้องกัน","เปิดพรบฉุกเฉิน"]: settings["kickMention"] = True settings["Aip"] = False RfuProtect["protect"] = True RfuProtect["cancelprotect"] = True RfuProtect["inviteprotect"] = True RfuProtect["linkprotect"] = True RfuProtect["Protectguest"] = True RfuProtect["Protectjoin"] = True line.sendMessage(to,"❂• เปิดระบบป้องกันทั้งหมดค่ะ •❂\n A~jańg@Opën 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["Allprotect off","ปิดกทม","เอจังไม่กลัว","ปิดระบบป้องกัน","ปิดพรบฉุกเฉิน"]: settings["kickMention"] = False settings["Aip"] = False RfuProtect["protect"] = False RfuProtect["cancelprotect"] = False RfuProtect["inviteprotect"] = False RfuProtect["linkprotect"] = False RfuProtect["Protectguest"] = False RfuProtect["Protectjoin"] = False line.sendMessage(to,"❂• ปิดระบบป้องกันทั้งหมดค่ะ •❂\n A~jańg@Clöse 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["Allmsg on","เปิดข้อความ"]: settings["Wc"] = True settings["Lv"] = True settings["Nk"] = True settings["autoRead"] = True settings["checkSticker"] = True settings["checkContact"] = True settings["checkPost"] = True settings["potoMention"] = True settings["detectMention"] = True settings["delayMention"] = True settings["Api"] = True line.sendMessage(to,"❂• เปิดระบบข้อความทั้งหมดค่ะ •❂\n A~jańg@Opën 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["Allmsg off","ปิดข้อความ"]: settings["Wc"] = False settings["Lv"] = False settings["Nk"] = False settings["autoRead"] = True settings["checkSticker"] = False settings["checkContact"] = False settings["checkPost"] = False settings["detectMention"] = False settings["potoMention"] = False settings["delayMention"] = False settings["Api"] = False line.sendMessage(to,"❂• ปิดระบบข้อความทั้งหมดค่ะ •❂\n A~jańg@Clöse 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") #==============================================================================# elif msg.text.lower().startswith("เลียนแบบ "): targets = [] key = eval(msg.contentMetadata["MENTION"]) key["MENTIONEES"][0]["M"] for x in key["MENTIONEES"]: targets.append(x["M"]) for target in targets: try: settings["mimic"]["target"][target] = True line.sendMessage(to,"❂•• ระบบเริ่มการเลียนแบบค่ะ ••❂\n A~jańg@Opën: 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") break except: line.sendMessage(msg.to,"Added Target Fail !") break elif msg.text.lower().startswith("เลิกเลียนแบบ "): targets = [] key = eval(msg.contentMetadata["MENTION"]) key["MENTIONEES"][0]["M"] for x in key["MENTIONEES"]: targets.append(x["M"]) for target in targets: try: del settings["mimic"]["target"][target] line.sendMessage(to,"❂•• ระบบเลิกการเลียนแบบค่ะ ••❂\n A~jańg@Clöse 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") break except: line.sendMessage(msg.to,"Deleted Target Fail !") break elif text.lower() == 'ลิสเลียนแบบ': if settings["mimic"]["target"] == {}: line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") else: mc = "╔══[ Mimic List ]" for mi_d in settings["mimic"]["target"]: mc += "\n╠ "+line.getContact(mi_d).displayName line.sendMessage(msg.to,mc + "\n╚══[ Finish ]") elif "สกิลเลียนแบบ" in msg.text.lower(): sep = text.split(" ") mic = text.replace(sep[0] + " ","") if mic == "on": if settings["mimic"]["status"] == False: settings["mimic"]["status"] = True line.sendReplyMessage(msg.id,to, "✯::[[[ ®-เปิดสกิลเลียนแบบค่ะ ]]]::✯") elif mic == "off": if settings["mimic"]["status"] == True: settings["mimic"]["status"] = False line.sendReplyMessage(msg.id,to, "✯::[[[ ®-ปิดสกิลเลียนแบบค่ะ ]]]::✯") #---------------------------------------------------------------------------------------------------------------------------------+ elif 'เพลย์สโต ' in msg.text.lower(): chivaree = msg.text.lower().replace('เพลย์สโต ',"") line.sendMessage(msg.to,"➤ ֆҽℓƒ-β❂T-ՃิՁণຮี ➤") line.sendMessage(msg.to,"❂➣-รอสักครู่ค่ะ...........") line.sendMessage(msg.to,"ผลจากการค้นหา : "+chivaree+"\nจาก : Google Play\nลิ้งโหลด : https://play.google.com/store/search?q=" + chivaree) line.sendMessage(to, "🌀 ค้นหาสำเร็จค่ะ " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif 'ฟังเพลง ' in msg.text.lower(): chivaree = msg.text.lower().replace('ฟังเพลง ',"") line.sendMessage(msg.to,"➤ ֆҽℓƒ-β❂T-ՃิՁণຮี ➤") line.sendMessage(msg.to,"🌀รอสักครู่ค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀") line.sendMessage(msg.to,"ผลจากการค้นหา : "+chivaree+"\n: https://m.youtube.com/results?search_query=เพลง" + chivaree) line.sendMessage(msg.to,"🎧::รับฟังได้เลยค่ะ จุ้ฟป้อก::🎧") elif 'github ' in msg.text.lower(): chivaree = msg.text.lower().replace('github ',"") line.sendMessage(msg.to,"➤ ֆҽℓƒ-β❂T-ՃิՁণຮี ➤") line.sendMessage(msg.to,"❂➣-รอสักครู่ค่ะ...........") line.sendMessage(msg.to,"ผลจากการค้นหา : "+chivaree+"\nจาก : GitHub\nลิ้ง : https://github.com/search?q=" + chivaree) line.sendMessage(to, "🌀 ค้นหาสำเร็จค่ะ " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif 'เฟสบุค ' in msg.text.lower(): chivaree = msg.text.lower().replace('เฟสบุค ',"") line.sendMessage(msg.to,"➤ ֆҽℓƒ-β❂T-ՃิՁণຮี ➤") line.sendMessage(msg.to,"❂➣-รอสักครู่ค่ะ...........") line.sendMessage(msg.to,"ผลจากการค้นหา : "+chivaree+"\nจาก : เฟสบุค\nลิ้ง : https://m.facebook.com/search/top/?q=" + chivaree) line.sendMessage(to, "🌀 ค้นหาสำเร็จค่ะ " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") #=================================================================== elif "เกรียน " in msg.text: txt = msg.text.split(" ") jmlh = int(txt[2]) teks = msg.text.replace("เกรียน "+str(txt[1])+" "+str(jmlh)+" ","") tulisan = jmlh * (teks+"\n") if txt[1] == "on": if jmlh <= 100000: for x in range(jmlh): line.sendMessage(msg.to, teks) else: line.sendMessage(msg.to, "Out of Range!") elif txt[1] == "off": if jmlh <= 100000: line.sendMessage(msg.to, tulisan) else: line.sendMessage(msg.to, "Out Of Range!") elif "Spam " in msg.text: txt = msg.text.split(" ") jmlh = int(txt[2]) teks = msg.text.replace("Spam "+str(txt[1])+" "+str(jmlh)+" ","") tulisan = jmlh * (teks+"\n") if txt[1] == "on": if jmlh <= 100000: for x in range(jmlh): line.sendMessage(msg.to, teks) else: line.sendMessage(msg.to, "Out of Range!") elif txt[1] == "off": if jmlh <= 100000: line.sendMessage(msg.to, tulisan) else: line.sendMessage(msg.to, "Out Of Range!") elif "รันคอล" in msg.text.lower(): if msg.toType == 2: sep = msg.text.split(" ") resp = msg.text.replace(sep[0] + " ","") num = int(resp) try: line.sendReplyMessage(msg.id,to, "✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯") line.sendMessage(msg.to,"☎•ระบบเริ่มรันคอลค่ะ•☎") line.sendMessage(to, "📞........🔆 " +datetime.today().strftime('%H:%M:%S')+ "™ ") except: pass for var in range(num): group = line.getGroup(msg.to) members = [mem.mid for mem in group.members] line.acquireGroupCallRoute(msg.to) line.inviteIntoGroupCall(msg.to, contactIds=members) line.sendMessage(msg.to,"🌀•รันคอลเสร็จเรียบร้อยค่ะ•🌀") elif msg.text.lower().startswith("สแปมคอล"): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): members = [mem.mid for mem in group.members] line.acquireGroupCallRoute(to) line.inviteIntoGroupCall(to, contactIds=members) else: line.sendMessage(to, "🌀•สแปมคอลเรียบร้อยค่ะ•🌀".format(str(jml))) #============================================================== elif msg.text.lower().startswith("ทัก "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) for x in range(jml): name = line.getContact(to) RhyN_(to, name.mid) #========================================================== # โหมดคำสั่งเอจังค่ะ~•💜.💙.💚.💖.💜.💔 จัดทำโดยคุณชิวารี. •••®©••• #========================================================== elif msg.text in ["กู","กุ","กรู","กือ","เอ","สุดสวย","สวยสุด","ใสใส","คนน่ารัก","นุ่ย","นุ้ย","คนสวย","นายก","นมโต"]: line.sendContact(to, lineMID) line.sendMessage(msg.to,"❂➣-ՃิՁণຮี: 🕟 " +datetime.today().strftime('%H:%M:%S')+ "➤") #------------------------------------------------------------------------------------------------------------ elif msg.text in ["ฉายากู","ฉายาเอจัง","ฉายา"]: line.sendReplyMessage(msg.id,to, "✧••••••••••❂✧✯✧❂••••••••••✧\n\n🔸 ข้าคือเทพงูหางกระดิ่งเอจัง\n🔸 เทพผู้มีอสรพิษอันร้ายแรง\n🔸 ที่แฝงไปด้วยความน่ารัก\n\n •🐍•🐍•🐍•🐍•🐍•🐍•🐍•🐍•\n✧••••••••••❂✧✯✧❂••••••••••✧") sendMessageWithMention(to, lineMID) line.sendMessage(msg.to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif msg.text in ["ซักอบรีด","ซักอบแห้ง","ซักผ้า","โตชิบา","โตชิบ้า"]: line.sendReplyMessage(msg.id,to, " ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n─━─━━•≪❂≫•━━─━─\n✲•• ระบบเริ่มซักอบแห้งค่ะ ••✲\n🌟•เวลาในการซัก 🕚 : 45 นาที \n🌟•ปั่นแห้งระบบไอน้ำ 15 นาที\n🌟•ตากเองอัติโนมัติรวม 2 ชมค่ะ") sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif msg.text in ["เอจังไม่ว่าง","ไม่ว่าง","พี่ไม่ว่าง"]: line.sendReplyMessage(msg.id,to, " ✯͜͡✯•No•No•No•No•No•✯͜͡✯\n✧•••••••••••❂✧✯✧❂••••••••••••✧\n ✲ท่านอัจฉริยะเอจังไม่ว่างตอบ✲\n\n เนื่องจากติดธุรกิจปลากัด100ล้าน\n 💙•💙• ขออภัยอย่างยิ่ง •💙•💙\n\n🔸งดถ่ายแบบทั่วราชอาณาจักร🔸\n✧•••••••••••❂✧✯✧❂••••••••••••✧") sendMessageWithMention(to, lineMID) line.sendMessage(msg.to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") #------------------------------------------------------------------------------------------------------------ #แก้ดีๆ ระวังไฟล์พังไม่รุ้นะ. 5555555 #------------------------------------------------------------------------------------------------------------ elif msg.text in ["ไฮสปีด","สปีดไฮ","สปีด","สปูด","สปาด","สปุด"]: line.sendMessage(msg.to, "♡╬╬♡•ຟနุ้७ຟနิ้७•♡╬╬♡") line.sendMessage(msg.to, "•─ ͜͡✯͜͡S͜͡p͜͡e͜͡e͜͡e͜͡d✯͜͡ѕ͜͡є͜͡ʟ͜͡ғ͜͡в͜͡о͜͡т͜͡✯─•") start = time.time() time.sleep(0.01) elapsed_time = time.time() - start line.sendMessage(msg.to, "%sseconds" % (elapsed_time)) #------------------------------------------------------------------------------------------------------------ elif msg.text in ["4g",".357"]: line.sendMessage(msg.to, "■•■•■•■ O.K. ■•■•■•■") line.sendMessage(msg.to, "✧•••••❂Tëst Speëd❂•••••✧") start = time.time() time.sleep(0.01) elapsed_time = time.time() - start line.sendMessage(msg.to, "%sseconds" % (elapsed_time)) #-------------------------------------------++++++++++++------------------------------------------ elif msg.text in ["8g","เทสจรวด","Ais","3bb","Dtac"]: line.sendMessage(msg.to, "❂❂❂❂• ՃิՁণຮี •❂❂❂❂") line.sendMessage(msg.to, "•••••••• Tëst $peed ••••••••") start = time.time() time.sleep(0.01) elapsed_time = time.time() - start line.sendMessage(msg.to, "%sseconds" % (elapsed_time)) #------------------------------------------------------------------------------------------------------------- elif msg.text in ["9g",".45"]: line.sendMessage(msg.to, "❂ՃิՁণຮี•➣➣➣➣➣➣➣") line.sendMessage(msg.to, "❂•➣➣➣ S.p.ë.e.d ➣➣➣➣") start = time.time() time.sleep(0.01) elapsed_time = time.time() - start line.sendMessage(msg.to, "%sseconds" % (elapsed_time)) #-------------------------------------------------------------------------------------------------------------- elif msg.text in ["10g","M16"]: line.sendMessage(msg.to, "✧•••••••••❂✧✯✧❂••••••••••✧\n ♡♡ HELLO KITTY ♡♡\n✧•••••••••❂✧✯✧❂••••••••••✧") line.sendMessage(msg.to, "❂•➣➣➣ S.p.ë.e.d ➣➣➣➣") start = time.time() time.sleep(0.002) elapsed_time = time.time() - start line.sendMessage(msg.to, "%sseconds" % (elapsed_time)) #------------------------------------------------------------------------------------------------------------- elif msg.text in ["11g","Hk"]: line.sendMessage(msg.to, "✧•••••••••❂✧✯✧❂••••••••••✧\n Tëst : Prëmium Spëed™\n✧•••••••••❂✧✯✧❂••••••••••✧") line.sendMessage(msg.to, "❂•➣➣➣ S.p.ë.e.d ➣➣➣➣") start = time.time() time.sleep(0.01) elapsed_time = time.time() - start line.sendMessage(msg.to, "%sseconds" % (elapsed_time)) #------------------------------------------------------------------------------------------------------------- elif msg.text in ["12g",".38","สปิด","สปีด","สเปด","สแปด","สปัด"]: line.sendMessage(msg.to, "➤➤ ֆҽℓƒ-β❂T-ՃิՁণຮี ➤➤") line.sendMessage(to,"❂•Speed•❂ : 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") start = time.time() time.sleep(0.01) elapsed_time = time.time() - start line.sendMessage(msg.to, "%sseconds" % (elapsed_time)) #-------------------------------------------------------------------------------------------------------------- elif msg.text in ["13g",".22"]: line.sendMessage(msg.to, "Hî Speëd:•➣➣➣➣➣➣➣➣") line.sendMessage(msg.to, "❂ՃิՁণຮี•➣➣➣➣➣➣➣") start = time.time() time.sleep(0.01) elapsed_time = time.time() - start line.sendMessage(msg.to, "%sseconds" % (elapsed_time)) #------------------------------------------------------------------------------------------------------------ elif msg.text in ["รถเต่า","Bmx","Bmw","Benz","ปอร์เช่","เบ้นซ์","จากัวร์","เฟอร์รารี่"]: line.sendMessage(msg.to, "■•■•■• 3500cc •■•■•■") line.sendMessage(msg.to, "●•➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to, "●•➤➤➤➤➤➤➤➤➤➤➤➤") start = time.time() time.sleep(0.01) elapsed_time = time.time() - start line.sendMessage(msg.to, "%sseconds" % (elapsed_time)) #-------------------------------------------------------------------------------------------------------------------------------- # คำสั้งเกมไฮโล กับเต้าปูปลา เปนคำสั่ง4ชั้น มีตัวแปลบังคับ แก้ดีๆ ระวังไฟล์พังไม่รุ้นะ. 555 # จัดทำโดยคุณเอจัง มีอะไรสงสัย สักถาม เด้งแชทมาค่ะ #-------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไฮโล","เปิดไฮโล","hilo","Hilo"]: try: chivaree = ['💔•💔• เริ่มเขย่าค่ะ •💔•💔','💙•💙• เริ่มเขย่าค่ะ •💙•💙','💚•💚• เริ่มเขย่าค่ะ •💚•💚','💜•💜• เริ่มเขย่าค่ะ •💜•💜','💛•💛• เริ่มเขย่าค่ะ •💛•💛','💘•💘• เริ่มเขย่าค่ะ •💘•💘'] chivaree1 = ['•💗•••• 1 ••••💗•','•💙•••• 1 ••••💙•','•💜•••• 1 ••••💜•','•💛•••• 1 ••••💛•','•💚•••• 1 ••••💚•','•💖•••• 1 ••••💖•','•🔶•••• 1 ••••🔶•','•🔷•••• 1 ••••🔷•'] chivaree2 = ['•💗•••• 2 ••••💗•','•💙•••• 2 ••••💙•','•💜•••• 2 ••••💜•','•💛•••• 2 ••••💛•','•💚•••• 2 ••••💚•','•💖•••• 2 ••••💖•','•🔶•••• 2 ••••🔶•','•🔷•••• 2 ••••🔷•'] chivaree3 = ['•💗•••• 3 ••••💗•','•💙•••• 3 ••••💙•','•💜•••• 3 ••••💜•','•💛•••• 3 ••••💛•','•💚•••• 3 ••••💚•','•💖•••• 3 ••••💖•','•🔶•••• 3 ••••🔶•','•🔷•••• 3 ••••🔷•'] chivareeA = [' •1•1•1•1•',' •2•2•2•2•',' •3•3•3•3•',' •4•4•4•4•',' •5•5•5•5•',' •6•6•6•6•'] ajang = random.choice(chivaree) line.sendMessage(to, str(ajang)) ajang = random.choice(chivaree3) line.sendMessage(to, str(ajang)) ajang = random.choice(chivaree2) line.sendMessage(to, str(ajang)) ajang = random.choice(chivaree1) line.sendMessage(to, str(ajang)) line.sendMessage(msg.to, "🌀เปิดค่ะ🎲 " +datetime.today().strftime('%H:%M:%S')+ "🌀") ajang = "🎲•🎲•🎲•🎲\n" + random.choice(chivareeA) + "\n🎲•🎲•🎲•🎲" line.sendMessage(to, str(ajang)) ajang = "🎲•🎲•🎲•🎲\n" + random.choice(chivareeA) + "\n🎲•🎲•🎲•🎲" line.sendMessage(to, str(ajang)) ajang = "🎲•🎲•🎲•🎲\n" + random.choice(chivareeA) + "\n🎲•🎲•🎲•🎲" line.sendMessage(to, str(ajang)) except Exception as e: line.sendMessage(msg.to, str(e)) elif msg.text in ["กุ้งปลา","เต้าปูปลา"]: try: chivaree = ['💔•💔• เริ่มการสุ่มค่ะ •💔•💔','💙•💙• เริ่มการสุ่มค่ะ •💙•💙','💚•💚• เริ่มการสุ่มค่ะ •💚•💚','💜•💜• เริ่มการสุ่มค่ะ •💜•💜','💛•💛• เริ่มการสุ่มค่ะ •💛•💛','💘•💘• เริ่มการสุ่มค่ะ •💘•💘'] chivaree1 = ['•💗•••• 1 ••••💗•','•💙•••• 1 ••••💙•','•💜•••• 1 ••••💜•','•💛•••• 1 ••••💛•','•💚•••• 1 ••••💚•','•💖•••• 1 ••••💖•','•🔶•••• 1 ••••🔶•','•🔷•••• 1 ••••🔷•'] chivaree2 = ['•💗•••• 2 ••••💗•','•💙•••• 2 ••••💙•','•💜•••• 2 ••••💜•','•💛•••• 2 ••••💛•','•💚•••• 2 ••••💚•','•💖•••• 2 ••••💖•','•🔶•••• 2 ••••🔶•','•🔷•••• 2 ••••🔷•'] chivaree3 = ['•💗•••• 3 ••••💗•','•💙•••• 3 ••••💙•','•💜•••• 3 ••••💜•','•💛•••• 3 ••••💛•','•💚•••• 3 ••••💚•','•💖•••• 3 ••••💖•','•🔶•••• 3 ••••🔶•','•🔷•••• 3 ••••🔷•'] chivareeX = ['🎃•🎃•🎃•🎃\n • น้ำเต้า •\n🎃•🎃•🎃•🎃','🐓•🐓•🐓•🐓\n •ไก่•ไก่•ไก่•\n🐓•🐓•🐓•🐓','🐯•🐯•🐯•🐯\n •เสือ•เสือ•\n🐯•🐯•🐯•🐯','🦀•🦀•🦀•🦀\n •ปู•ปู•ปู•ปู•\n🦀•🦀•🦀•🦀','🐠•🐠•🐠`🐠\n •ปลา•ปลา•\n🐠•🐠•🐠•🐠','🦐•🦐•🦐•🦐\n •กุ้ง•กุ้ง•กุ้ง•\n🦐•🦐•🦐•🦐'] ajang = random.choice(chivaree) line.sendMessage(to, str(ajang)) ajang = random.choice(chivaree3) line.sendMessage(to, str(ajang)) ajang = random.choice(chivaree2) line.sendMessage(to, str(ajang)) ajang = random.choice(chivaree1) line.sendMessage(to, str(ajang)) line.sendMessage(msg.to, "🌀เปิดค่ะ " +datetime.today().strftime('%H:%M:%S')+ "🌀") ajang = random.choice(chivareeX) line.sendMessage(msg.to, str(ajang)) ajang = random.choice(chivareeX) line.sendMessage(msg.to, str(ajang)) ajang = random.choice(chivareeX) line.sendMessage(msg.to, str(ajang)) except Exception as e: line.sendMessage(msg.to, str(e)) #---------------------------------------------------------------------------------------------------------- elif msg.text in ["✲•เริ่มทำการเขย่าค่ะ•✲"]: try: chivaree = ['✯💜•Random•💜✯\n✯💜•Random•💜✯','✯💛•Random•💛✯\n✯💛•Random•💛✯','✯💗•Random•💗✯\n✯💗•Random•💗✯','✯💚•Random•💚✯\n✯💚•Random•💚✯','✯💙•Random•💙✯\n✯💙•Random•💙✯','✯💔•Random•💔✯\n✯💔•Random•💔✯','✯🔶•Random•🔶✯\n✯🔶•Random•🔶✯','✯🔷•Random•🔷✯\n✯🔷•Random•🔷✯','✯🌟•Random•🌟✯\n✯🌟•Random•🌟✯'] chivaree8 = [' •1•1•1•1•',' •2•2•2•2•',' •3•3•3•3•',' •4•4•4•4•',' •5•5•5•5•',' •6•6•6•6•'] ajang = random.choice(chivaree) line.sendMessage(to, str(ajang)) line.sendMessage(msg.to, "💘เปิดค่ะ " +datetime.today().strftime('%H:%M:%S')+ "💘") ajang = "🎲•🎲•🎲•🎲\n" + random.choice(chivaree8) + "\n🎲•🎲•🎲•🎲" line.sendMessage(to, str(ajang)) ajang = "🎲•🎲•🎲•🎲\n" + random.choice(chivaree8) + "\n🎲•🎲•🎲•🎲" line.sendMessage(to, str(ajang)) ajang = "🎲•🎲•🎲•🎲\n" + random.choice(chivaree8) + "\n🎲•🎲•🎲•🎲" line.sendMessage(to, str(ajang)) except Exception as e: line.sendMessage(msg.to, str(e)) elif msg.text in ["✲•เริ่มทำการสุ่มเจ้าค่ะ•✲"]: try: chivaree = ['✯💜•Random•💜✯\n✯💜•Random•💜✯','✯💛•Random•💛✯\n✯💛•Random•💛✯','✯💗•Random•💗✯\n✯💗•Random•💗✯','✯💚•Random•💚✯\n✯💚•Random•💚✯','✯💙•Random•💙✯\n✯💙•Random•💙✯','✯💔•Random•💔✯\n✯💔•Random•💔✯','✯🔶•Random•🔶✯\n✯🔶•Random•🔶✯','✯🔷•Random•🔷✯\n✯🔷•Random•🔷✯','✯🌟•Random•🌟✯\n✯🌟•Random•🌟✯'] chivareeZ = ['🎃•🎃•🎃•🎃\n • น้ำเต้า •\n🎃•🎃•🎃•🎃','🐓•🐓•🐓•🐓\n •ไก่•ไก่•ไก่•\n🐓•🐓•🐓•🐓','🐯•🐯•🐯•🐯\n •เสือ•เสือ•\n🐯•🐯•🐯•🐯','🦀•🦀•🦀•🦀\n •ปู•ปู•ปู•ปู•\n🦀•🦀•🦀•🦀','🐠•🐠•🐠`🐠\n •ปลา•ปลา•\n🐠•🐠•🐠•🐠','🦐•🦐•🦐•🦐\n •กุ้ง•กุ้ง•กุ้ง•\n🦐•🦐•🦐•🦐'] ajang = random.choice(chivaree) line.sendMessage(to, str(ajang)) line.sendMessage(msg.to, "💘เปิดค่ะ " +datetime.today().strftime('%H:%M:%S')+ "💘") ajang= random.choice(chivareeZ) line.sendMessage(to, str(ajang)) ajang = random.choice(chivareeZ) line.sendMessage(to, str(ajang)) ajang = random.choice(chivareeZ) line.sendMessage(to, str(ajang)) except Exception as e: line.sendMessage(msg.to, str(e)) #------------------------------------------------------------------------------------------------------------- # •••💛•💗•💚 โหมดพลังจิต จัดทำโดยเอจัง 💚•💗•💛••• #-------------------------------------------------------------------------------------------------------------- elif msg.text in ["ทานข้าวยัง","ทานข้าวกันไหม"]: if msg.toType == 2: group = line.getGroup(msg.to) else: group = line.getRoom(msg.to) lists = [contact for contact in group.members] for ls in lists: anu = ls mid = "{}".format(ls) text = "✲ ขอบคุณนะ กินขี้อิ่มแล้วจ้า ✲" icon = "http://dl.profile.line.naver.jp/{}".format(anu.pictureStatus) name = "{}".format(anu.displayName) sendMessageCustom(msg.to, text, icon, name) elif msg.text in ["แสดงความเคารพ","ทำความเคารพ"]: if msg.toType == 2: group = line.getGroup(msg.to) else: group = line.getRoom(msg.to) lists = [contact for contact in group.members] for ls in lists: anu = ls mid = "{}".format(ls) text = "🔹• คาราวะลูกพี่ใหญ่เอจัง•🔹" icon = "http://dl.profile.line.naver.jp/{}".format(anu.pictureStatus) name = "{}".format(anu.displayName) sendMessageCustom(msg.to, text, icon, name) elif msg.text in ["ขอเสียงเอฟซี","ขอเสียงแฟนคลับ"]: if msg.toType == 2: group = line.getGroup(msg.to) else: group = line.getRoom(msg.to) lists = [contact for contact in group.members] for ls in lists: anu = ls mid = "{}".format(ls) text = "🔶 F.C. เอจัง น่ารั้ก กรี๊ดๆๆ 🔶" icon = "http://dl.profile.line.naver.jp/{}".format(anu.pictureStatus) name = "{}".format(anu.displayName) sendMessageCustom(msg.to, text, icon, name) elif msg.text in ["เอจังมาแล้ว","พี่ชิมาแล้ว","เจมมี่มาแล้ว","น้องชิมาแล้ว"]: if msg.toType == 2: group = line.getGroup(msg.to) else: group = line.getRoom(msg.to) lists = [contact for contact in group.members] for ls in lists: anu = ls mid = "{}".format(ls) text = "🌟กรี๊ดๆไอดอลมา ขอลายเซ็นน่อย🌟" icon = "http://dl.profile.line.naver.jp/{}".format(anu.pictureStatus) name = "{}".format(anu.displayName) sendMessageCustom(msg.to, text, icon, name) elif msg.text in ["ชมเค้าหน่อย","ขอความในใจ"]: if msg.toType == 2: group = line.getGroup(msg.to) else: group = line.getRoom(msg.to) lists = [contact for contact in group.members] for ls in lists: anu = ls mid = "{}".format(ls) text = "✲เอจังสุดสวยเลิศหล้าแห่งปฐพี✲" icon = "http://dl.profile.line.naver.jp/{}".format(anu.pictureStatus) name = "{}".format(anu.displayName) sendMessageCustom(msg.to, text, icon, name) elif msg.text in ["สาวกผี","ขอเสียงเด็กผี"]: if msg.toType == 2: group = line.getGroup(msg.to) else: group = line.getRoom(msg.to) lists = [contact for contact in group.members] for ls in lists: anu = ls mid = "{}".format(ls) text = "😈• ปีศาจแดงแมนยูจงเจริญ •😈" icon = "http://dl.profile.line.naver.jp/{}".format(anu.pictureStatus) name = "{}".format(anu.displayName) sendMessageCustom(msg.to, text, icon, name) #--------------------------------------------------------------------------------------------------------- elif msg.text in ["✲• Aütó Mëssage •✲"]: try: chivaree1 = [' 💜•💜 คุณเอจังไม่ว่างค่ะ 💜•💜',' 💚•💚 คุณเอจังไม่ว่างค่ะ 💚•💚',' 💙•💙 คุณเอจังไม่ว่างค่ะ 💙•💙',' 💔•💔 คุณเอจังไม่ว่างค่ะ 💔•💔',' 💛•💛 คุณเอจังไม่ว่างค่ะ 💛•💛',' 💘•💘 คุณเอจังไม่ว่างค่ะ 💘•💘',' 🔶•🔶 คุณเอจังไม่ว่างค่ะ 🔶•🔶',' 🔷•🔷 คุณเอจังไม่ว่างค่ะ 🔷•🔷',' 🌟•🌟 คุณเอจังไม่ว่างค่ะ 🌟•🌟'] chivaree2 = [' •พี่นั่งสมาธิอยู่..เดี่ยวปืนลั่นค่ะ•',' •ขับเครื่องบินอยู่อย่ารบกวนค่ะ•',' •เรียกบ่อยแบบนี้ให้แม่มาขอต่ะ•',' •กำลังเกรียนอยู่อย่ามายุ่งค่ะ•',' •ให้อาหารว่างไดโนเสาร์อยู่ค่ะ•',' •ติดธุรกิจปลากัด100ล้าน•',' • ปั่นป๊อกเด้งอยู่อย่าเรียกค่ะ •',' •ติดถ่ายแบบอยู่รอตามคิวน่ะค่ะ•',' •สร้างแลนมาร์คอยู่รอในเกมค่ะ•',' •รันไวรัสอยู่..เอาด้วยไหมค่ะ•',' •ไม่ว่างเล่นด้วยนะขัดสนิมปืนอยู่•',' •ไปเล่นขี้พลางๆนะค่ะพี่ยังไม่ว่าง•'] ret_ = "❂———————————————❂\n" + random.choice(chivaree1) + "\n❂———————————————❂\n" + random.choice(chivaree2) + "\n🌀•ขออภัย•ณ.เวลา" +datetime.today().strftime('%H:%M:%S')+ "🌀" line.sendMessage(to, str(ret_)) except Exception as e: line.sendMessage(msg.to, str(e)) #------------------------------------------------------------------------------------------------------------ elif msg.text in ["เอจังนับ","นับ"]: line.sendMessage(msg.to,"➤ ֆҽℓƒ-β❂T-ՃิՁণຮี ➤") line.sendMessage(msg.to,"❂➣-รอสักครู่ค่ะ...........") line.sendMessage(msg.to,"💖:::⭐ 1 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 2 ⭐:::💚") line.sendMessage(msg.to,"💙:::⭐ 3 ⭐:::💙") line.sendMessage(msg.to,"💔:::⭐ 4 ⭐:::💔") line.sendMessage(msg.to,"💖:::⭐ 5 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 6 ⭐:::💚") line.sendMessage(msg.to,"💙:::⭐ 7 ⭐:::💙") line.sendMessage(msg.to,"💔:::⭐ 8 ⭐:::💔") line.sendMessage(msg.to,"💖:::⭐ 9 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 0 ⭐:::💚") #-------------------------------------------------------------------------------------------------------------- elif msg.text in ["เอจังนับจีน","นับจีน"]: line.sendMessage(msg.to,"✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯") line.sendMessage(msg.to,"❂➣-รอสักครู่ค่ะ...........") line.sendMessage(msg.to,"💖:::⭐ พ่อ ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ มึง ⭐:::💚") line.sendMessage(msg.to,"💙:::⭐ สิ* ⭐:::💙") line.sendMessage(msg.to,"💔:::⭐ กู* ⭐:::💔") line.sendMessage(msg.to,"💖:::⭐ นับ ⭐:::💖") line.sendMessage(msg.to,"💖:::⭐ จีน ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ ไม่ ⭐:::💚") line.sendMessage(msg.to,"💙:::⭐ ได้ ⭐:::💙") line.sendMessage(msg.to,"🌀ไอเหี้ย 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀") #------------------------------------------------------------------------------------------------------------------ elif msg.text in ["เอจังนับไทย","นับไทย"]: line.sendMessage(msg.to,"✥ ֆҽℓƒ-β❂T-ՃิՁণຮี ✥") line.sendMessage(msg.to,"❂➣-รอสักครู่ค่ะ...........") line.sendMessage(msg.to,"💖:::⭐ ๑ ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ ๒ ⭐:::💚") line.sendMessage(msg.to,"💙:::⭐ ๓ ⭐:::💙") line.sendMessage(msg.to,"💔:::⭐ ๔ ⭐:::💔") line.sendMessage(msg.to,"💖:::⭐ ๕ ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ ๖ ⭐:::💚") line.sendMessage(msg.to,"💙:::⭐ ๗ ⭐:::💙") line.sendMessage(msg.to,"💔:::⭐ ๘ ⭐:::💔") line.sendMessage(msg.to,"💖:::⭐ ๙ ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 0 ⭐:::💚") line.sendMessage(msg.to,"✥ ขอบพระทัยเพค่ะ ✥") #------------------------------------------------------------------------------------------------------------- elif msg.text in ["เอจังนับอังกฤษ","นับอังกฤษ"]: line.sendMessage(msg.to,"🎃 ֆҽℓƒ-β❂T-ՃิՁণຮี 🎃") line.sendMessage(msg.to,"❂➣-รอสักครู่ค่ะ...........") line.sendMessage(msg.to,"💖⭐ ••One•• ⭐💖") line.sendMessage(msg.to,"💚⭐ ••Two•• ⭐💚") line.sendMessage(msg.to,"💙⭐ •Three• ⭐💙") line.sendMessage(msg.to,"💔⭐ •Four• ⭐💔") line.sendMessage(msg.to,"💖⭐ ••Five•• ⭐💖") line.sendMessage(msg.to,"💚⭐ •••Six••• ⭐💚") line.sendMessage(msg.to,"💙⭐ •Seven• ⭐💙") line.sendMessage(msg.to,"💔⭐ •Eight• ⭐💔") line.sendMessage(msg.to,"💖⭐ ••Nine•• ⭐💖") line.sendMessage(msg.to,"💚⭐ ••Zero•• ⭐💚") line.sendMessage(msg.to,"■•■•■• OK •■•■•■") #----------------------------------------------------------------------------------------------------------- elif msg.text in ["เอจังนับอินโด","นับอินโด"]: line.sendMessage(msg.to,"➤➤ ֆҽℓƒ-β❂T-ՃิՁণຮี ➤➤") line.sendMessage(msg.to,"❂➣-รอสักครู่ค่ะ..................") line.sendMessage(msg.to,"💖⭐1 •••Satu••• 1⭐💖") line.sendMessage(msg.to,"💚⭐2••••Dua••••2⭐💚") line.sendMessage(msg.to,"💙⭐3 •••Tiga••• 3⭐💙") line.sendMessage(msg.to,"💔⭐4 ••Empat••4⭐💔") line.sendMessage(msg.to,"💖⭐5 ••Lima•• 5⭐💖") line.sendMessage(msg.to,"💚⭐6•••Enam•••6⭐💚") line.sendMessage(msg.to,"💙⭐7 ••Tujuh•• 7⭐💙") line.sendMessage(msg.to,"💔⭐8 •Delapan•8⭐💔") line.sendMessage(msg.to,"💖⭐9 Sembilan 9⭐💖") line.sendMessage(msg.to,"💚⭐0 ••••Nol•••• 0⭐💚") line.sendMessage(msg.to,"A~jańg@Indo 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") #------------------------------------------------------------------------------------------------------------ elif msg.text in ["เอจังนับสเปน","นับสเปน"]: line.sendMessage(msg.to,"🌀 ֆҽℓƒ-β❂T-ՃิՁণຮี 🌀") line.sendMessage(msg.to,"❂➣-รอสักครู่ค่ะ...........") line.sendMessage(msg.to,"1.❂••• รีลมาดริด") line.sendMessage(msg.to,"2.❂••• บาเซโลน่า") line.sendMessage(msg.to,"3.❂••• บาเลนเซีย") line.sendMessage(msg.to,"4.❂•• แอตมาดริด") line.sendMessage(msg.to,"5.❂•• ลาคอรุนญ่า") line.sendMessage(msg.to,"6.❂••เอสปันญ่อล") line.sendMessage(msg.to,"7.❂••• โอซาซูน่า") line.sendMessage(msg.to,"8.❂••• ซาราโกซ่า") line.sendMessage(msg.to,"9.❂•••• บียาร์รีลล์") line.sendMessage(msg.to,"0.❂••• เรอัลเบติส") line.sendMessage(msg.to,"💜•⭐ขอบคุณค่ะ•⭐•💜") #--------------------------------------------------------------------------------------------------------------- elif msg.text in ["เอจังนับไฮโซ","นับไฮโซ"]: line.sendReplyMessage(msg.id,to,"⭐⭐ •ֆҽℓƒ-β❂T-ՃิՁণຮี• ⭐⭐") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💖💖[[[[[ 1 ]]]]]💖💖\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💚💚[[[[[ 2 ]]]]]💚💚\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💙💙[[[[[ 3 ]]]]]💙💙\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💔💔[[[[[ 4 ]]]]]💔💔\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💖💖[[[[[ 5 ]]]]]💖💖\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💚💚[[[[[ 6 ]]]]]💚💚\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💙💙[[[[[ 7 ]]]]]💙💙\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💔💔[[[[[ 8 ]]]]]💔์💔\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💖ั๊💖[[[[[ 9 ]]]]]💖💖\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") line.sendMessage(msg.to,"✧••••••❂✯❂••••••✧\n💚💚[[[[[ 0 ]]]]]💚💚\n ••••• " +datetime.today().strftime('%H:%M:%S')+ " •••••") #----------------------------------------------------------------------------------------------------------------- elif msg.text in ["ใครสวยสุด","ใครน่ารักสุด","ใครเกรียนสุด","ใครอัจฉริยะสุด","ใครนมโตสุด","ใครเทพสุด"]: line.sendReplyMessage(msg.id,to,"✥•✥ ֆҽℓƒ-β❂T-ՃิՁণຮี ✥•✥") line.sendMessage(msg.to,"⭐ระบบอัจฉริยะกำลังทำงาน⭐") line.sendMessage(msg.to,"🔍 Search Bot :::::::::::::::::::::") line.sendMessage(msg.to,"Now Loding...............") line.sendMessage(msg.to,"15% ❂•➣➣➣➣") line.sendMessage(msg.to,"32% ❂•➣➣➣➣") line.sendMessage(msg.to,"67% ❂•➣➣➣➣") line.sendMessage(msg.to,"99% ❂•➣➣➣➣") line.sendMessage(msg.to,"💖•Mission Complete•💖") line.sendMessage(msg.to,"❂➣-ՃิՁণຮี: 🕟 " +datetime.today().strftime('%H:%M:%S')+ "➤") line.sendContact(to, "u7ae0eb00e07b2d6b7f4dd9ba577a2e3e") line.sendMessage(msg.to,"👆• คนนี้เจ้าค่ะ by : เอจัง •👆") #--------------------------------------------------------------------------------------------------------------- elif msg.text in ["เอจังopen"]: line.sendMessage(msg.to,"✯::[[[ เปิดระบบเรียบร้อยค่ะ ]]]::✯\n A~jańg@Opën 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["เอจังclose"]: line.sendMessage(msg.to,"✯::[[[ ปิดระบบเรียบร้อยค่ะ ]]]::✯\nA~jańg@Clöse 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["ชิวารีออน"]: line.sendMessage(msg.to,"✧•••❂ เวลาทำงานของบอท ❂•••✧") line.sendMessage(msg.to," ❂-ՃิՁণຮี•➣Böt : 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n╔•➤➤➤➤➤➤➤➤➤➤➤➤➤\n╠ Ä☆➣ 1 ปี\n╠ ••••••Ä☆➣ 765 ชั่วโมง\n╠ •••••••••••••Ä☆➣ 908 นาที\n╚•➤➤➤➤➤➤➤➤➤➤➤➤➤") #---------------------------------------------------------------------------------------------------------------- elif msg.text in ["เอจังด่า"]: line.sendMessage(msg.to,"❂•สักครู่ระบบกำลังประมวลผล•❂\n A~jang@Open 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") line.sendMessage(msg.to,"Now Loding...........................") line.sendMessage(msg.to,"❂•••• ไอ้ผีฉีกเรียน ••••❂") line.sendMessage(msg.to,"❂••• อีคางคกเห็นผี •••❂") line.sendMessage(msg.to,"❂•• อีจระเข้เดินห้าง ••❂") line.sendMessage(msg.to,"❂••••• ไอ้แกงบูด: •••••❂") line.sendMessage(msg.to,"❂••• อีสุวรรณมาลี •••❂") line.sendMessage(msg.to,"❂••• ไอ้ไก่ดุดพรก ••••❂") line.sendMessage(msg.to,"❂•••••ไอ้แตดสีรุ้ง •••••❂") line.sendMessage(msg.to,"❂•••• ไอ้ขี้มูกเขียว ••••❂") line.sendMessage(msg.to,"❂••••• ไอ้ผีขบส้ม •••••❂") line.sendMessage(msg.to,"❂••ไอ้หัวล้านใส่เยล ••❂") line.sendMessage(msg.to,"❂•อีหนังหน้าปลาจวด•❂") line.sendMessage(msg.to,"❂••• อีโกดังเก็บศพ •••❂") line.sendMessage(msg.to,"❂••• อีแย้แดกแห้ว: •••❂") line.sendMessage(msg.to,"❂• อีหลุมดำจักรวาล: •❂") line.sendMessage(msg.to,"❂• ไอ้สะตอโปรตุเกส •❂") line.sendMessage(msg.to,"❂• อีดาวเทียมไทคม: •❂\n💖 แม่งเสือกทุกสถานี 💖\n จบข่าว จุ้ฟป้อก~⭐") #-------------------------------------------------------------------------------------------------------------- elif msg.text.lower().startswith("สแปมแทค "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): if 'MENTION' in msg.contentMetadata.keys()!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for receiver in lists: contact = line.getContact(receiver) RhyN_(to, contact.mid) #----------------------------------------------------------------------------------------------------------------------- elif msg.text.lower().startswith("ส่งหัวใจ "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): if 'MENTION' in msg.contentMetadata.keys()!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for receiver in lists: line.sendMessage(receiver,"💖•💗•รั.ก.น่.ะ.ค่.ะ.จุ้.ฟ.ๆ•💗•💖\n💖•💗•รั.ก.น่.ะ.ค่.ะ.จุ้.ฟ.ๆ•💗•💖\n💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(receiver,"💖•💗•รั.ก.น่.ะ.ค่.ะ.จุ้.ฟ.ๆ•💗•💖\n💖•💗•รั.ก.น่.ะ.ค่.ะ.จุ้.ฟ.ๆ•💗•💖\n💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(to, "💗•ส่งในแชทสต.แล้วค่ะ•💗".format(str(jml))) else: pass elif msg.text.lower().startswith("ส่งคลิป "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): if 'MENTION' in msg.contentMetadata.keys()!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for receiver in lists: line.sendMessage(receiver, "🌀•คลิปหลุดนักศึกษาเสียวสุดๆ•🌀\n🌀•คลิปหลุดนักศึกษาเสียวสุดๆ•🌀\n💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(receiver, "🌀•คลิปหลุดนักศึกษาเสียวสุดๆ•🌀\n🌀•คลิปหลุดนักศึกษาเสียวสุดๆ•🌀\n💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(to, "🌀ดูคลิปเด็ดในแชท สต.น่ะค่ะ🌀".format(str(jml))) elif msg.text.lower().startswith("แจกของขวัญ "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): if 'MENTION' in msg.contentMetadata.keys()!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for receiver in lists: line.sendGift(receiver, '1002077','sticker') line.sendMessage(to, "🎁•รับทางแชทสต.นะค่ะ•🎁".format(str(jml))) else: pass elif msg.text.lower().startswith("ส่งนอน "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): if 'MENTION' in msg.contentMetadata.keys()!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for receiver in lists: line.sendMessage(receiver,"🌙•หลับฝันดีน่ะค่ะที่รัก จุ๊ฟป้อก•🌙\n🌙•หลับฝันดีน่ะค่ะที่รัก จุ๊ฟป้อก•🌙\n💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(receiver, "🌙•หลับฝันดีน่ะค่ะที่รัก จุ๊ฟป้อก•🌙\n🌙•หลับฝันดีน่ะค่ะที่รัก จุ๊ฟป้อก•🌙\n💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(to, "🌙•ส่งในแชทสต.แล้วค่ะ•🌙".format(str(jml))) else: pass elif msg.text.lower().startswith("ส่งความรัก "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): if 'MENTION' in msg.contentMetadata.keys()!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for receiver in lists: line.sendMessage(receiver, "💖.ฉั.น.รั.ก.เ.ธ.อ.ที่.สุ.ด.เ.ล.ย.💖\n💖.ฉั.น.รั.ก.เ.ธ.อ.ที่.สุ.ด.เ.ล.ย.💖\n💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(receiver, "💖.ฉั.น.รั.ก.เ.ธ.อ.ที่.สุ.ด.เ.ล.ย.💖\n💖.ฉั.น.รั.ก.เ.ธ.อ.ที่.สุ.ด.เ.ล.ย.💖\n💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(to, "💗•ส่งในแชทสต.แล้วค่ะ•💗".format(str(jml))) else: pass elif msg.text.lower().startswith("ส่งความคิดถึง "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): if 'MENTION' in msg.contentMetadata.keys()!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for receiver in lists: line.sendMessage(receiver, "💖.คิ.ด.ถึ.ง.เ.ธ.อ.ที่.สุ.ด.เ.ล.ย.💖\n💖.คิ.ด.ถึ.ง.เ.ธ.อ.ที่.สุ.ด.เ.ล.ย.💖\nไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(receiver, "💖.คิ.ด.ถึ.ง.เ.ธ.อ.ที่.สุ.ด.เ.ล.ย.💖\n💖.คิ.ด.ถึ.ง.เ.ธ.อ.ที่.สุ.ด.เ.ล.ย.💖\n💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(to, "💗•ส่งในแชทสต.แล้วค่ะ•💗".format(str(jml))) else: pass elif msg.text.lower().startswith("ส่งของขวัญ "): sep = text.split(" ") text = text.replace(sep[0] + " ","") cond = text.split(" ") jml = int(cond[0]) if msg.toType == 2: group = line.getGroup(to) for x in range(jml): if 'MENTION' in msg.contentMetadata.keys()!= None: names = re.findall(r'@(\w+)', text) mention = ast.literal_eval(msg.contentMetadata['MENTION']) mentionees = mention['MENTIONEES'] lists = [] for mention in mentionees: if mention["M"] not in lists: lists.append(mention["M"]) for receiver in lists: line.sendMessage(receiver,"คุ.ณ.ไ.ด้.รั.บ.ข.อ.ง.ข.วั.ญ.ค่.ะ.🎁\nคุ.ณ.ไ.ด้.รั.บ.ข.อ.ง.ข.วั.ญ.ค่.ะ.🎁\n💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(receiver,"คุ.ณ.ไ.ด้.รั.บ.ข.อ.ง.ข.วั.ญ.ค่.ะ.🎁\nคุ.ณ.ไ.ด้.รั.บ.ข.อ.ง.ข.วั.ญ.ค่.ะ.🎁\n💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(to, "🎁•รับทางแชทสต.นะค่ะ•🎁".format(str(jml))) else: pass #------------------------------------------------------------------------------------------------------------------ elif msg.text.lower().startswith("เอจังเขียน "): sep = msg.text.split(" ") textnya = msg.text.replace(sep[0] + " ","") urlnya = "http://chart.apis.google.com/chart?chs=480x80&cht=p3&chtt=" + textnya + "&chts=FFFFFF,70&chf=bg,s,000000" line.sendMessage(msg.to,"✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯") line.sendImageWithURL(msg.to, urlnya) elif msg.text.lower().startswith("เขียน "): sep = msg.text.split(" ") textnya = msg.text.replace(sep[0] + " ","") urlnya = "http://chart.apis.google.com/chart?chs=480x80&cht=p3&chtt=" + textnya + "&chts=FFFFFF,70&chf=bg,s,000000" line.sendMessage(msg.to,"✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯") line.sendImageWithURL(msg.to, urlnya) #=============================================================== #🎃🎃🎃🎃🎃🎃🎃 โหมดไวรัสเอจัง by.Chivaree 🎃🎃🎃🎃🎃🎃🎃 # 👉👉👉👉 คำเตือน : เนื่องจากไวรัสเอจังเป็นคำสั่งไวรัสแบบสั่งงาน 2 ชั้น # หากท่านแก้ไขหัวคำสั่ง. หรือชือไวรัส อาจทำให้ไวรัสไม่แสดงผล และผิดเพี้ยนไป # เพราะคำสั่งจะเป็นแบบผูกกันจะมีตัวแปลซ้อนอีกทีแบบสองชั้นค่ะ # 💖 แต่ถ้าท่านมีความเข้าใจในการทำงานสองชั้น เชิญท่านแก้ไขได้ตามสบายค่ะ จุ้ฟป้อก ## แก้ดีๆ ระวังไฟล์พังไม่รุ้นะ. 5555555 เตือนแล้ว #---------------------------------------------------------------------------------------------------------------- elif msg.text in ["ระเบิดเวลาเอจัง","เอจังวางระเบิด","วางระเบิด","ระเบิดเวลา"]: line.sendMessage(msg.to,"✧••••••••❂✧A-jáng✧❂••••••••✧\n ✯:::[[[: ֆҽℓƒ-β❂T-ՃิՁণຮี :]]]:::✯") line.sendMessage(msg.to,"💣::โหมดระเบิดเวลาเอจังค่ะ::💣") line.sendMessage(msg.to,"⏳::เริ่มจุดชนวนระเบิดเวลาค่ะ::⌛") line.sendMessage(msg.to,"⏰⏳::⭐9⭐::⌛⏰") line.sendMessage(msg.to,"⏰⏳::⭐8⭐::⌛⏰") line.sendMessage(msg.to,"⏰⏳::⭐7⭐::⌛⏰") line.sendMessage(msg.to,"⏰⏳::⭐6⭐::⌛⏰") line.sendMessage(msg.to,"⏰⏳::⭐5⭐::⌛⏰") line.sendMessage(msg.to,"⏰⏳::⭐4⭐::⌛⏰") line.sendMessage(msg.to,"⏰⏳::⭐3⭐่::⌛⏰") line.sendMessage(msg.to,"⏰⏳::⭐2⭐::⌛⏰") line.sendMessage(msg.to,"⏰⏳::⭐1⭐::⌛⏰") line.sendMessage(msg.to,"⏰⏳:: ......................") line.sendMessage(msg.to,"Error... ไม่พบสัญญาน") line.sendMessage(msg.to, "💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣??💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣??\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣") line.sendMessage(msg.to, "💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣??💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣\n💣💣💣💣💣💣💣💣💣💣💣") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.ค่.ะ.💚.💟.💛.🤗.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.i0s.ก.า.ดึ๊.บ.ๆ.b.y.เ.อ.จั.ง.💚.💟.💗.🤗...") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to,"💥💥💥💥💥💥💥💥\n ระเบิดดังตู้มเลยคร้า\n💥💥💥💥💥💥💥💥") #======================================================================= elif msg.text in ["ไวรัสอวตาร","ไวรัสอวตาล"]: line.sendMessage(msg.to,"ไวรัสอวตาร•➣➣➣➣➣➣➣➣\n ❂••••••✧A-jáng✧•••••••❂\n➣➣➣➣➣➣➣➣ •Chiväree™") line.sendMessage(msg.to,"💙:::⭐ 9 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 8 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 7 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 6 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 5 ⭐:::💖") line.sendMessage(msg.to,"💔:::⭐ 4 ⭐:::💔") line.sendMessage(msg.to,"💙:::⭐ 3 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 2 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 1 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 0 ⭐:::💚") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚💚\n ขออภัยท่านเอจังยังไม่ใส่โค๊ดค่ะ\n💚💚💚💚💚💚💚💚💚💚💚💚\n💖💖💖💖💖💖💖💖💖💖💖💖") #----------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสแมนยู","ไวรัสผีแดง"]: line.sendMessage(msg.to,"ไวรัสแมนยู•➣➣➣➣➣➣➣➣\n ❂••••••✧A-jáng✧•••••••❂\n➣➣➣➣➣➣➣➣ •Chiväree™") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U ??\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈\n😈 Glory Glory Man U 😈") line.sendMessage(msg.to,"เกรียน on 7 Man United Fc Club") #---------------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสชนบท"]: line.sendMessage(msg.to," ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬") line.sendMessage(msg.to,"💙:::⭐ 9 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 8 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 7 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 6 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 5 ⭐:::💖") line.sendMessage(msg.to,"💔:::⭐ 4 ⭐:::💔") line.sendMessage(msg.to,"💙:::⭐ 3 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 2 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 1 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 0 ⭐:::💚") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • ด้วยความกันดารไร้สัญญาน\n • และสุดแสนชนบทนี้\n • ระบบจึงไม่สามารถรันไวรัสได้\n • ขออภัยอย่างสูงคะ by.เอจัง\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") #----------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["สีชมพูค่ะ"]: line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5.A.6.A.7.A.8.A.9.A.0.A.1.A.2.A.3.A.4.A.5") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") #---------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["Man United Fc Club"]: line.sendMessage(msg.to,"💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to,"💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to,"ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to,"💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to,"ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to,"💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to,"💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to,"ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to,"💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to,"💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to,"ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to,"💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to,"💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to,"ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to,"💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to," 🔅Glory Glory ManUnited🔅\n😈•แมนเชสเตอร์ยูไนเต็ด เอฟซี•😈") #------------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ปีโป้อร่อยจัง"]: line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไวรัสเอจังฟรุ้งฟรุ้งมุ้งมิ้ง~☆😍💜💛💚💙💗💖.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.ฟรุ้งฟริ้ง by.เอจัง~☆🤗") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.??.💚") line.sendMessage(msg.to, "💔.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.ค่.ะ.💚.💟.💛1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.ฟ.รุ้.ง.ฟ.ริ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.💓.💗.💖.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.??") line.sendMessage(msg.to, "💛💜💛💜💛💜💛💜💛💜💛\n ❂••• ปีโป้อร่อยที่สุดเลย •••❂\n💛💜💛💜💛💜💛💜💛💜💛") #-------------------------------------------------------------------------------------------------------------- elif msg.text in ["Kitty","kitty","Hello Kitty"]: line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.??.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.🕸.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "ไวรัสเอจังฟรุ้งฟรุ้งมุ้งมิ้ง~☆😍💜💛💚💙💗💖.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.ฟรุ้งฟริ้ง by.เอจัง~☆🤗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.??") line.sendMessage(msg.to, "✧•••••••••❂✧✯✧❂••••••••••✧\n 💖💖 HELLO KITTY 💖💖\n✧•••••••••❂✧✯✧❂••••••••••✧") #------------------------------------------------------------------------------------------------------------- elif msg.text in ["ฟรุ้ตตี้น่ารัก"]: line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.🕸.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") line.sendMessage(msg.to, "💔.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.ค่.ะ.💚.💟.💛1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.ฟ.รุ้.ง.ฟ.ริ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.💓.💗.💖.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไวรัสเอจังฟรุ้งฟริ้งมุ้งมิ้ง~☆💜💛💓💟💚💙💗💖🤗1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.") line.sendMessage(msg.to, "ไวรัสเอจังฟรุ้งฟริ้งมุ้งมิ้ง~☆💜💛💓💟💚💙💗💖🤗1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.") line.sendMessage(msg.to, "ไวรัสเอจังฟรุ้งฟริ้งมุ้งมิ้ง~☆💜💛💓💟💚💙💗💖🤗1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "✧•••••••••❂✧✯✧❂••••••••••✧\n 🍎🍏🍊🍉 ฟรุตตี้ 🍉🍊🍏🍎\n✧•••••••••❂✧✯✧❂••••••••••✧") #--------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัส"]: line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") line.sendMessage(msg.to, "●•➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to, "●•➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "■•■•■• Virus •■•■•■") #----------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสชิวารี","ไวรัสแอ๊บแบ๊ว"]: line.sendMessage(msg.to,"ไวรัสชิวารี• ➣➣➣➣➣➣➣➣\n ❂••••••✧A-jáng✧•••••••❂\n➣➣➣➣➣➣➣➣•Chiväree™") line.sendMessage(msg.to,"💖•ไวรัสแห่งความแอ๊บแบ๊วค่ะ•💖") line.sendMessage(msg.to,"💙•ไวรัสแห่งความแอ๊บแบ๊วค่ะ•💙") line.sendMessage(msg.to,"💚•ไวรัสแห่งความแอ๊บแบ๊วค่ะ•💚") line.sendMessage(msg.to,"💚•ไวรัสแห่งความแอ๊บแบ๊วค่ะ•💛") line.sendMessage(msg.to,"💜•ไวรัสแห่งความแอ๊บแบ๊วค่ะ•💜") line.sendMessage(msg.to,"💔•ไวรัสแห่งความแอ๊บแบ๊วค่ะ•💔") line.sendMessage(msg.to,"💚:::⭐ 6 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 5 ⭐:::💖") line.sendMessage(msg.to,"💔:::⭐ 4 ⭐:::💔") line.sendMessage(msg.to,"💙:::⭐ 3 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 2 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 1 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 0 ⭐:::💚") line.sendMessage(msg.to,"เกรียน on 9 ไวรัสชิวารีแบ๊วไหมค่ะ") line.sendMessage(msg.to,"💔•ไวรัสแห่งความแอ๊บแบ๊วค่ะ•💔") #------------------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["ไวรัสเอจัง"]: line.sendMessage(msg.to,"ไวรัสเอจัง• ➣➣➣➣➣➣➣➣\n ❂••••••✧A-jáng✧•••••••❂\n➣➣➣➣➣➣➣➣•Chiväree™") line.sendMessage(msg.to,"💖•ไวรัสแห่งความน่ารักค่ะ•💖") line.sendMessage(msg.to,"💙•ไวรัสแห่งความน่ารักค่ะ•💙") line.sendMessage(msg.to,"💚•ไวรัสแห่งความน่ารักค่ะ•💚") line.sendMessage(msg.to,"💛•ไวรัสแห่งความน่ารักค่ะ•💛") line.sendMessage(msg.to,"💜•ไวรัสแห่งความน่ารักค่ะ•💜") line.sendMessage(msg.to,"💔•ไวรัสแห่งความน่ารักค่ะ•💔") line.sendMessage(msg.to,"💚:::⭐ 6 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 5 ⭐:::💖") line.sendMessage(msg.to,"💔:::⭐ 4 ⭐:::💔") line.sendMessage(msg.to,"💙:::⭐ 3 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 2 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 1 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 0 ⭐:::💚") line.sendMessage(msg.to,"เกรียน on 8 ไวรัสเอจังน่ารักไหมค่ะ") line.sendMessage(msg.to,"💖•ไวรัสเอจังน่ารักฝุดๆเบยค่ะ•💖") #---------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสเอจัง2","ไวรัสแห่งความมืด"]: line.sendMessage(msg.to,"💚💚💚💚💚💚💚💚💚\n ®Virus ไวรัสเอจัง••••\n💚💚💚💚💚💚💚💚💚") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤\n • ความมืดเริ่มครอบงำค่ะง\n❂•➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"💜•ไวรัสเอจังกับพลังความมืด•💜") line.sendMessage(msg.to,"■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■\n■■■■■■■■■■■■■■") line.sendMessage(msg.to,"💙:::⭐ 3 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 2 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 1 ⭐:::💖") line.sendMessage(msg.to,"เกรียน on 8 ไวรัสเอจังน่ารักไหมค่ะ") line.sendMessage(msg.to,"💖•ไวรัสเอจังกับพลังความมืด•💖") #------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["ไวรัสเอจัง3","ไวรัสแห่งความรัก"]: line.sendMessage(msg.to,"ไวรัสเอจัง3➣➣➣➣➣➣➣➣\n ❂••••••✧A-jáng✧•••••••❂\n➣➣➣➣➣➣➣•พลังความรัก") line.sendMessage(msg.to,"💖•ไวรัสเอจังกับพลังความรัก•💖") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚??💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚\n💙💙💙💙💙💙💙💙💙💙💙\n💔💔💔💔💔💔💔💔💔💔💔\n💛💛💛💛💛💛💛💛💛💛💛\n💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💙:::⭐ 3 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 2 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 1 ⭐:::💖") line.sendMessage(msg.to,"เกรียน on 9 ไวรัสเอจังน่ารักไหมค่ะ") line.sendMessage(msg.to,"💖•ไวรัสเอจังน่ารักฝุดๆเบยค่ะ•💖") #------------------------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["คท",".คท","Me","me"]: line.sendMessage(msg.to,"คท.คือไรว่ะ• ➣➣➣➣➣➣➣➣\n ❂••••••✧A-jáng✧•••••••❂\n➣➣➣➣➣➣➣➣•Me คือไรว่ะ") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • คท คือไร ควยเทวดาหรอค่ะ\n • Me คือไร มีหีกระป๋องหรอค่ะ\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to,"💚• คท.บ้านพ่อมึงสิค่ะ •💚") line.sendMessage(msg.to,"💚• Me บ้านพ่อมึงสิค่ะ •💚") line.sendMessage(msg.to,"เกรียน on 8 ไม่มีคำสั่งนี้นะค่ะ") #------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["ไวรัสเอจัง4"]: line.sendMessage(msg.to,"ไวรัสเอจัง4➣➣➣➣➣➣➣➣\n ❂••••••✧A-jáng✧•••••••❂\n➣➣➣➣➣➣➣•อะจึ๋งๆน่ารัก") line.sendMessage(msg.to, "■•■•■•ไวรัสเอจังอะจึ๋งๆ•■•■•■") line.sendMessage(msg.to, "💔💛💜ไวรัสน่ารัก💜💛💔") line.sendMessage(msg.to, "■•■•■•ไวรัสเอจังอะจึ๋งๆ•■•■•■") line.sendMessage(msg.to, "💔💛💜ไวรัสน่ารัก??💛💔") line.sendMessage(msg.to, "■•■•■•ไวรัสเอจังอะจึ๋งๆ•■•■•■") line.sendMessage(msg.to, "💔💛💜ไวรัสน่ารัก💜💛💔") line.sendMessage(msg.to, "■•■•■•ไวรัสเอจังอะจึ๋งๆ•■•■•■") line.sendMessage(msg.to, "💔💛💜ไวรัสน่ารัก💜💛💔") line.sendMessage(msg.to, "■•■•■•ไวรัสเอจังอะจึ๋งๆ•■•■•■") line.sendMessage(msg.to, "💔💛💜ไวรัสน่ารัก💜💛💔") line.sendMessage(msg.to, "■•■•■•ไวรัสเอจังอะจึ๋งๆ•■•■•■") line.sendMessage(msg.to, "💔💛💜ไวรัสน่ารัก💜💛💔") line.sendMessage(msg.to, "■•■•■•ไวรัสเอจังอะจึ๋งๆ•■•■•■") line.sendMessage(msg.to, "เกรียน on 8 ไวรัสเอจังน่ารักไหมค่ะ") line.sendMessage(msg.to, "■•■•■•ไวรัสเอจังอะจึ๋งๆ•■•■•■") #------------------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["Help","help","Help1","help1","Help2","help2","Help3","help3","Help4","help4","Help5","help5","Help6","help6","Help7","help7"]: line.sendMessage(msg.to, "•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•") line.sendMessage(msg.to, "•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•") line.sendMessage(msg.to, "•💖• Help หาพ่อมึงหราค่ะ •💖•\n•💖• Help หาพ่อมึงหราค่ะ •💖•\n•💖• Help หาพ่อมึงหราค่ะ •💖•") line.sendMessage(msg.to, "•💛• Help หาพ่อมึงหราค่ะ •💛•\n•💛• Help หาพ่อมึงหราค่ะ •💛•\n•💛• Help หาพ่อมึงหราค่ะ •💛•") line.sendMessage(msg.to, "•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•") line.sendMessage(msg.to, "•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•") line.sendMessage(msg.to, "•💖• Help หาพ่อมึงหราค่ะ •💖•\n•💖• Help หาพ่อมึงหราค่ะ •💖•\n•💖• Help หาพ่อมึงหราค่ะ •💖•") line.sendMessage(msg.to, "•💛• Help หาพ่อมึงหราค่ะ •💛•\n•💛• Help หาพ่อมึงหราค่ะ •💛•\n•💛• Help หาพ่อมึงหราค่ะ •💛•") line.sendMessage(msg.to, "•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•") line.sendMessage(msg.to, "•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•") line.sendMessage(msg.to, "•💖• Help หาพ่อมึงหราค่ะ •💖•\n•💖• Help หาพ่อมึงหราค่ะ •💖•\n•💖• Help หาพ่อมึงหราค่ะ •💖•") line.sendMessage(msg.to, "•💛• Help หาพ่อมึงหราค่ะ •💛•\n•💛• Help หาพ่อมึงหราค่ะ •💛•\n•💛• Help หาพ่อมึงหราค่ะ •💛•") line.sendMessage(msg.to, "•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•") line.sendMessage(msg.to, "•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•") line.sendMessage(msg.to, "•💖• Help หาพ่อมึงหราค่ะ •💖•\n•💖• Help หาพ่อมึงหราค่ะ •💖•\n•💖• Help หาพ่อมึงหราค่ะ •💖•") line.sendMessage(msg.to, "•💛• Help หาพ่อมึงหราค่ะ •💛•\n•💛• Help หาพ่อมึงหราค่ะ •💛•\n•💛• Help หาพ่อมึงหราค่ะ •💛•") line.sendMessage(msg.to, "•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•\n•💜• Help หาพ่อมึงหราค่ะ •💜•") line.sendMessage(msg.to, "•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•\n•💚• Help หาพ่อมึงหราค่ะ •💚•") line.sendMessage(msg.to, "❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • 👉 ก็ไปแจ้งความสิค่ะอีฟาย\n • 👉 ก็ไปแจ้งความสิค่ะอีฟาย\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to, "เกรียน on 10 ไม่มีคำสั่งนี้นะค่ะ") line.sendMessage(msg.to, "❂•➤➤➤➤➤➤➤➤➤➤➤➤\n • 👉 ก็ไปแจ้งความสิค่ะอีฟาย\n • 👉 ก็ไปแจ้งความสิค่ะอีฟาย\n❂•➤➤➤➤➤➤➤➤➤➤➤➤") #----------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสสีชมพู","ไวรัสสีชุมพู"]: line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "💗•💗•💗•Virus Pink•💗•💗•💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.🕸.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") line.sendMessage(msg.to, "💔.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.ค่.ะ.💚.💟.💛1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.ฟ.รุ้.ง.ฟ.ริ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.💓.💗.💖.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.🕸.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "เกรียน on 20 สีชมพูค่ะ") #------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["ไวรัสปีโป้","ไวรัสเยลลี่","ไวรัสเจเล่"]: line.sendMessage(msg.to,"✧•••••••••••❂✧✯✧❂••••••••••••✧\n ✥✥ ֆҽℓƒ-β❂T-ՃิՁণຮี ✥✥ \n✧•••••••••••❂✧✯✧❂••••••••••••✧") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💚💚??💚💚💚💚💚💚💚💚💚\n💜💜💜💜💜💜💜💜💜ิ💜💜ิ💜") line.sendMessage(msg.to,"💛💜💛💜💛💜💛💜💛💜💛💜\n ❂••••••• เอจังชอบกินปีโป้ •••••••❂\n💛💜💛💜💛💜💛💜💛💜💛💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚💚\n💜💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💛💜💛💜💛💜💛💜💛💜💛💜\n ❂••••••• ปีโป้นั้นมีหลากสี •••••••❂\n💛💜💛💜💛💜💛💜💛💜💛💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚💚\n💜💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💛💜💛💜💛💜💛💜💛💜💛💜\n ❂••••• อร่อยทุกสีเลยรู้ไหม •••••❂\n💛💜💛💜💛💜💛💜💛💜💛💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚💚\n💜💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💛💜💛💜💛💜💛💜💛ิ💜💛💜\n ❂•• พวกเรามากินปีโป้กันเถอะ ••❂\n💛💜💛💜💛💜💛💜💛💛💛💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚💚\n💜💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💀💀💀💀💀💀💀💀💀💀💀💀") line.sendMessage(msg.to,"💀💀💀💀💀ุ้💀💀💀💀💀💀💀\n💀💀💀💀💀💀💀💀💀💀💀💀") line.sendMessage(msg.to,"💀💀💀💀💀ุ้💀💀💀💀💀💀💀\n💀💀💀💀💀💀💀💀💀💀💀💀") line.sendMessage(msg.to,"เกรียน on 10 ปีโป้อร่อยจัง") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚💚\n💜💜💜💜💜💜ั💜💜💜ิ💜💜💜") line.sendMessage(msg.to,"💛💜💛💜💛💜💛💜💛💜💛💜\n ❂••••••• เอจังชอบกินปีโป้ •••••••❂\n💛💜💛💜💛💜💛💜💛💜💛💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚💚\n💜💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💛💜💛💜💛💜💛💜💛💜💛💜\n ❂•• พวกเรามากินปีโป้กันเถอะ ••❂\n💛💜💛💜💛💜💛💜💛💜💛💜") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚💚💚\n💜💜💜💜💜💜💜💜💜💜💜💜") #------------------------------------------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสคิทตี้","ไวรัสคิดตี้","ไวรัสคิตตี้","ไวรัสป๊อกกี้"]: line.sendMessage(msg.to,"✧•••••••••••❂✧✯✧❂••••••••••••✧\n ✥✥ ֆҽℓƒ-β❂T-ՃิՁণຮี ✥✥ \n✧•••••••••••❂✧✯✧❂••••••••••••✧") line.sendMessage(msg.to,"💔💔ไวรัสแห่งความน่ารัก💔💔") line.sendMessage(msg.to,"✧•••••••••❂✧✯✧❂•••••••••✧\n 💖💖 HELLO KITTY 💖💖\n✧•••••••••❂✧✯✧❂•••••••••✧") line.sendMessage(msg.to,"•••••••Ħ€ŁŁ❂ ҜÏŦŦ¥✈•••••••\n💕💖💟💗💝💛💙💔💚💗\n💚💛💜💗💟💖💔💙💝💘") line.sendMessage(msg.to,"•••••••Ħ€ŁŁ❂ ҜÏŦŦ¥✈•••••••\n💕💖💟💗💝💛💙💔💚💗\n💚💛💜💗💟💖💔💙💝💘") line.sendMessage(msg.to,"•••••••Ħ€ŁŁ❂ ҜÏŦŦ¥✈•••••••\n💕💖💟💗💝💛💙💔💚💗\n💚💛💜💗💟💖💔💙💝💘") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚\n💗💗💗💗💗💗💗💗💗💗\n╬╬♡ • Ħëłłõ kîttÿ • ♡╬╬\n💗💗💗💗💗💗💗💗💗💗\n💜💜💜💜💜💜💜💜💜💜\n💛💛💛💛💛💛💛💛💛💛") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚\n💗💗💗💗💗💗💗💗💗💗\n╬╬♡ • Ħëłłõ kîttÿ • ♡╬╬\n💗💗💗💗💗💗💗💗💗💗\n💜💜💜💜💜💜💜💜💜💜\n💛💛💛💛💛💛💛💛💛💛") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖\n💚💚💚💚💚💚💚💚💚💚\n💗💗💗💗💗💗💗💗💗💗\n╬╬♡ • Ħëłłõ kîttÿ • ♡╬╬\n💗💗💗💗💗💗💗💗💗💗\n💜💜💜💜💜💜💜💜💜💜\n💛💛💛💛💛💛💛💛💛💛") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to, "เกรียน on 10 Hello Kitty") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"💟💟💟💟💟💟💟💟💟💟\n💖💖💖💖💖💖💖💖💖💖\n💜💜💜💜💜💜💜💜💜💜\n💟💟💟💟💟💟💟💟💟💟\n💛💛💛💛💛💛💛💛💛💛\n 💖💖 • Ħëłłõ kîttÿ • 💖💖\n💛💛💛💛💛💛💛💛💛💛\n💟💟💟💟💟💟💟💟💟💟\n💜💜💜💜💜💜💜💜💜💜\n💖💖💖💖💖💖💖💖💖💖\n💟💟💟💟💟💟💟💟💟💟") line.sendMessage(msg.to,"•••••••Ħ€ŁŁ❂ ҜÏŦŦ¥✈•••••••\n💕💖💟💗💝💛💙💔💚💗\n💚💛💜💗💟💖💔💙💝💘") #----------------------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสฟรุ้งฟริ้ง","ไวรัสมุ้งมิ้ง"]: line.sendMessage(msg.to,"✧•••••••••••❂✧✯✧❂••••••••••••✧\n ✥✥ ֆҽℓƒ-β❂T-ՃิՁণຮี ✥✥ \n✧•••••••••••❂✧✯✧❂••••••••••••✧") line.sendMessage(msg.to,"💔💔💔•Virus Chivaree•💔💔💔") line.sendMessage(msg.to,"💛💛💛💛💛💛💛💛💛💛💛💛\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💛💛💛💛💛💛💛💛💛💛💛💛") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💖💖💖💖💖💖💖💖💖💖💖💖") line.sendMessage(msg.to,"💙💙💙💙💙💙💙💙💙💙💙💙\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💙💙💙💙💙💙💙💙💙💙💙💙") line.sendMessage(msg.to,"💚💚💚💚💚💚💚💚💚💚💚\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💚💚💚💚💚💚💚💚💚💚💚💚") line.sendMessage(msg.to,"💜💜💜💜💜💜💜💜💜💜💜💜\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💜💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to,"💛💛💛💛💛💛💛💛💛💛💛💛\n💛💛💛💛💛💛💛💛💛💛💛💛\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💛💛💛💛💛💛💛💛💛💛💛💛\n💛💛💛💛💛💛💛💛💛💛💛💛") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n💖💖💖💖💖💖💖💖💖💖💖💖\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💖💖💖💖💖💖💖💖💖💖💖💖\n💖💖💖💖💖💖💖💖💖💖💖💖") line.sendMessage(msg.to,"💙💙💙💙💙💙💙💙💙💙💙💙\n💙💙💙💙💙💙💙💙💙💙💙💙\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💙💙💙💙💙💙💙💙💙💙💙💙\n💙💙💙💙💙💙💙💙💙💙💙💙") line.sendMessage(msg.to,"💚💚💚💚💚💚💚💚💚💚💚💚\n💚💚💚💚💚💚💚💚💚💚💚💚\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💚💚💚💚💚💚💚💚💚💚💚💚\n💚💚💚💚💚💚💚💚💚💚💚💚") line.sendMessage(msg.to,"💜💜💜💜💜💜💜💜💜💜💜💜\n💜💜💜💜💜💜💜💜💜💜💜💜\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💜💜💜💜💜💜💜💜💜💜💜💜\n💜💜💜💜💜💜💜💜💜💜💜💜") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "เกรียน on 9 ฟรุ้งฟริ้งสุดตีนค่ะ") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to,"💖💖💖💖💖💖💖💖💖💖💖💖\n ❂••••• ไวรัสฟรุ้งฟริ้งมุ้งมิ้ง •••••❂\n💖💖💖💖💖💖💖💖💖💖💖💖") #---------------------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสรวมมิตร"]: line.sendMessage(msg.to,"•••••••••☆❂-ՃิՁণຮี•➤☆•••••••••\n✯::[[[ ไวรัสรวมมิตรพร้อมค่ะ ]]]::✯") line.sendMessage(msg.to,"🍡🍡🍙เรื่องกินเรื่องใหญ่🍡ั๊🍡🍡") line.sendMessage(msg.to,"💛💜💀💔🍋🍄🍓🍏⭐⏰💖\n🍏🍇🍎🍆🍅🍄🍋🍊🍡🍙🍚") line.sendMessage(msg.to,"💛💜💀💔🍋🍄🍓🍏⭐ิ⏰💖ึ\n🍏🍇🍎🍆🍅🍄🍋🍊🍓🍙🍚") line.sendMessage(msg.to,"💛💜💀💔🍋🍄🍓🍏⭐ิ⏰💖ึ\n🍏🍇🍎🍆🍅🍄🍋🍊🍡🍙🍚") line.sendMessage(msg.to,"💛💜💀💔ั🍋🍄🍓🍏ั⭐⏰💖\n🍏🍇🍎🍆🍅🍄🍋์🍊ี🍡🍙🍚") line.sendMessage(msg.to,"💛💜💀💔🍋🍄🍓🍏⭐⏰💖\n🍏🍇🍎🍆🍅🍄🍋🍊🍡🍙🍚") line.sendMessage(msg.to,"🍰🌟🥂🍹🍮🍕🍤🍗🍟🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍🍈\n🍇🍎🍡🍤🍙🍗🍣🍄🥝🍹🍑") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍🍈\n🍇🍎🍡🍤🍙🍗🍣🍄🥝🍹🍑") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟ิ🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍🍈\n🍇🍎??🍤🍙🍗🍣🍄🥝🍹🍑") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍🍈\n🍇🍎🍡🍤🍙🍗🍣🍄🥝🍹🍑") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍๊🍈่\n🍇🍎🍡🍤🍙🍗🍄💚💚💚🍑") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍🍈\n🍇🍎🍡🍤🍙🍗🍣🍄🥝🍹🍑") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍🍈\n🍇🍎🍡🍤🍙🍗🍣🍄🥝🍹🍑") line.sendMessage(msg.to,"เกรียน on 9 ขอให้อิ่มอร่อยทุกคนนะค่ะ") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍🍈\n🍇🍎🍡🍤🍙🍗🍣🍄🥝🍹🍑") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟ิ🍣🍗\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍🍈\n🍇🍎🍡🍤🍙🍗🍣🍄🥝🍹🍑") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍🍈\n🍇🍎🍡🍤🍙🍗🍣🍄🥝🍹🍑") line.sendMessage(msg.to,"🍰🍧🥂🍹🍮🍕🍤🍗🍟🍣🍫\n🍓🍒🍑🍅🍄🍉🥝🌴🌳🍍๊🍈่\n🍇🍎🍡🍤🍙🍗🍣🍄🥝🍹🍑") #------------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสฟรุตตี้","ไวรัสฟรุ้ตตี้","ไวรัสผลไม้"]: line.sendMessage(msg.to,"✧•••••••••••❂✧✯✧❂••••••••••••✧\n ✥✥ ֆҽℓƒ-β❂T-ՃิՁণຮี ✥✥ \n✧•••••••••••❂✧✯✧❂••••••••••••✧") line.sendMessage(msg.to,"🍌🍎🍏ผลไม้มีวิตามินค่ะ🍊🍋🍄") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n🍇🍈🍉🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n🍇🍈🍉🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍒\n🍇🍈🍉🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n🍇🍈🍉🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n🍇🍈🍉🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n🍇🍈🍉🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n🍇🍈🍉🍐🍑🍓🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n🍇🍈🍉🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n💚🍈💚🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏มาทานผลไม้ค่ะ🍊🍋🍄") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n🍇🍈🍉🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to,"🍌🍎🍏🍊🍋🍄🍅🍏🍉🍊🍋\n🍇🍈🍉🍐🍑🍒🍓🍍🥝🍌🌰") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.🕸.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "เกรียน on 9 ฟรุ้ตตี้น่ารัก") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.🕸.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") #------------------------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["ไวรัสชิวารีแบ๊วไหมค่ะ","ฟรุ้งฟริ้งสุดตีนค่ะ"]: line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "💔.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.ค่.ะ.💚.💟.💛1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.ฟ.รุ้.ง.ฟ.ริ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.💓.💗.💖.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไวรัสเอจังฟรุ้งฟรุ้งมุ้งมิ้ง~☆😍💜💛💚💙💗💖.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.ฟรุ้งฟริ้ง by.เอจัง~☆🤗") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.??เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💔.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.ค่.ะ.💚.💟.💛1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.51.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.ฟ.รุ้.ง.ฟ.ริ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.💓.💗.💖.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.🕸.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") line.sendMessage(msg.to,"💚•ไวรัสน่ารักแอ๊บแบ๊วมากค่ะ•💚") #------------------------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["ไวรัสเอจังน่ารักไหมค่ะ"]: line.sendMessage(msg.to, "💔.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.ค่.ะ.💚.💟.💛1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.ฟ.รุ้.ง.ฟ.ริ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.💓.💗.💖.") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "ไวรัสเอจังฟรุ้งฟรุ้งมุ้งมิ้ง~☆😍💜💛💚💙💗💖.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.ฟรุ้งฟริ้ง by.เอจัง~☆🤗") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.??.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to,"💖•ไวรัสเอจังน่ารักฝุดๆเบยค่ะ•💖") #------------------------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["ขอให้อิ่มอร่อยทุกคนนะค่ะ"]: line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.🕸.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "💔.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.ค่.ะ.💚.💟.💛1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.ฟ.รุ้.ง.ฟ.ริ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.💓.💗.💖.") line.sendMessage(msg.to, "ไวรัสเอจังฟรุ้งฟรุ้งมุ้งมิ้ง~☆😍💜💛💚💙💗💖.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.๔.4.ฟรุ้งฟริ้ง by.เอจัง~☆🤗") line.sendMessage(msg.to, "ไวรัสเอจังฟรุ้งฟริ้งมุ้งมิ้ง~☆💜💛💓💟💚💙💗💖🤗1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.1.๑.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to,"🍰🍡🍤🍗🍋🍄🍓🍏🍉🍧🍟\n อิ่มมากเลย ขอหลับก่อนน๊าค่ะ\n🍏🍇🍎🍆🍅🍄🍋🍊🍡🍙🍚") #------------------------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["ไม่มีคำสั่งนี้นะค่ะ"]: line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to, "ไ.ว.รั.ส.คิ.ด.ตี้.เ.อ.จั.ง.~.💚เ.ฉ.พ.า.ะ.ไ.ล.น์.เ.ขี.ย.ว.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.♡.K.1.t.t.y.b.y.เ.อ.จั.ง.~.☆.💖.💔.💙.") line.sendMessage(msg.to, "💗.ไ.ว.รั.ส.เ.อ.จั.ง.💟.เ .ฉ.พ.า.ะ.ไ.ล.น์.สี.&ไ.ล.น์.ค.ลั.บ.ค่.ะ.~.💚.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S.1.0.S4.4.4.4.4.4ไ.ว.รั.ส.ฟ.รุ้.ง.มุ้.ง.มิ้.ง.b.y.เ.อ.จั.ง.~.☆.😁.🤗.💚") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.น่.า.รั๊.ก.ไ.ล.น์.เ.ขี.ย.ว.~.☆. 🤗.🕸.💙.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.1.๑.i0s.") line.sendMessage(msg.to, "ไ.ว.รั.ส.เ.อ.จั.ง.คุริๆอะจึ๋งๆ~🌟ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Qฆ.Q4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.Q.4.ฆ.เอจังค่ะ") line.sendMessage(msg.to, "💖.V.i.r.u.s.A.-j.a.n.g.💗.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.⭐.เอ.จัง.1.0.V.E.💗.N.e.w.2.0.1.9.💗") line.sendMessage(msg.to,"💜•เป็นห่วงเสมอน่ะค่ะ จุ้ฟป้อก•💜") #------------------------------------------------------------------------------------------------------------------------------------------ # 💚💛💜 สุดเขตแดนไวรัสเอจัง ขอให้เล่นอย่างสนุกสนานนะค่ะ จุ้ฟป้อก #------------------------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["ผู้สร้างไวรัส"]: line.sendMessage(msg.to, "ผู้สร้างไวรัส➣➣➣➣➣➣➣➣\n ❂••••••✧A-jáng✧•••••••❂\n➣➣➣➣➣➣➣➣•Chiväree™") line.sendMessage(msg.to, "💗💗💗💗💗💗💗💗💗💗\n •ผู้สร้างไวรัสที่แสนน่ารัก•\n💗💗💗💗💗💗💗💗💗💗") line.sendMessage(msg.to, "💚💚💚💚💚💚💚💚💚💚\n •ผู้สร้างไวรัสที่แสนน่ารัก•\n💚💚💚💚💚💚💚💚💚💚") line.sendMessage(msg.to, "💗💗💗💗💗💗💗💗💗💗\n •ผู้สร้างไวรัสที่แสนน่ารัก•\n💗💗💗💗💗💗💗💗💗💗") line.sendMessage(msg.to, "💚💚💚💚💚💚💚💚💚💚\n •ผู้สร้างไวรัสที่แสนน่ารัก•\n💚💚💚💚💚💚💚💚💚💚") line.sendMessage(msg.to, "●•➤➤➤➤➤➤➤➤➤➤\n \n●•➤➤➤➤➤➤➤➤➤➤") line.sendMessage(msg.to, "💔💔💔 [ คนไหน ] 💔💔💔") line.sendMessage(msg.to, "💚💚💚 [ คนไหน ] 💚💚💚") line.sendMessage(msg.to, "💜💜💜 [ คนไหน ] 💜💜💜") line.sendMessage(msg.to, "💛💛💛 [ คนไหน ] 💛💛💛") line.sendMessage(msg.to, "💖💖💖 [ คนไหน ] 💖💖💖") line.sendMessage(msg.to,"❂➣-ՃิՁণຮี: 🕟 " +datetime.today().strftime('%H:%M:%S')+ "➤") line.sendContact(to, "u7ae0eb00e07b2d6b7f4dd9ba577a2e3e") line.sendMessage(msg.to, "👆•Virus A-jang : ผู้สร้าง•👆") #-------------------------------------------------------------------------------------------------------------------------- elif msg.text in ["สมุน7","เอจัง7","สกิล7"]: line.sendMessage(to, "🌀มึงอ่านบ้างนะค่ะ " +datetime.today().strftime('%H:%M:%S')+ "🌀") line.sendMessage(msg.to, "✧••••••••••••❂✧✯✧❂•••••••••••••✧\n ✥✥✥ ֆҽℓƒ-β❂T-ՃิՁণຮี ✥✥✥\n✧••••••••••••❂✧✯✧❂•••••••••••••✧\n\n ♡•โหมดบ้านพ่อมึงค่ะ•♡\n\n╭☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆\n♡•➣ ไอ้ควายเอ้ย...........\n♡\n♡•➣➣➣ไม่มีสกิล7 ในระบบนี้ค่ะ\n♡\n♡•➣➣➣➣รอให้พ่อมรุงสร้างให้ค่ะ\n♡\n♡ ค.ควาย ค.ควาย ค.ควาย ค.ควาย\n╰☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•☆\n\n✧••••••••••••❂✧✯✧❂•••••••••••••✧\n ♡วิธีใช้ : ไม่ต้องใส่จุดค่ะเสียเวลา♡") #------------------------------------------------------------------------------------------------------------------------ elif msg.text in ["ผู้สร้างกลุ่ม","เจ้าของห้อง","เจ้าของบ้าน","เจ้าบ้าน"]: line.sendMessage(msg.to, "💔💔💔 [ คนไหน ] 💔💔💔") line.sendMessage(msg.to, "💚💚💚 [ คนไหน ] 💚💚💚") line.sendMessage(msg.to, "💜💜💜 [ คนไหน ] 💜💜💜") line.sendMessage(msg.to, "💛💛💛 [ คนไหน ] 💛💛💛") line.sendMessage(msg.to, "💖💖💖 [ คนไหน ] 💖💖💖") group = line.getGroup(to) GS = group.creator.mid line.sendContact(to, GS) line.sendMessage(to,"👆• นี่ไงผู้สร้างหน้าม่อค่ะ •👆\nBy : A~jańg 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["ไอดีกลุ่ม"]: gid = line.getGroup(to) line.sendMessage(to, "🌀รอสักครู่ค่ะ ⏰ " +datetime.today().strftime('%H:%M:%S')+ "🌀") line.sendMessage(to, "❂•ไอดีกลุ่มค่ะ•➣➣➣➣➣\n" + gid.id) elif msg.text in ["รูปกลุ่ม"]: line.sendMessage(to, "🌀รอสักครู่ค่ะ ⏰ " +datetime.today().strftime('%H:%M:%S')+ "🌀") line.sendMessage(to, "✯:::[[[ รูปประจำกลุ่มค่ะ ]]]:::✯") group = line.getGroup(to) path = "http://dl.profile.line-cdn.net/" + group.pictureStatus line.sendImageWithURL(to, path) elif msg.text in ["ชื่อกลุ่ม"]: line.sendMessage(to, "🌀รอสักครู่ค่ะ ⏰ " +datetime.today().strftime('%H:%M:%S')+ "🌀") gid = line.getGroup(to) line.sendMessage(to, "❂•ชื่อกลุ่มค่ะ•➣➣➣➣➣\n" + gid.name) elif msg.text in ["ลิ้งกลุ่ม","เอจังขอลิ้ง","ขอลิ้ง"]: if msg.toType == 2: group = line.getGroup(to) if group.preventedJoinByTicket == False: line.sendMessage(to, "✯ֆҽℓƒ-β❂T-ՃิՁণຮี✯") line.sendMessage(to, "🌀รอสักครู่ค่ะ ⏰ " +datetime.today().strftime('%H:%M:%S')+ "🌀") ticket = line.reissueGroupTicket(to) line.sendMessage(to, "❂•ลิ้งกลุ่มค่ะ•➣➣➣➣➣\nhttps://line.me/R/ti/g/{}".format(str(ticket))) elif msg.text in ["เปิดลิ้งกลุ่ม","เอจังเปิดลิ้ง","เปิดลิ้ง"]: if msg.toType == 2: group = line.getGroup(to) if group.preventedJoinByTicket == False: line.sendMessage(to, "✯::[[[ เปิดลิ้งกลุ่มเรียบร้อยค่ะ ]]]::✯") else: group.preventedJoinByTicket = False line.updateGroup(group) line.sendMessage(to, "✯::[[[ เปิดลิ้งกลุ่มเรียบร้อยค่ะ ]]]::✯") elif msg.text in ["ปิดลิ้งกลุ่ม","เอจังปิดลิ้ง","ปิดลิ้ง"]: if msg.toType == 2: group = line.getGroup(to) if group.preventedJoinByTicket == True: line.sendMessage(to, "✯::[[[ ปิดลิ้งกลุ่มเรียบร้อยค่ะ ]]]::✯") else: group.preventedJoinByTicket = True line.updateGroup(group) line.sendMessage(to, "✯::[[[ ปิดลิ้งกลุ่มเรียบร้อยค่ะ ]]]::✯") elif msg.text in ["ข้อมูลกลุ่ม"]: group = line.getGroup(to) try: gCreator = group.creator.displayName except: gCreator = "คนนี้คือผู้สร้างกลุ่มนี้" if group.invitee is None: gPending = "0" else: gPending = str(len(group.invitee)) if group.preventedJoinByTicket == True: gQr = "ปิด" gTicket = " รายการลิงค์กลุ่มปิดอยู่ค่ะ" else: gQr = "เปิด" gTicket = "https://line.me/R/ti/g/{}".format(str(line.reissueGroupTicket(group.id))) path = "http://dl.profile.line-cdn.net/" + group.pictureStatus ret_ = "❂ข้อมูลกลุ่ม •➣➣➣➣➣➣➣➣➣" ret_ += "\n•✯• ชื่อกลุ่ม \n ➤ {}".format(str(group.name)) # ret_ += "\n•✯• ผู้สร้างกลุ่ม\n ➤ {}".format(group.id) ret_ += "\n•✯• ผู้สร้างกลุ่ม \n ➤ {}".format(str(gCreator)) ret_ += "\n•✯• จำนวนสมาชิก : {} คน".format(str(len(group.members))) ret_ += "\n•✯• จำนวนค้างเชิญ : {} คน".format(gPending) ret_ += "\n•✯• สถานะกลุ่ม : {}".format(gQr) ret_ += "\n❂Chiväree™•➣➣➣➣➣➣➣➣➣\n\n{}".format(gTicket) # ret_ += "\n ✧•••••❂✧ลิ้งกลุ่มค่ะ✧❂•••••✧" line.sendReplyMessage(id,to, str(ret_)) line.sendImageWithURL(to, path) elif msg.text in ["สมาชิกกลุ่ม"]: if msg.toType == 2: group = line.getGroup(to) ret_ = " ♡•สมาชิกในกลุ่มนี้ค่ะ•♡\n●•➤➤➤➤➤➤➤➤➤➤➤➤" no = 0 + 1 for mem in group.members: ret_ += "\n♡ {}. {}".format(str(no), str(mem.displayName)) no += 1 ret_ += "\n●•➤➤➤➤➤➤➤➤➤➤➤➤\n [ จำนวน {} คน by : -ՃิՁণຮี• ]".format(str(len(group.members))) line.sendReplyMessage(id,to, str(ret_)) elif msg.text in ["เอจังกลุ่ม","กลุ่มเอจัง","เช็คกลุ่ม","อวดกลุ่ม"]: line.sendMessage(msg.to,"🌀รอสักครู่ค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀") groups = line.groups ret_ = "✧•••••••••••❂✧✯✧❂•••••••••••✧\n ♡♡ กลุ่มคนน่ารักค่ะ ♡♡\n✧•••••••••••❂✧✯✧❂•••••••••••✧" no = 0 + 1 for gid in groups: group = line.getGroup(gid) ret_ += "\n {}. {} | {}".format(str(no), str(group.name), str(len(group.members))) no += 1 ret_ += "\n✧•••••••••••❂✧✯✧❂•••••••••••✧\n [ จำนวน {} Groups ] By เอจัง".format(str(len(groups))) line.sendMessage(to, str(ret_)) elif "เชิญคลอ" == msg.text.lower(): line.inviteIntoGroupCall(msg.to,[uid.mid for uid in line.getGroup(msg.to).members if uid.mid != line.getProfile().mid]) line.sendMessage(msg.to,"เชิญเข้าร่วมการโทรสำเร็จ(`・ω・´)") elif ".sh " in msg.text.lower(): spl = re.split(".sh ",msg.text,flags=re.IGNORECASE) if spl[0] == "": try: line.sendText(msg.to,subprocess.getoutput(spl[1])) except: pass elif msg.text.lower() == 'เชิญแอด': if msg.toType == 2: ginfo = line.getGroup(receiver) try: gcmid = ginfo.creator.mid except: gcmid = "Error" if settings["lang"] == "JP": line.inviteIntoGroup(receiver,[gcmid]) line.sendMessage(receiver, "พิมพ์คำเชิญกลุ่มแล้ว") else: line.inviteIntoGroup(receiver,[gcmid]) line.sendMessage(receiver, "ผู้สร้างกลุ่มอยู่ในแล้ว") elif msg.text.lower() == "getjoined": line.sendText(msg.to,"กรุณารอสักครู่ ใจเย็นๆ") all = line.getGroupIdsJoined() text = "" cnt = 0 for i in all: text += line.getGroup(i).name + "\n" + i + "\n\n" cnt += 1 if cnt == 10: line.sendText(msg.to,text[:-2]) text = "" cnt = 0 line.sendText(msg.to,text[:-2]) cnt = 0 elif "ข้อมูล " in msg.text.lower(): spl = re.split("ข้อมูล ",msg.text,flags=re.IGNORECASE) if spl[0] == "": prov = eval(msg.contentMetadata["MENTION"])["MENTIONEES"] for i in range(len(prov)): uid = prov[i]["M"] userData = line.getContact(uid) try: line.sendImageWithUrl(msg.to,"http://dl.profile.line-cdn.net{}".format(userData.picturePath)) except: pass line.sendMessage(msg.to,"✧•••••••••❂✧✯✧❂••••••••••✧\n ♡ ข้อมูลคนหน้าม่อเจ้าค่ะ ♡\n✧•••••••••❂✧✯✧❂••••••••••✧") line.sendMessage(msg.to,"✯::: ♡•ชื่อคนหน้าม่อค่ะ•♡ :::✯\n❂➣ "+userData.displayName) line.sendMessage(msg.to,"✯::: ♡•ตัสคนหน้าม่อค่ะ•♡ :::✯\n"+userData.statusMessage) line.sendMessage(msg.to,"✯::: ♡•ไอดีคนหน้าม่อค่ะ•♡ :::✯\n"+userData.mid) elif "รับแก้ไฟล์+เพิ่มไฟล์+แก้ภาษา\n💝ราคาดูที่หน้างาน💝\n👉มีบริการให้เช่าบอทSAMURAI\nราคา300บาทต่อเดือน💖\n#เพิ่มคิกเกอร์ตัวละ100👌\n🎀สนใจรีบทัก..บอทpython3ฟังชั่นล้นหลาม🎁กำลังรอให้คุณเป็นเจ้าของ\n(ผมจะอยู่ที่ห้องนี้แค่15นาทีนะจ๊ะ)\nselfbot by:\n╔══════════════┓\n╠™❍✯͜͡RED™SAMURAI✯͜͡❂➣ \n╚══════════════┛" in msg.text: spl = msg.text.split("รับแก้ไฟล์+เพิ่มไฟล์+แก้ภาษา\n💝ราคาดูที่หน้างาน💝\n👉มีบริการให้เช่าบอทSAMURAI\nราคา300บาทต่อเดือน💖\n#เพิ่มคิกเกอร์ตัวละ100??\n🎀สนใจรีบทัก..บอทpython3ฟังชั่นล้นหลาม🎁กำลังรอให้คุณเป็นเจ้าของ\n(ผมจะอยู่ที่ห้องนี้แค่15นาทีนะจ๊ะ)\nselfbot by:\n╔══════════════┓\n╠™❍✯͜͡RED™SAMURAI✯͜͡❂➣ \n╚══════════════┛") if spl[len(spl)-1] == "": line.sendText(msg.to,"กดที่นี่เพื่อเขย่าข้อความด้านบน:\nline://nv/chatMsg?chatId="+msg.to+"&messageId="+msg.id) elif "เอจังรัน @" in msg.text: print ("[Command]covergroup") _name = msg.text.replace("เอจังรัน @","") _nametarget = _name.rstrip(' ') gs = line.getGroup(msg.to) targets = [] for g in gs.members: if _nametarget == g.displayName: targets.append(g.mid) if targets == []: line.sendMessage(msg.to,"Contact not found") else: for target in targets: try: thisgroup = line.getGroups([msg.to]) Mids = [target for contact in thisgroup[0].members] mi_d = Mids[:33] line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"🏂⛷️[จะออกไปแตะขอบฟ้า]") line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"🏂⛷️[จะออกไปแตะขอบฟ้า]") line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"🏂⛷️[จะออกไปแตะขอบฟ้า]") line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"🏂⛷️[จะออกไปแตะขอบฟ้า]") line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"🏂⛷️[จะออกไปแตะขอบฟ้า]") line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"🏂⛷️[จะออกไปแตะขอบฟ้า]") line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"🏂⛷️[จะออกไปแตะขอบฟ้า]") line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"🏂⛷️[จะออกไปแตะขอบฟ้า]") line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"🏂⛷️[จะออกไปแตะขอบฟ้า]") line.createGroup(" ╬╬❂•ຟနุ้७ຟနิ้७•❂╬╬",mi_d) line.sendMessage(msg.to,"??⛷️[จะออกไปแตะขอบฟ้า]") line.sendMessage(msg.to,"เรียบร้อย") except: pass print ("[Command]covergroup]") elif "รันแชท @" in msg.text: _name = msg.text.replace("รันแชท @","") _nametarget = _name.rstrip(' ') gs = line.getGroup(msg.to) for g in gs.members: if _nametarget == g.displayName: line.sendMessage(msg.to,"✲กำลังดำเนินการค่ะ.....✲") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀??🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(g.mid,"🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(msg.to, "🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀\n✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n🌀🌀🌀🌀🌀🌀🌀🌀🌀🌀") line.sendMessage(msg.to, "🌀•รันแชทเสร็จเรียบร้อยค่ะ•🌀\n Spam@Chät 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") print (" Spammed !") elif ".สำรองห้อง" in msg.text: thisgroup = line.getGroups([msg.to]) Mids = [contact.mid for contact in thisgroup[0].members] mi_d = Mids[:33] line.createGroup("RED SAMURI SELFBOT", mi_d) line.sendMessage(msg.to,"REDSAMURAI") line.createGroup("RED SAMURI SELFBOT", mi_d) line.sendMessage(msg.to,"REDSAMURAI") elif ".รัน: " in msg.text.lower(): key = msg.text[-33:] line.findAndAddContactsByMid(key) contact = cl.getContact(key) line.createGroup("RED SAMURAI Group",[key]) line.sendMessage(msg,to,"┌∩┐(◣_◢)┌∩┐") elif ".ไม่รับเชิญ " in msg.text.lower(): spl = re.split(".ไม่รับเชิญ ",msg.text,flags=re.IGNORECASE) if spl[0] == "": spl[1] = spl[1].strip() ag = line.getGroupIdsInvited() txt = "กำลังยกเลิกค้างเชิญจำนวน "+str(len(ag))+" กลุ่ม" if spl[1] != "": txt = txt + " ด้วยข้อความ \""+spl[1]+"\"" txt = txt + "\nกรุณารอสักครู่.." line.sendText(msg.to,txt) procLock = len(ag) for gr in ag: try: line.acceptGroupInvitation(gr) if spl[1] != "": line.sendText(gr,spl[1]) line.leaveGroup(gr) except: pass line.sendMessage(msg.to,"สำเร็จแล้ว") elif ".whois " in msg.text.lower(): spl = re.split(".whois ",msg.text,flags=re.IGNORECASE) if spl[0] == "": msg.contentType = 13 msg.text = None msg.contentMetadata = {"mid":spl[1]} line.sendMessage(msg) elif "หวด" in msg.text.lower(): if msg.toType == 2: prov = eval(msg.contentMetadata["MENTION"])["MENTIONEES"] for i in range(len(prov)): random.choice(Exc).kickoutFromGroup(msg.to,[prov[i]["M"]]) elif "ล้อเล่น " in msg.text: Ri0 = text.replace("ล้อเล่น ","") Ri1 = Ri0.rstrip() Ri2 = Ri1.replace("@","") Ri3 = Ri2.rstrip() _name = Ri3 gs = line.getGroup(msg.to) targets = [] for s in gs.members: if _name in s.displayName: targets.append(s.mid) if targets == []: pass else: for target in targets: if target in admin: pass else: try: line.sendMessage(to, "🔅ทำการเตะแล้วดึงกลับค่ะ🔅") line.kickoutFromGroup(to,[target]) line.findAndAddContactsByMid(target) line.inviteIntoGroup(to,[target]) except: pass elif "ปลิว" in msg.text.lower(): if msg.toType == 2: prov = eval(msg.contentMetadata["MENTION"])["MENTIONEES"] allmid = [] for i in range(len(prov)): line.kickoutFromGroup(msg.to,[prov[i]["M"]]) allmid.append(prov[i]["M"]) line.findAndAddContactsByMids(allmid) line.inviteIntoGroup(msg.to,allmid) line.cancelGroupInvitation(msg.to,allmid) elif msg.text.lower() == "mid": line.sendText(msg.to,user1) elif ".name " in msg.text.lower(): spl = re.split(".name ",msg.text,flags=re.IGNORECASE) if spl[0] == "": prof = line.getProfile() prof.displayName = spl[1] line.updateProfile(prof) line.sendMessage(msg.to,"สำเร็จแล้ว") elif ".nmx " in msg.text.lower(): spl = re.split(".nmx ",msg.text,flags=re.IGNORECASE) if spl[0] == "": prof = line.getProfile() prof.displayName = line.nmxstring(spl[1]) line.updateProfile(prof) line.sendMessage(msg.to,"สำเร็จแล้ว") elif "มุด " in msg.text.lower(): spl = re.split(".มุด ",msg.text,flags=re.IGNORECASE) if spl[0] == "": try: gid = spl[1].split(" ")[0] ticket = spl[1].split(" ")[1].replace("line://ti/g/","") if "line://ti/g/" in spl[1].split(" ")[1] else spl[1].split(" ")[1].replace("http://line.me/R/ti/g/","") if "http://line.me/R/ti/g/" in spl[1].split(" ")[1] else spl[1].split(" ")[1] line.acceptGroupInvitationByTicket(gid,ticket) except Exception as e: line.sendMessage(msg.to,str(e)) elif msg.text.lower().startswith(".ส่งข้อความ "): pnum = re.split(".ส่งข้อความ ",msg.text,flags=re.IGNORECASE)[1] pnum = "66"+pnum[1:] GACReq = GACSender.send(pnum) if GACReq.responseNum == 0: if msg.toType != 0: line.sendMessage(msg.to,"ส่ง SMS สำเร็จแล้ว (`・ω・´)") else: line.sendMessage(msg.from_,"ส่ง SMS สำเร็จแล้ว (`・ω・´)") elif GACReq.responseNum == 1: if msg.toType != 0: line.sendMessage(msg.to,"ไม่สามารถส่ง SMS ได้ เนื่องจากมีการส่งข้อความไปยังเบอร์เป้าหมายในเวลาที่ใกล้เคียงกันมากเกินไป (`・ω・´)\nกรุณารออย่างมาก 30 วินาทีแล้วลองอีกครั้ง") else: line.sendMessage(msg.from_,"ไม่สามารถส่ง SMS ได้ เนื่องจากมีการส่งข้อความไปยังเบอร์เป้าหมายในเวลาที่ใกล้เคียงกันมากเกินไป (`・ω・´)\nกรุณารออย่างมาก 30 วินาทีแล้วลองอีกครั้ง") else: if msg.toType != 0: line.sendMessage(msg.to,"พบข้อผิดพลาดที่ไม่รู้จัก (`・ω・´)") else: line.sendMessage(msg.from_,"พบข้อผิดพลาดที่ไม่รู้จัก (`・ω・´)") elif msg.text.lower() == ".groupurl": if msg.toType == 2: line.sendMessage(msg.to,"http://line.me/R/ti/g/"+str(line.reissueGroupTicket(msg.to))) else: line.sendMessage(msg.to,"คำสั่งนี้ใช้ได้เฉพาะในกลุ่มเท่านั้น") elif ".groupurl " in msg.text.lower(): spl = re.split(".groupurl ",msg.text,flags=re.IGNORECASE) if spl[0] == "": try: line.sendMessage(msg.to,"http://line.me/R/ti/g/"+str(line.reissueGroupTicket(spl[1]))) except Exception as e: line.sendMessage(msg.to,"พบข้อผิดพลาด (เหตุผล \""+e.reason+"\")") elif msg.text in ["เอจังgift","แจกค่ะ","แจกๆ","ของขวัญ","เอจังแจก","เอจังใจดี","เศษตังแม่","พ่อกูรวย","เอจังของขวัญ","แลกของขวัญ","ของขวัญเอจัง"]: line.sendGift(msg.to,'1002077','sticker') line.sendGift(msg.to,'1002077','sticker') line.sendGift(msg.to,'1002077','sticker') line.sendGift(msg.to,'1002077','sticker') line.sendGift(msg.to,'1002077','sticker') #==============================================================================# elif msg.text in ["เอจังแทค","เอจังแทก","เอจังแท็ค","เอจังแท็ก"]: group = line.getGroup(msg.to) nama = [contact.mid for contact in group.members] k = len(nama)//20 for a in range(k+1): txt = '' s=0 b=[] for i in group.members[a*20 : (a+1)*20]: b.append({"S":str(s), "E" :str(s+6), "M":i.mid}) s += 7 txt += '@Alin \n' line.sendReplyMessage(msg.id,to, text=txt, contentMetadata={'MENTION': json.dumps({'MENTIONEES':b})}, contentType=0) line.sendMessage(to, "🔶•ทั้งหมด {} คน•🔶".format(str(len(nama)))) elif msg.text in ["แทค","แทก","แท็ค","แท็ก"]: group = line.getGroup(msg.to) nama = [contact.mid for contact in group.members] k = len(nama)//20 for a in range(k+1): txt = '' s=0 b=[] for i in group.members[a*20 : (a+1)*20]: b.append({"S":str(s), "E" :str(s+6), "M":i.mid}) s += 7 txt += '@Alin \n' line.sendReplyMessage(msg.id,to, text=txt, contentMetadata={'MENTION': json.dumps({'MENTIONEES':b})}, contentType=0) line.sendMessage(to, "🔷•ทั้งหมด {} คน•🔷".format(str(len(nama)))) elif msg.text in ["เอจังจับ","ตั้งเวลา","นาซ่า","จับเวลา"]: tz = pytz.timezone("Asia/Jakarta") timeNow = datetime.now(tz=tz) day = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday","Friday", "Saturday"] hari = ["วันอาทิตย์", "วันจันทร์", "วันอังคาร", "วันพุธ", "วันพฤหัสบดี", "วันศุกร์", "วันเสาร์"] bulan = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"] hr = timeNow.strftime("%A") bln = timeNow.strftime("%m") for i in range(len(day)): if hr == day[i]: hasil = hari[i] for k in range(0, len(bulan)): if bln == str(k): bln = bulan[k-1] readTime = hasil + ", " + timeNow.strftime('%d') + " - " + bln + " - " + timeNow.strftime('%Y') + "\nJam : [ " + timeNow.strftime('%H:%M:%S') + " ]" if msg.to in read['readPoint']: try: del read['readPoint'][msg.to] del read['readMember'][msg.to] del read['readTime'][msg.to] except: pass read['readPoint'][msg.to] = msg.id read['readMember'][msg.to] = "" read['readTime'][msg.to] = datetime.now().strftime('%H:%M:%S') read['ROM'][msg.to] = {} with open('read.json', 'w') as fp: json.dump(read, fp, sort_keys=True, indent=4) line.sendMessage(msg.to,"Lurking enabled") else: try: del read['readPoint'][msg.to] del read['readMember'][msg.to] del read['readTime'][msg.to] except: pass read['readPoint'][msg.to] = msg.id read['readMember'][msg.to] = "" read['readTime'][msg.to] = datetime.now().strftime('%H:%M:%S') read['ROM'][msg.to] = {} with open('read.json', 'w') as fp: json.dump(read, fp, sort_keys=True, indent=4) line.sendMessage(msg.to, "Set reading point:\n" + readTime) elif msg.text in ["เลิกตั้งเวลา","เลิกจับเวลา"]: tz = pytz.timezone("Asia/Jakarta") timeNow = datetime.now(tz=tz) day = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday","Friday", "Saturday"] hari = ["วันอาทิตย์", "วันจันทร์", "วันอังคาร", "วันพุธ", "วันพฤหัสบดี", "วันศุกร์", "วันเสาร์"] bulan = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"] hr = timeNow.strftime("%A") bln = timeNow.strftime("%m") for i in range(len(day)): if hr == day[i]: hasil = hari[i] for k in range(0, len(bulan)): if bln == str(k): bln = bulan[k-1] readTime = hasil + ", " + timeNow.strftime('%d') + " - " + bln + " - " + timeNow.strftime('%Y') + "\nJam : [ " + timeNow.strftime('%H:%M:%S') + " ]" if msg.to not in read['readPoint']: line.sendMessage(msg.to,"Lurking disabled") else: try: del read['readPoint'][msg.to] del read['readMember'][msg.to] del read['readTime'][msg.to] except: pass line.sendMessage(msg.to, "Delete reading point:\n" + readTime) elif msg.text in ["ตั้งเวลาใหม่","จับเวลาใหม่"]: tz = pytz.timezone("Asia/Jakarta") timeNow = datetime.now(tz=tz) day = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday","Friday", "Saturday"] hari = ["วันอาทิตย์", "วันจันทร์", "วันอังคาร", "วันพุธ", "วันพฤหัสบดี", "วันศุกร์", "วันเสาร์"] bulan = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"] hr = timeNow.strftime("%A") bln = timeNow.strftime("%m") for i in range(len(day)): if hr == day[i]: hasil = hari[i] for k in range(0, len(bulan)): if bln == str(k): bln = bulan[k-1] readTime = hasil + ", " + timeNow.strftime('%d') + " - " + bln + " - " + timeNow.strftime('%Y') + "\nJam : [ " + timeNow.strftime('%H:%M:%S') + " ]" if msg.to in read["readPoint"]: try: del read["readPoint"][msg.to] del read["readMember"][msg.to] del read["readTime"][msg.to] except: pass line.sendMessage(msg.to, "Reset reading point:\n" + readTime) else: line.sendMessage(msg.to, "Lurking belum diaktifkan ngapain di reset?") elif msg.text in ["สกิลอ่าน","เอจังอ่าน"]: tz = pytz.timezone("Asia/Jakarta") timeNow = datetime.now(tz=tz) day = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday","Friday", "Saturday"] hari = ["วันอาทิตย์", "วันจันทร์", "วันอังคาร", "วันพุธ", "วันพฤหัสบดี", "วันศุกร์", "วันเสาร์"] bulan = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"] hr = timeNow.strftime("%A") bln = timeNow.strftime("%m") for i in range(len(day)): if hr == day[i]: hasil = hari[i] for k in range(0, len(bulan)): if bln == str(k): bln = bulan[k-1] readTime = hasil + ", " + timeNow.strftime('%d') + " - " + bln + " - " + timeNow.strftime('%Y') + "\nJam : [ " + timeNow.strftime('%H:%M:%S') + " ]" if receiver in read['readPoint']: if list(read["ROM"][receiver].items()) == []: line.sendMessage(receiver,"[ Reader ]:\nNone") else: chiya = [] for rom in list(read["ROM"][receiver].items()): chiya.append(rom[1]) cmem = line.getContacts(chiya) zx = "" zxc = "" zx2 = [] xpesan = '[ *** LurkDetector *** ]:\n' for x in range(len(cmem)): xname = str(cmem[x].displayName) pesan = '' pesan2 = pesan+"@c\n" xlen = str(len(zxc)+len(xpesan)) xlen2 = str(len(zxc)+len(pesan2)+len(xpesan)-1) zx = {'S':xlen, 'E':xlen2, 'M':cmem[x].mid} zx2.append(zx) zxc += pesan2 text = xpesan+ zxc + "\n[ Lurking time ]: \n" + readTime try: line.sendMessage(receiver, text, contentMetadata={'MENTION':str('{"MENTIONEES":'+json.dumps(zx2).replace(' ','')+'}')}, contentType=0) except Exception as error: print (error) pass else: line.sendMessage(receiver,"Lurking has not been set.") #==============================================================================# #==============================================================================# #==============================================================================# elif "ประกาศกลุ่ม " in msg.text: bc = msg.text.replace("ประกาศกลุ่ม ","") gid = line.getGroupIdsJoined() for i in gid: line.sendMessage(i,"======[ข้อความประกาศกลุ่ม]======\n\n"+bc+"\n\nBy: ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯") elif "ประกาศแชท " in msg.text: bc = msg.text.replace("ประกาศแชท ","") gid = line.getAllContactIds() for i in gid: line.sendMessage(i,"======[ข้อความประกาศแชท]======\n\n"+bc+"\n\nBy: ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯") elif "ส่งรูปภาพตามกลุ่ม " in msg.text: bc = msg.text.replace("ส่งรูปภาพตามกลุ่ม ","") gid = line.getGroupIdsJoined() for i in gid: line.sendImageWithURL(i, bc) elif "ส่งรูปภามตามแชท " in msg.text: bc = msg.text.replace(".ส่งรูปภาพตามแชท ","") gid = line.getAllContactIds() for i in gid: line.sendImageWithURL(i, bc) elif "ส่งเสียงกลุ่ม " in msg.text: bctxt = msg.text.replace("ส่งเสียงกลุ่ม ", "") bc = ("บาย...เอจัง..เซลบอท") cb = (bctxt + bc) tts = gTTS(cb, lang='th', slow=False) tts.save('tts.mp3') n = line.getGroupIdsJoined() for manusia in n: line.sendAudio(manusia, 'tts.mp3') elif "ส่งเสียงแชท " in msg.text: bctxt = msg.text.replace("ส่งเสียงแชท ", "") bc = ("ชิ...วา..รี..เซลบอท") cb = (bctxt + bc) tts = gTTS(cb, lang='th', slow=False) tts.save('tts.mp3') n = line.getAllContactIdsJoined() for manusia in n: line.sendAudio(manusia, 'tts.mp3') elif msg.text in ["ปฎิทิน","ปฏิทิน","ลาบานูน","กูหลงวัน"]: tz = pytz.timezone("Asia/Jakarta") timeNow = datetime.now(tz=tz) day = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday","Friday", "Saturday"] hari = ["วันอาทิตย์", "วันจันทร์", "วันอังคาร", "วันพุธ", "วันพฤหัสบดี", "วันศุกร์", "วันเสาร์"] bulan = ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"] hr = timeNow.strftime("%A") bln = timeNow.strftime("%m") for i in range(len(day)): if hr == day[i]: hasil = hari[i] for k in range(0, len(bulan)): if bln == str(k): bln = bulan[k-1] readTime = "✧•••••••••••❂✧✯✧❂•••••••••••✧\n ♡♡ ปฎิทินเอจังค่ะ ♡♡\n✧•••••••••••❂✧✯✧❂•••••••••••✧" + "\n\n •💗• " + hasil + "\n •💗• ที่ " + timeNow.strftime('%d')+ " " + bln + " " + timeNow.strftime('%Y') + "\n •💗• เวลา : [ " + timeNow.strftime('%H:%M:%S') + " ]" + "\n •☆•☆•☆•☆•☆•☆•☆•☆•☆•☆•\n\n✧•••••••••••❂✧✯✧❂•••••••••••✧" line.sendReplyMessage(msg.id,to, readTime) elif "screenshotwebsite " in msg.text.lower(): sep = text.split(" ") query = text.replace(sep[0] + " ","") with requests.session() as web: r = web.get("http://rahandiapi.herokuapp.com/sswebAPI?key=betakey&link={}".format(urllib.parse.quote(query))) data = r.text data = json.loads(data) line.sendImageWithURL(to, data["result"]) elif msg.text.lower().startswith("พลังจิต "): try: key = eval(msg.contentMetadata["MENTION"]) Chivaree = [i["M"] for i in key["MENTIONEES"]] ajang = msg.text.replace(msg.text.split(" ")[0]+" ", "") for i in Chivaree: ajang = ajang.replace("@" + line.getContact(i).displayName + " ", "") for i in Chivaree: con = line.getContact(i) pic = "http://dl.profile.line.naver.jp/{}".format(con.pictureStatus) sendMessageCustom(msg.to, ajang, pic, con.displayName) except Exception as E: print(E) elif msg.text.lower().startswith("สะกดจิต "): try: key = eval(msg.contentMetadata["MENTION"]) Chivaree = [i["M"] for i in key["MENTIONEES"]] ajang = msg.text.replace(msg.text.split(" ")[0]+" ", "") for i in Chivaree: ajang = ajang.replace("@" + line.getContact(i).displayName + " ", "") for i in Chivaree: con = line.getContact(i) pic = "http://dl.profile.line.naver.jp/{}".format(con.pictureStatus) sendMessageCustom(msg.to, ajang, pic, con.displayName) except Exception as E: print(E) elif msg.text.lower().startswith("ดูทูป "): separate = msg.text.split(" ") search = msg.text.replace(separate[0] + " ","") url = requests.get("http://api.w3hills.com/youtube/search?keyword={}&api_key=86A7FCF3-6CAF-DEB9-E214-B74BDB835B5B".format(search)) data = url.json() no = 0 result = "☆ยูทูป☆ " + search + "" for anu in data["videos"]: no += 1 result += "\n\n{}. {}\n{}".format(str(no),str(anu["title"]),str(anu["webpage"])) line.sendMessage(msg.to, result) elif msg.text.lower().startswith("ขอรูป "): try: search = text.replace("ขอรูป ","") r = requests.get("https://xeonwz.herokuapp.com/images/google.api?q={}".format(search)) data = r.text data = json.loads(data) if data["content"] != []: items = data["content"] path = random.choice(items) a = items.index(path) b = len(items) line.sendMessage(msg.to,"🌀รอสักครู่ค่ะ 🕚 " +datetime.today().strftime('%H:%M:%S')+ "🌀") line.sendImageWithURL(to, str(path)) except Exception as error: logError(error) var= traceback.print_tb(error.__traceback__) line.sendMessage(to,str(var)) elif msg.text.lower().startswith("ขอภาพ "): try: search = text.replace("ขอภาพ ","") r = requests.get("https://xeonwz.herokuapp.com/images/google.api?q={}".format(search)) data = r.text data = json.loads(data) if data["content"] != []: items = data["content"] path = random.choice(items) a = items.index(path) b = len(items) line.sendMessage(msg.to,"🌀รอสักครู่ค่ะ 🕘 " +datetime.today().strftime('%H:%M:%S')+ "🌀") line.sendImageWithURL(to, str(path)) except Exception as error: logError(error) var= traceback.print_tb(error.__traceback__) line.sendMessage(to,str(var)) elif msg.text.lower().startswith("ภาพการ์ตูน "): try: search = text.replace("ภาพการ์ตูน ","") r = requests.get("https://xeonwz.herokuapp.com/images/google.api?q={}".format(search)) data = r.text data = json.loads(data) if data["content"] != []: items = data["content"] path = random.choice(items) a = items.index(path) b = len(items) line.sendMessage(msg.to,"🌀รอสักครู่ค่ะ 🕝 " +datetime.today().strftime('%H:%M:%S')+ "🌀") line.sendImageWithURL(to, str(path)) except Exception as error: logError(error) var= traceback.print_tb(error.__traceback__) line.sendMessage(to,str(var)) elif msg.text.lower().startswith("รูปการ์ตูน "): try: search = text.replace("รูปการ์ตูน ","") r = requests.get("https://xeonwz.herokuapp.com/images/google.api?q={}".format(search)) data = r.text data = json.loads(data) if data["content"] != []: items = data["content"] path = random.choice(items) a = items.index(path) b = len(items) line.sendMessage(msg.to,"🌀รอสักครู่ค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀") line.sendImageWithURL(to, str(path)) except Exception as error: logError(error) var= traceback.print_tb(error.__traceback__) line.sendMessage(to,str(var)) elif msg.text.lower().startswith("หารูป "): separate = msg.text.split(" ") search = msg.text.replace(separate[0] + "หารูป ","") with requests.session() as web: web.headers["User-Agent"] = random.choice(settings["userAgent"]) r = web.get("http://rahandiapi.herokuapp.com/imageapi?key=betakey&q={}".format(urllib.parse.quote(search))) data = r.text data = json.loads(data) if data["result"] != []: items = data["result"] path = random.choice(items) a = items.index(path) b = len(items) line.sendImageWithURL(msg.to, str(path)) elif "ยูทูป " in msg.text.lower(): sep = text.split(" ") search = text.replace(sep[0] + " ","") params = {"search_query": search} with requests.session() as web: web.headers["User-Agent"] = random.choice(settings["userAgent"]) r = web.get("https://www.youtube.com/results", params = params) soup = BeautifulSoup(r.content, "html.parser") ret_ = "╔══[ ผลการค้นหา ]" datas = [] for data in soup.select(".yt-lockup-title > a[title]"): if "&lists" not in data["href"]: datas.append(data) for data in datas: ret_ += "\n╠══[ {} ]".format(str(data["title"])) ret_ += "\n╠ https://www.youtube.com{}".format(str(data["href"])) ret_ += "\n╚══[ จำนวนที่พบ {} ]".format(len(datas)) line.sendMessage(to, str(ret_)) elif "ค้นหา " in msg.text.lower(): spl = re.split("ค้นหา ",msg.text,flags=re.IGNORECASE) if spl[0] == "": if spl[1] != "": try: if msg.toType != 0: line.sendMessage(msg.to,"🌀รอสักครู่ค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀") else: line.sendMessage(msg.from_,"กำลังรับข้อมูล กรุณารอสักครู่..") resp = BeautifulSoup(requests.get("https://www.google.co.th/search",params={"q":spl[1],"gl":"th"}).content,"html.parser") text = "ผลการค้นหาจาก Google:\n\n" for el in resp.findAll("h3",attrs={"class":"r"}): try: tmp = el.a["class"] continue except: pass try: if el.a["href"].startswith("/search?q="): continue except: continue text += el.a.text+"\n" text += str(el.a["href"][7:]).split("&sa=U")[0]+"\n\n" text = text[:-2] if msg.toType != 0: line.sendMessage(msg.to,str(text)) else: line.sendMessage(msg.from_,str(text)) except Exception as e: print(e) elif "ขอวีดีโอ " in msg.text.lower(): sep = text.split(" ") search = text.replace(sep[0] + "ขอวีดีโอ ","") params = {"search_query": search} with requests.session() as web: web.headers["User-Agent"] = random.choice(settings["userAgent"]) r = web.get("https://www.youtube.com/results", params = params) soup = BeautifulSoup(r.content, "html.parser") ret_ = "╔══[ ผลการค้นหา ]" datas = [] for data in soup.select(".yt-lockup-title > a[title]"): if "&lists" not in data["href"]: datas.append(data) for data in datas: ret_ += "\n╠══[ {} ]".format(str(data["title"])) ret_ += "\n╠ https://www.youtube.com{}".format(str(data["href"])) ret_ += "\n╚══[ จำนวนที่พบ {} ]".format(len(datas)) line.sendMessage(to, str(ret_)) elif "ขอหนัง " in msg.text.lower(): sep = text.split(" ") search = text.replace(sep[0] + "ขอหนัง ","") params = {"search_query": search} with requests.session() as web: web.headers["User-Agent"] = random.choice(settings["userAgent"]) r = web.get("https://www.youtube.com/results", params = params) soup = BeautifulSoup(r.content, "html.parser") ret_ = "╔══[ ผลการค้นหา ]" datas = [] for data in soup.select(".yt-lockup-title > a[title]"): if "&lists" not in data["href"]: datas.append(data) for data in datas: ret_ += "\n╠══[ {} ]".format(str(data["title"])) ret_ += "\n╠ https://www.youtube.com{}".format(str(data["href"])) ret_ += "\n╚══[ จำนวนที่พบ {} ]".format(len(datas)) line.sendMessage(to, str(ret_)) elif "ขอเพลง " in msg.text.lower(): sep = text.split(" ") search = text.replace(sep[0] + "ขอเพลง ","") params = {"search_query": search} with requests.session() as web: web.headers["User-Agent"] = random.choice(settings["userAgent"]) r = web.get("https://www.youtube.com/results", params = params) soup = BeautifulSoup(r.content, "html.parser") ret_ = "╔══[ ผลการค้นหา ]" datas = [] for data in soup.select(".yt-lockup-title > a[title]"): if "&lists" not in data["href"]: datas.append(data) for data in datas: ret_ += "\n╠══[ {} ]".format(str(data["title"])) ret_ += "\n╠ https://www.youtube.com{}".format(str(data["href"])) ret_ += "\n╚══[ จำนวนที่พบ {} ]".format(len(datas)) line.sendMessage(to, str(ret_)) elif msg.text.lower().startswith("มิวสิค "): #if wait["selfbot"] == True: if msg._from in admin: #try: sep = msg.text.split(" ") textToSearch = msg.text.replace(sep[0] + " ","") query = urllib.parse.quote(textToSearch) url = "https://www.youtube.com/results?search_query=" + query response = urllib.request.urlopen(url) html = response.read() soup = BeautifulSoup(html, "html.parser") results = soup.find(attrs={'class':'yt-uix-tile-link'}) dl=("https://www.youtube.com" + results['href']) vid = pafy.new(dl) stream = vid.streams for s in stream: vin = s.url hasil = "📀🔸•Music-by-A-jäng•🔸📀" # hasil += "\n" line.sendMessage(msg.to,hasil) line.sendMessage(msg.to,"🌀รอสักครู่ค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀") line.sendVideoWithURL(msg.to,vin) line.sendMessage(msg.to,"🎧::รับฟังได้เลยค่ะ จุ้ฟป้อก::🎧") print("[YOUTUBE]MP4 Succes") elif msg.text.lower().startswith("ขอคลิป "): #if wait["selfbot"] == True: if msg._from in admin: #try: sep = msg.text.split(" ") textToSearch = msg.text.replace(sep[0] + " ","") query = urllib.parse.quote(textToSearch) url = "https://www.youtube.com/results?search_query=" + query response = urllib.request.urlopen(url) html = response.read() soup = BeautifulSoup(html, "html.parser") results = soup.find(attrs={'class':'yt-uix-tile-link'}) dl=("https://www.youtube.com" + results['href']) vid = pafy.new(dl) stream = vid.streams for s in stream: vin = s.url hasil = "📀🔸•Loading-by-A-jäng•🔸📀" # hasil += "\n" line.sendMessage(msg.to,hasil) line.sendMessage(msg.to,"🌀 รอสักครู่ค่ะ 🕝 " +datetime.today().strftime('%H:%M:%S')+ " 🌀") line.sendVideoWithURL(msg.to,vin) line.sendMessage(msg.to,"🎧::รับชมได้เลยค่ะ จุ้ฟป้อก::🎧") print("[YOUTUBE]MP4 Succes") #======================================================================== elif "แปลงคท " in msg.text: mmid = msg.text.replace("แปลงคท ","") line.sendMessage(msg.to, "╭➣➣➣➣➣➣➣➣➣➣➣➣\n✯ โหลดคอนแท็คเรียบร้อยค่ะ\n╰➣➣➣➣➣➣➣➣➣➣➣➣") line.sendMessage(to, text=None, contentMetadata={'mid': mmid}, contentType=13) line.sendMessage(msg.to,"❂➣-ՃิՁণຮี: 🕟 " +datetime.today().strftime('%H:%M:%S')+ "➤") elif msg.text.lower().startswith("ไอดีไลน์"): line.reissueUserTicket() userid = "https://line.me/ti/p/~" + line.profile.userid line.sendFooter(to, "🌀ไอดีไลน์ค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀\n"+str(userid), userid, "http://dl.profile.line-cdn.net/"+line.getContact(sender).pictureStatus, line.getContact(sender).displayName) elif msg.text.lower().startswith("ค้นหาไอดี "): id = msg.text.lower().replace("ค้นหาไอดี ","") conn = line.findContactsByUserid(id) if True: line.sendMessage(to,"http://line.me/ti/p/~" + id) line.sendContact(to,conn.mid) elif msg.text.lower().startswith("อัพชื่อ "): string = msg.text.lower().replace("อัพชื่อ", "") if len(string) <= 10000000000: pname = line.getContact(sender).displayName profile = line.getProfile() profile.displayName = string line.updateProfile(profile) userid = "https://line.me/ti/p/~" + line.profile.userid line.sendFooter(to, "Update Name\nStatus : Success\nFrom : "+str(pname)+"\nTo :"+str(string), userid, "http://dl.profile.line-cdn.net/"+line.getContact(sender).pictureStatus, line.getContact(sender).displayName) elif msg.text.lower().startswith("อัพตัส "): string = msg.text.lower().replace("อัพตัส", "") if len(string) <= 10000000000: pname = line.getContact(sender).statusMessage profile = line.getProfile() profile.statusMessage = string line.updateProfile(profile) userid = "https://line.me/ti/p/~" + line.profile.userid line.sendFooter(to, "Update Status\nStatus : Success\nFrom : "+str(pname)+"\nTo :"+str(string), userid, "http://dl.profile.line-cdn.net/"+line.getContact(sender).pictureStatus, line.getContact(sender).displayName) elif text.lower() == "เปลี่ยนดิส": settings["changePictureProfile"] = True line.sendMessage(to, "🌀ส่งรูปมาเลยค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀") elif text.lower() == "เปลี่ยนรูปกลุ่ม": if msg.toType == 2: if to not in settings["changeGroupPicture"]: settings["changeGroupPicture"].append(to) line.sendMessage(to, "🌀ส่งรูปมาเลยค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀") #========================================================================== elif msg.text in ["เปิดแสกน","เอจังเปิดอ่าน","เปิดสแกน","เอจังสแกน","เอจีงเปิดสแกน"]: try: del RfuCctv['point'][msg.to] del RfuCctv['sidermem'][msg.to] del RfuCctv['cyduk'][msg.to] except: pass RfuCctv['point'][msg.to] = msg.id RfuCctv['sidermem'][msg.to] = "❂••ปิดระบบอ่านค่ะ••❂\n@Clöse: 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n➣รายชื่อผู้อ่านที่น่ารักค่ะ" RfuCctv['cyduk'][msg.to]=True line.sendMessage(msg.to," •••••••••☆❂-ՃิՁণຮี•➤☆•••••••••\n 🔍🔍 Search now 🔍🔍 \n✯::[[[ อ่านอัติโนมัติทำงานค่ะ ]]]::✯") line.sendMessage(msg.to,"🌀ค้นหาผู้อ่าน 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀") elif msg.text in ["ปิดแสกน","เอจังปิดอ่าน","ปิดสแกน","เอจังปิดสแกน","หยุดสแกน"]: if msg.to in RfuCctv['point']: RfuCctv['cyduk'][msg.to]=False line.sendMessage(msg.to, RfuCctv['sidermem'][msg.to]) else: line.sendMessage(msg.to, "✯::[[[ ปิดระบบอ่านอัติโนมัติค่ะ ]]]::✯") elif text.lower() == '.ปิดเซล': line.sendMessage(receiver, 'หยุดการทำงานเซลบอทเรียบร้อย') print ("Selfbot Off") exit(1) elif msg.text in ["ลบแชท","ล้างแชท"]: if msg._from in lineMID: try: line.removeAllMessages(op.param2) line.sendMessage(msg.to,"✧•••••••••❂✧✯✧❂••••••••••✧\n ♡ระบบล้างแชทเรียบร้อยค่ะ♡\n✧•••••••••❂✧✯✧❂••••••••••✧") except: pass print ("ลบแชท") elif msg.text in ["เพื่อนเพ"]: contactlist = line.getAllContactIds() kontak = line.getContacts(contactlist) num=1 msgs="🎎รายชื่อเพื่อนทั้งหมด🎎" for ids in kontak: msgs+="\n[%i] %s" % (num, ids.displayName) num=(num+1) msgs+="\n🎎รายชื่อเพื่อนทั้งหมด🎎\n\nมีดังต่อไปนี้ : %i" % len(kontak) line.sendReplyMessage(msg.id,to, msgs) elif msg.text in ["คทพวกดำ","คทนิโกร","คทดำ","คทโจร500","คทพวกหื่น","คทพวกบ้ากาม"]: if wait["blacklist"] == {}: line.sendMessage(msg.to,"Tidak Ada Blacklist") else: line.sendMessage(msg.to,"Daftar Blacklist") h = "" for i in wait["blacklist"]: h = cl.getContact(i) M = Message() M.to = msg.to M.contentType = 13 M.contentMetadata = {'mid': i} line.sendMessage(M) elif msg.text in ["เช็คบล็อค"]: blockedlist = line.getBlockedContactIds() kontak = line.getContacts(blockedlist) num=1 msgs="═════ไม่มีรายการบัญชีที่ถูกบล็อค═════" for ids in kontak: msgs+="\n[%i] %s" % (num, ids.displayName) num=(num+1) msgs+="\n════════รายการบัญชีที่ถูกบล็อค════════\n\nTotal Blocked : %i" % len(kontak) line.sendMessage(receiver, msgs) elif msg.text in ["ไอดีเพื่อน"]: gruplist = line.getAllContactIds() kontak = line.getContacts(gruplist) num=1 msgs="═════════รายการไอดีเพื่อน═════════" for ids in kontak: msgs+="\n[%i] %s" % (num, ids.mid) num=(num+1) msgs+="\n═════════รายการ ไอดีเพื่อน═════════\n\nTotal Friend : %i" % len(kontak) line.sendMessage(receiver, msgs) elif msg.text.lower() == 'gurl': if msg.toType == 2: g = line.getGroup(receiver) line.updateGroup(g) gurl = line.reissueGroupTicket(receiver) line.sendMessage(receiver,"╔══════════════┓\n╠❂line://ti/g/" + gurl + "\n╠\n╠❂Link Groupnya Tanpa Buka Qr\n╚══════════════┛") elif msg.text == "เว็บโป๊": line.sendMessage(receiver,">nekopoi.host\n>sexvideobokep.com\n>memek.com\n>pornktube.com\n>faketaxi.com\n>videojorok.com\n>watchmygf.mobi\n>xnxx.com\n>pornhd.com\n>xvideos.com\n>vidz7.com\n>m.xhamster.com\n>xxmovies.pro\n>youporn.com\n>pornhub.com\n>youjizz.com\n>thumzilla.com\n>anyporn.com\n>brazzers.com\n>redtube.com\n>youporn.com") elif msg.text == ".ประกาศ": line.sendMessage(msg.to,str(settings["message1"])) elif msg.text.lower() == 'ดึงแอด': if msg.toType == 2: ginfo = line.getGroup(receiver) try: gcmid = ginfo.creator.mid except: gcmid = "Error" if settings["lang"] == "JP": line.inviteIntoGroup(receiver,[gcmid]) line.sendMessage(receiver, "Type👉 Invite Pembuat Group Succes") else: line.inviteIntoGroup(receiver,[gcmid]) line.sendMessage(receiver, "Pembuat Group Sudah di dalam") elif msg.text in ["ไม่รับเชิญ"]: if msg.toType == 2: ginfo = line.getGroup(receiver) try: line.leaveGroup(receiver) except: pass elif msg.text in ["เช็คไอดี"]: gruplist = line.getAllContactIds() kontak = line.getContacts(gruplist) num=1 msgs="✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯" for ids in kontak: msgs+="\n[%i] %s" % (num, ids.mid) num=(num+1) msgs+="\nจำนวน %i" % len(kontak) line.sendMessage(receiver, msgs) elif msg.text in ["เปิดเตะแทค","เปิดแทคเตะ"]: settings["kickMention"] = True line.sendMessage(to,"❂• เปิดระบบเตะคนแท็กแล้วค่ะ •❂\n A~jańg@Opën 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["ปิดเตะแทค","ปิดแทคเตะ"]: settings["kickMention"] = False line.sendMessage(to,"❂• ปิดระบบเตะคนแท็กแล้วค่ะ •❂\n A~jańg@Closë 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["เปิดแทค","Tag on"]: settings['detectMention'] = True line.sendMessage(msg.to,"✥:: เปิดระบบแท็กเรียบร้อยค่ะ ::✥") elif msg.text in ["ปิดแทค","Tag off"]: settings['detectMention'] = False line.sendMessage(msg.to,"✥:: ปิดระบบแท็กเรียบร้อยค่ะ ::✥") elif msg.text in ["เปิดแทค2"]: settings["potoMention"] = True line.sendMessage(msg.to,"✧•••••••••❂✧✯✧❂••••••••••✧\n ♡ เปิดแท็กรูปเรียบร้อยค่ะ ♡\n✧•••••••••❂✧✯✧❂••••••••••✧") elif msg.text in ["ปิดแทค2"]: settings["potoMention"] = False line.sendMessage(msg.to,"✧•••••••••❂✧✯✧❂••••••••••✧\n ♡ ปิดแท็กรูปเรียบร้อยค่ะ ♡\n✧•••••••••❂✧✯✧❂••••••••••✧") elif msg.text in ["เปิดแทค3"]: settings["delayMention"] = True line.sendMessage(to,"❂••• เปิดแท็กกลับคนแท็กค่ะ •••❂\n A~jańg@Opën 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["ปิดแทค3"]: settings["delayMention"] = False line.sendMessage(to,"❂••• ปิดแท็กกลับคนแท็กค่ะ •••❂\n A~jańg@Clöse 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["เปิดตรวจสอบ"]: settings["Aip"] = True line.sendMessage(to,"❂•เปิดตรวจคำหยาบกับบอทบิน•❂\n A~jańg@Opën 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["ปิดตรวจสอบ"]: settings["Aip"] = False line.sendMessage(to,"❂•ปิดตรวจคำหยาบกับบอทบิน•❂\n A~jańg@Clöse 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["เปิดapi","เอจังเปิดapi","Api on"]: settings["Api"] = True line.sendMessage(to, "❂•• เปิดระบบตอบโต้ API ค่ะ ••❂\n A~jańg@Opën 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif msg.text in ["ปิดapi","เอจังปิดapi","Api off"]: settings["Api"] = False line.sendMessage(msg.to,"❂•• ปิดระบบตอบโต้: API ค่ะ ••❂\n A~jańg@Clöse 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") elif 'ตั้งแอด: ' in msg.text: if msg._from in admin: spl = msg.text.replace('ตั้งแอด: ','') if spl in [""," ","\n",None]: line.sendMessage(msg.to, "ตั้งข้อความเรืยบร้อย") else: settings["message"] = spl line.sendMessage(msg.to, "✧•••••••❂•ຟနุ้७ຟနิ้७•❂•••••••✧\n👇ตั้งข้อความตอบโต้เมื่อมีคนแอดแล้ว ดังนี้👇\n\n{}".format(str(spl))) elif 'คอมเม้น: ' in msg.text: if msg._from in admin: spl = msg.text.replace('.คอมเม้น: ','') if spl in [""," ","\n",None]: line.sendMessage(msg.to, "ตั้งข้อความเรืยบร้อย") else: settings["comment"] = spl line.sendMessage(msg.to, "✧•••••••❂•ຟနุ้७ຟနิ้७•❂•••••••✧\n👇ตั้งข้อความคอมเม้นของคุณแล้ว ดังนี้👇\n\n👉{}".format(str(spl))) elif 'ตั้งแทค: ' in msg.text: if msg._from in admin: spl = msg.text.replace('ตั้งแทค: ','') if spl in [""," ","\n",None]: line.sendMessage(msg.to, "ตั้งข้อความเรืยบร้อย") else: settings["Respontag"] = spl line.sendMessage(msg.to, "™❍✯͜͡RED™SAMURI✯͜͡❂➣\n??ตั้งข้อความตอบโต้เมื่อมีคนแทคแล้ว👇\n\n👉{}".format(str(spl))) elif 'ทักเตะ: ' in msg.text: if msg._from in admin: spl = msg.text.replace('ทักเตะ: ','') if spl in [""," ","\n",None]: line.sendMessage(msg.to, "ตั้งข้อความคนคนลบสมาชิดเรียบร้อย") else: settings["kick"] = spl line.sendMessage(msg.to, "✧•••••••❂•ຟနุ้७ຟနิ้७•❂•••••••✧\nตั้งค่าข้อความเมื่อมีคนลบสมาชิกแล้ว\nดังนี้👇\n\n{}".format(str(spl))) elif 'ทักออก: ' in msg.text: if msg._from in admin: spl = msg.text.replace('ทักออก: ','') if spl in [""," ","\n",None]: line.sendMessage(msg.to, "ตั้งข้อความคนออกเรียบร้อย") else: settings["bye"] = spl line.sendMessage(msg.to, "✧•••••••❂•ຟနุ้७ຟနิ้७•❂•••••••✧\nตั้งค่าข้อความเมื่อมีคนออกจากกลุ่มแล้ว\nดังนี้👇\n\n👉{}".format(str(spl))) elif 'ทักเข้า: ' in msg.text: if msg._from in admin: spl = msg.text.replace('ทักเข้า: ','') if spl in [""," ","\n",None]: line.sendMessage(msg.to, "ตั้งข้อความคนเข้าเรียบร้อยแล้ว") else: settings["welcome"] = spl line.sendMessage(msg.to, "✧•••••••❂•ຟနุ้७ຟနิ้७•❂•••••••✧\nตั้งค่าข้อความเมื่อมีคนเข้ากลุ่มแล้ว\nดังนี้👇\n\n👉{}".format(str(spl))) elif msg.text.lower().startswith("textig "): sep = msg.text.split(" ") textnya = msg.text.replace(sep[0] + " ","") urlnya = "http://chart.apis.google.com/chart?chs=480x80&cht=p3&chtt=" + textnya + "&chts=FFFFFF,70&chf=bg,s,000000" line.sendImageWithURL(msg.to, urlnya) elif "kedip " in msg.text: txt = msg.text.replace("kedip ", "") t1 = "\xf4\x80\xb0\x82\xf4\x80\xb0\x82\xf4\x80\xb0\x82\xf4\x80\xb0\x82\xf4\x80\xa0\x81\xf4\x80\xa0\x81\xf4\x80\xa0\x81" t2 = "\xf4\x80\x82\xb3\xf4\x8f\xbf\xbf" line.sendMessage(msg.to, t1 + txt + t2) elif msg.text in ["ดึง","ดึงคน"]: settings["winvite"] = True line.sendMessage(to, "🌀ลงคอนเเท็คค่ะ ⏰ " +datetime.today().strftime('%H:%M:%S')+ "🌀") elif msg.text in ["ยกเชิญ","เอจังยกเชิญ"]: if msg.toType == 2: line.sendMessage(msg.to,"❂•ระบบทำการยกเลิกเชิญค่ะ•❂\n ®A@Cancel 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") group = line.getGroup(msg.to) gMembMids = [contact.mid for contact in group.invitee] for _mid in gMembMids: line.cancelGroupInvitation(msg.to,[_mid]) line.sendMessage(to,"🌀•ยกเลิกค้างเชิญเรียบร้อย•🌀" ) elif msg.text.lower() == "บอทยก": if msg.toType == 2: group = line.getGroup(msg.to) gMembMids = [contact.mid for contact in group.invitee] for i in gMembMids: random.choice(Exc).cancelGroupInvitation(msg.to,[i]) #=============COMMAND KICKER===========================# elif msg.text in ["ดำ"]: if msg._from in admin: settings["wblacklist"] = True line.sendMessage(msg.to,"❂• กรุณาส่งคอนเท็คลงมาค่ะ •❂\n A~jańg@Bläck 🕒 " +datetime.today().strftime('%H:%M:%S')) elif msg.text in ["ขาว"]: if msg._from in admin: settings["dblacklist"] = True line.sendMessage(msg.to,"❂• กรุณาส่งคอนเท็คลงมาค่ะ •❂\n A~jańg@Whitë 🕒 " +datetime.today().strftime('%H:%M:%S')) elif msg.text in ["ล้างดำ","ไฮเตอร์","ล้างขี้","ล้างก้น","ล้างตูด","แฟ้บ","บรีส","โอโม่","ล้างวาน","ล้างดะ","ซันไลต์"]: settings["blacklist"] = {} line.sendMessage(msg.to,"✧•••••••••❂✧✯✧❂••••••••••✧\n ♡ ล้างบัญชีดำเรียบร้อยค่ะ ♡\n✧•••••••••❂✧✯✧❂••••••••••✧") print ("Clear Ban") elif 'ลาก่อน' in text.lower(): targets = [] key = eval(msg.contentMetadata["MENTION"]) key["MENTIONEES"] [0] ["M"] for x in key["MENTIONEES"]: targets.append(x["M"]) for target in targets: try: random.choice(Rfu).kickoutFromGroup(msg.to,[target]) print ("Rfu kick User") except: random.choice(Rfu).sendMessage(msg.to,"🌀โชคดีน้อง ⏰ " +datetime.today().strftime('%H:%M:%S')+ "🌀") elif 'สอย' in text.lower(): targets = [] key = eval(msg.contentMetadata["MENTION"]) key["MENTIONEES"] [0] ["M"] for x in key["MENTIONEES"]: targets.append(x["M"]) for target in targets: try: line.kickoutFromGroup(msg.to,[target]) print ("Sb Kick User") except: line.sendMessage(msg.to,"🌀วอร์มตีน ⏰ " +datetime.today().strftime('%H:%M:%S')+ "🌀") elif '.เชิญ' in text.lower(): targets = [] key = eval(msg.contentMetadata["MENTION"]) key["MENTIONEES"] [0] ["M"] for x in key["MENTIONEES"]: targets.append(x["M"]) for target in targets: try: line.inviteIntoGroup(msg.to,[target]) line.sendMessage(receiver, "Type👉 Invite Succes") except: line.sendMessage(msg.to,"Type👉 Limit Invite") elif "บล็อค @" in msg.text: if msg.toType == 2: print ("[block] OK") _name = msg.text.replace("บล็อค @","") _nametarget = _name.rstrip(' ') gs = line.getGroup(msg.to) targets = [] for g in gs.members: if _nametarget == g.displayName: targets.append(g.mid) if targets == []: sendMassage(msg.to, "Not Found...") else: for target in targets: try: line.blockContact(target) sendMassage(msg.to, "🔅•บล็อคเรียบร้อยแล้วค่ะ•🔅") except Exception as e: print (e) elif msg.text.lower() == 'บล็อค': blockedlist = line.getBlockedContactIds() sendMessage(msg.to, "Please wait...") kontak = line.getContacts(blockedlist) num=1 msgs="User Blocked List\n" for ids in kontak: msgs+="\n%i. %s" % (num, ids.displayName) num=(num+1) msgs+="\n\nTotal %i blocked user(s)" % len(kontak) sendMessage(msg.to, msgs) elif msg.text in ["เอจังบิน"]: if msg.toType == 2: _name = msg.text.replace("เอจังบิน","") gs = line.getGroup(receiver) line.sendMessage(receiver,"✧••••••••••❂✧✯✧❂•••••••••••✧\n ♡ต้อนรับสู่สนามบินนานาชาติ♡\n✧••••••••••❂✧✯✧❂•••••••••••✧\n •➣ เอจังแอร์ไลน์ \n •➣ สายบินแห่งความฟรุ้งฟริ้ง\n •➣ เที่ยวบินที่ : 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n\n✧••••••••••❂✧✯✧❂•••••••••••✧\n 💚เดินทางโดยสวัสดิภาพค่ะ💚") line.sendMessage(receiver,"●•➤➤➤➤➤➤➤") line.sendMessage(receiver,"❂ՃิՁণຮี•➣➣➣➣➣➣➣") line.sendMessage(receiver,"●•➤➤➤➤➤➤➤➤➤➤➤➤") targets = [] for g in gs.members: if _name in g.displayName: targets.append(g.mid) if targets == []: line.sendMessage(receiver,"✧••••••••••❂✧✯✧❂•••••••••••✧\n ♡ น้ำมันหมด งดเที่ยวบินค่ะ ♡\n✧••••••••••❂✧✯✧❂•••••••••••✧") else: for target in targets: if not target in Rfu: try: klist=[line] kicker=random.choice(klist) kicker.kickoutFromGroup(receiver,[target]) print((receiver,[g.mid])) except: line.sendMessage(receiver,"💖ขอบคุณทุกท่านที่ใช้บริการ💖\n ✈ A~jang Airpört ✈\n➤➤➤➤➤➤➤➤➤➤➤➤➤\n By : ✯ֆҽℓƒ-β❂T-ՃิՁণຮี✯") print ("Cleanse Group") elif msg.text in ["ประหารชีวิต","ยิงเป้า","กุดหัวมัน","ยิงเป้า","สังหารดำ"]: if msg.toType == 2: line.sendMessage(msg.to,"✧•••••••••❂✧✯✧❂••••••••••✧\n ■ เข้าสู่แดนประหารเอจัง ■\n✧•••••••••❂✧✯✧❂••••••••••✧") line.sendMessage(to,"❂•• เครื่องประหารหัวเหี้ย ••❂\nเริ่มประหารชีวิต 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") line.sendMessage(msg.to,"❂•➣➣➣ Chîväreé ➣➣➣➣") group = line.getGroup(receiver) gMembMids = [contact.mid for contact in group.members] matched_list = [] for tag in settings["blacklist"]: matched_list+=[str for str in gMembMids if str == tag] if matched_list == []: line.sendMessage(receiver,"เพชรฆาต •➣➣➣➣➣➣➣➣➣\n ❂•ไปตีหม้อเลื่อนวันประหาร•❂\n➣➣➣➣➣➣➣➣➣•Chiväree") else: for jj in matched_list: try: klist=[line] kicker=random.choice(klist) kicker.kickoutFromGroup(receiver,[jj]) line.sendMessage(receiver,"✯::: ประหารชีวิตเรียบร้อยค่ะ :::✯") print((receiver,[jj])) except: line.sendMessage(receiver,"✯::: ประหารชีวิตเรียบร้อยค่ะ :::✯") print ("Blacklist di Kick") elif "เปลี่ยนชื่อ " in text.lower(): if msg._from in Family: proses = text.split(":") string = text.replace(proses[0] + ": ","") profile_A = line.getProfile() profile_A.displayName = string line.updateProfile(profile_A) line.sendMessage(msg.to,"🌀อัพเดทชื่อค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀\n •➣" + string) print ("Update Name") elif "เปลี่ยนตัส " in msg.text.lower(): if msg._from in Family: proses = text.split(":") string = text.replace(proses[0] + ": ","") profile_A = line.getProfile() profile_A.statusMessage = string line.updateProfile(profile_A) line.sendMessage(msg.to,"🌀อัพเดทชื่อค่ะ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "🌀\n •➣" + string) print ("Update Bio Succes") #=============COMMAND PROTECT=========================# elif msg.text.lower() == 'เปิดกัน': if RfuProtect["protect"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::♡•เปิดระบบป้องกันค่ะ•♡::✯") else: line.sendMessage(msg.to,"✯::♡•เปิดระบบป้องกันค่ะ•♡::✯") else: RfuProtect["protect"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::♡•เปิดระบบป้องกันค่ะ•♡::✯") else: line.sendMessage(msg.to,"✯::♡•เปิดระบบป้องกันค่ะ•♡::✯") elif msg.text.lower() == 'ปิดกัน': if RfuProtect["protect"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::♡•ปิดระบบป้องกันค่ะ•♡::✯") else: line.sendMessage(msg.to,"✯::♡•ปิดระบบป้องกันค่ะ•♡::✯") else: RfuProtect["protect"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::♡•ปิดระบบป้องกันค่ะ•♡::✯") else: line.sendMessage(msg.to,"✯::♡•ปิดระบบป้องกันค่ะ•♡::✯") elif msg.text.lower() == 'กันยก': if RfuProtect["cancelprotect"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::เปิดป้องกันยกเลิกเชิญค่ะ::✯") else: line.sendMessage(msg.to,"✯::เปิดป้องกันยกเลิกเชิญค่ะ::✯") else: RfuProtect["cancelprotect"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::เปิดป้องกันยกเลิกเชิญค่ะ::✯") else: line.sendMessage(msg.to,"✯::เปิดป้องกันยกเลิกเชิญค่ะ::✯") elif msg.text.lower() == 'ปิดกันยก': if RfuProtect["cancelprotect"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::ปิดป้องกันยกเลิกเชิญค่ะ::✯") else: line.sendMessage(msg.to,"✯::ปิดป้องกันยกเลิกเชิญค่ะ::✯") else: RfuProtect["cancelprotect"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::ปิดป้องกันยกเลิกเชิญค่ะ::✯") else: line.sendMessage(msg.to,"✯::ปิดป้องกันยกเลิกเชิญค่ะ::✯") elif msg.text.lower() == 'กันเชิญ': if RfuProtect["inviteprotect"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"®::เปิดป้องกันยกเชิญค่ะ::©") else: line.sendMessage(msg.to,"®::เปิดป้องกันยกเชิญค่ะ::©") else: RfuProtect["inviteprotect"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"®::เปิดป้องกันยกเชิญค่ะ::©") else: line.sendMessage(msg.to,"®::เปิดป้องกันยกเชิญค่ะ::©") elif msg.text.lower() == 'ปิดกันเชิญ': if RfuProtect["inviteprotect"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"®::ปิดป้องกันยกเชิญค่ะ::©") else: line.sendMessage(msg.to,"®::ปิดป้องกันยกเชิญค่ะ::©") else: RfuProtect["inviteprotect"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"®::ปิดป้องกันยกเชิญค่ะ::©") else: line.sendMessage(msg.to,"®::ปิดป้องกันยกเชิญค่ะ::©") elif msg.text.lower() == 'กันลิ้ง': if RfuProtect["linkprotect"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::♡•เปิดป้องกันลิ้งค่ะ•♡::✯") else: line.sendMessage(msg.to,"✯::♡•เปิดป้องกันลิ้งค่ะ•♡::✯") else: RfuProtect["linkprotect"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::♡•เปิดป้องกันลิ้งค่ะ•♡::✯") else: line.sendMessage(msg.to,"✯::♡•เปิดป้องกันลิ้งค่ะ•♡::✯") elif msg.text.lower() == 'ปิดกันลิ้ง': if RfuProtect["linkprotect"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::♡•ปิดป้องกันลิ้งค่ะ•♡::✯") else: line.sendMessage(msg.to,"✯::♡•ปิดป้องกันลิ้งค่ะ•♡::✯") else: RfuProtect["linkprotect"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::♡•ปิดป้องกันลิ้งค่ะ•♡::✯") else: line.sendMessage(msg.to,"✯::♡•ปิดป้องกันลิ้งค่ะ•♡::✯") elif msg.text.lower() == 'กันกลุ่ม': if RfuProtect["Protectguest"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::เปิดป้องกันสมาชิกค่ะ::✯") else: line.sendMessage(msg.to,"✯::เปิดป้องกันสมาชิกค่ะ::✯") else: RfuProtect["Protectguest"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::เปิดป้องกันสมาชิกค่ะ::✯") else: line.sendMessage(msg.to,"✯::เปิดป้องกันสมาชิกค่ะ::✯") elif msg.text.lower() == 'ปิดกันกลุ่ม': if RfuProtect["Protectguest"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::ปิดป้องกันสมาชิกค่ะ::✯") else: line.sendMessage(msg.to,"✯::ปิดป้องกันสมาชิกค่ะ::✯") else: RfuProtect["Protectguest"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"✯::ปิดป้องกันสมาชิกค่ะ::✯") else: line.sendMessage(msg.to,"✯::ปิดป้องกันสมาชิกค่ะ::✯") elif msg.text.lower() == 'กันเข้า': if RfuProtect["Protectjoin"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯:: เปิดป้องกันคนเข้าค่ะ ::✯") else: line.sendMessage(msg.to,"✯:: เปิดป้องกันคนเข้าค่ะ ::✯") else: RfuProtect["Protectjoin"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"✯:: เปิดป้องกันคนเข้าค่ะ ::✯") else: line.sendMessage(msg.to,"✯:: เปิดป้องกันคนเข้าค่ะ ::✯") elif msg.text.lower() == 'ปิดกันเข้า': if RfuProtect["Protectjoin"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"✯:: ปิดป้องกันคนเข้าค่ะ ::✯") else: line.sendMessage(msg.to,"✯:: ปิดป้องกันคนเข้าค่ะ ::✯") else: RfuProtect["Protectjoin"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"✯:: ปิดป้องกันคนเข้าค่ะ ::✯") else: line.sendMessage(msg.to,"✯:: ปิดป้องกันคนเข้าค่ะ ::✯") elif msg.text.lower() == 'เปิดหมด': if RfuProtect["inviteprotect"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•เปิดระบบป้องกันทั้งหมดค่ะ•❂\n A~jańg@Open 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") else: line.sendMessage(msg.to,"❂•เปิดระบบป้องกันทั้งหมดค่ะ•❂\n A~jańg@Open 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") else: RfuProtect["inviteprotect"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันเชิญค่ะ") if RfuProtect["cancelprotect"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันยกเชิญค่ะ") else: line.sendMessage(msg.to,"❂•➣ เปิดป้องกันยกเชิญค่ะ") else: RfuProtect["cancelprotect"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันยกเชิญค่ะ") if RfuProtect["protect"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันยกเชิญค่ะ") else: line.sendMessage(msg.to,"❂•➣ เปิดป้องกันยกเชิญค่ะ") else: RfuProtect["protect"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันเตะค่ะ") else: line.sendMessage(msg.to,"❂•➣ เปิดป้องกันเตะค่ะ") if RfuProtect["linkprotect"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันลิ้งค่ะ") else: line.sendMessage(msg.to,"❂•➣ เปิดป้องกันลิ้งค่ะ") else: RfuProtect["linkprotect"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันลิ้งค่ะ") else: line.sendMessage(msg.to,"❂•➣ เปิดป้องกันลิ้งค่ะ") if RfuProtect["Protectguest"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันกลุ่มค่ะ") else: line.sendMessage(msg.to,"❂•➣ เปิดป้องกันกลุ่มค่ะ") else: RfuProtect["Protectguest"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันกลุ่มค่ะ") else: line.sendMessage(msg.to,"❂•➣ เปิดป้องกันกลุ่มค่ะ") if RfuProtect["Protectjoin"] == True: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันคนเข้ากลุ่มค่ะ") else: line.sendMessage(msg.to,"❂•➣ เปิดป้องกันคนเข้ากลุ่มค่ะ") else: RfuProtect["Protectjoin"] = True if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ เปิดป้องกันคนเข้ากลุ่มค่ะ") else: line.sendMessage(msg.to,"❂•➣ เปิดป้องกันคนเข้ากลุ่มค่ะ") elif msg.text.lower() == 'ปิดหมด': if RfuProtect["inviteprotect"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•ปิดระบบป้องกันทั้งหมดค่ะ•❂\nA~jańg@Close 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") else: line.sendMessage(msg.to,"❂•ปิดระบบป้องกันทั้งหมดค่ะ•❂\nA~jańg@Close 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") else: RfuProtect["inviteprotect"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันเชิญค่ะ") if RfuProtect["cancelprotect"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันยกเชิญค่ะ") else: line.sendMessage(msg.to,"❂•➣ ปิดป้องกันยกเชิญค่ะ") else: RfuProtect["cancelprotect"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันยกเชิญค่ะ") if RfuProtect["protect"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันเตะค่ะ") else: line.sendMessage(msg.to,"❂•➣ ปิดป้องกันเตะค่ะ") else: RfuProtect["protect"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันเตะค่ะ") else: line.sendMessage(msg.to,"❂•➣ ปิดป้องกันเตะค่ะ") if RfuProtect["linkprotect"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันลิ้งค่ะ") else: line.sendMessage(msg.to,"❂•➣ ปิดป้องกันลิ้งค่ะ") else: RfuProtect["linkprotect"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันลิ้งค่ะ") else: line.sendMessage(msg.to,"❂•➣ ปิดป้องกันลิ้งค่ะ") if RfuProtect["Protectguest"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันกลุ่มค่ะ") else: line.sendMessage(msg.to,"❂•➣ ปิดป้องกันกลุ่มค่ะ") else: RfuProtect["Protectguest"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันกลุ่มค่ะ") else: line.sendMessage(msg.to,"❂•➣ ปิดป้องกันกลุ่มค่ะ") if RfuProtect["Protectjoin"] == False: if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันคนเข้ากลุ่มค่ะ") else: line.sendMessage(msg.to,"❂•➣ ปิดป้องกันคนเข้ากลุ่มค่ะ") else: RfuProtect["Protectjoin"] = False if settings["lang"] == "JP": line.sendMessage(msg.to,"❂•➣ ปิดป้องกันคนเข้ากลุ่มค่ะ") else: line.sendMessage(msg.to,"❂•➣ ปิดป้องกันคนเข้ากลุ่มค่ะ") #==============FINNISHING PROTECT========================# elif msg.text.lower() == 'เปิดรับแขก': if settings["Wc"] == True: if settings["lang"] == "JP": line.sendMessage(to,"☆เปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•ต้อนรับเมื่อมีสมาชิกเข้ากลุ่ม•❂") else: settings["Wc"] = True if settings["lang"] == "JP": line.sendMessage(to,"☆เปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•ต้อนรับเมื่อมีสมาชิกเข้ากลุ่ม•❂") elif msg.text.lower() == 'ปิดรับแขก': if settings["Wc"] == False: if settings["lang"] == "JP": line.sendMessage(to,"☆ปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•ต้อนรับเมื่อมีสมาชิกเข้ากลุ่ม•❂") else: settings["Wc"] = False if settings["lang"] == "JP": line.sendMessage(to,"☆ปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•ต้อนรับเมื่อมีสมาชิกเข้ากลุ่ม•❂") elif msg.text.lower() == 'เปิดทักเตะ': if settings["Nk"] == True: if settings["lang"] == "JP": line.sendMessage(to,"☆เปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•แจ้งเตือนเมื่อมีคนเตะกันค่ะ•❂") else: settings["Nk"] = True if settings["lang"] == "JP": line.sendMessage(to,"☆เปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•แจ้งเตือนเมื่อมีคนเตะกันค่ะ•❂") elif msg.text in ["ปิดทักเตะ"]: if settings["Nk"] == False: if settings["lang"] == "JP": line.sendMessage(to,"☆ปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•แจ้งเตือนเมื่อมีคนเตะกันค่ะ•❂") else: settings["Nk"] = False if settings["lang"] == "JP": line.sendMessage(to,"☆ปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•แจ้งเตือนเมื่อมีคนเตะกันค่ะ•❂") elif msg.text.lower() == 'เปิดส่งแขก': if settings["Lv"] == True: if settings["lang"] == "JP": line.sendMessage(to,"☆เปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•อำลาเมื่อสมาชิกออกกลุ่ม•❂") else: settings["Lv"] = True if settings["lang"] == "JP": line.sendMessage(to,"☆เปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•อำลาเมื่อสมาชิกออกกลุ่ม•❂") elif msg.text.lower() == 'ปิดส่งแขก': if settings["Lv"] == False: if settings["lang"] == "JP": line.sendMessage(to,"☆ปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•อำลาเมื่อสมาชิกออกกลุ่ม•❂") else: settings["Lv"] = False if settings["lang"] == "JP": line.sendMessage(to,"☆ปิดข้อความ☆ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•อำลาเมื่อสมาชิกออกกลุ่ม•❂") elif msg.text.lower() == 'เปิดคท': if settings["checkContact"] == True: if settings["lang"] == "JP": line.sendMessage(to,"เปิดระบบ•➣➣➣➣➣➣➣➣\n❂•อ่านข้อมูลด้วยคอนแทค•❂\n➣➣➣➣➣➣➣•อยู่แล้วค่ะ™") else: settings["checkContact"] = True if settings["lang"] == "JP": line.sendMessage(to,"เปิดระบบ •➣➣➣➣➣➣➣➣\n❂•อ่านข้อมูลด้วยคอนแทค•❂\n➣➣➣➣➣➣➣เรียบร้อยค่ะ™") elif msg.text.lower() == 'ปิดคท': if settings["checkContact"] == False: if settings["lang"] == "JP": line.sendMessage(to,"ปิดระบบ•➣➣➣➣➣➣➣➣\n❂•อ่านข้อมูลด้วยคอนแทค•❂\n➣➣➣➣➣➣➣•อยู่แล้วค่ะ™") else: settings["checkContact"] = False if settings["lang"] == "JP": line.sendMessage(to,"ปิดระบบ •➣➣➣➣➣➣➣➣\n❂•อ่านข้อมูลด้วยคอนแทค•❂\n➣➣➣➣➣➣➣เรียบร้อยค่ะ™") elif msg.text.lower() == 'เปิดเช็คโพส': if settings["checkPost"] == True: if settings["lang"] == "JP": line.sendMessage(to,"เปิดระบบ•➣➣➣➣➣➣➣➣\n ❂• เช็คโพสบนทามไลน์ •❂\n➣➣➣➣➣➣➣•อยู่แล้วค่ะ™") else: settings["checkPost"] = True if settings["lang"] == "JP": line.sendMessage(to,"เปิดระบบ •➣➣➣➣➣➣➣➣\n ❂• เช็คโพสบนทามไลน์ •❂\n➣➣➣➣➣➣➣เรียบร้อยค่ะ™") elif msg.text.lower() == 'ปิดเช็คโพส': if settings["checkPost"] == False: if settings["lang"] == "JP": line.sendMessage(to,"ปิดระบบ•➣➣➣➣➣➣➣➣\n ❂• เช็คโพสบนทามไลน์ •❂\n➣➣➣➣➣➣➣•อยู่แล้วค่ะ™") else: settings["checkPost"] = False if settings["lang"] == "JP": line.sendMessage(to,"ปิดระบบ •➣➣➣➣➣➣➣➣\n ❂• เช็คโพสบนทามไลน์ •❂\n➣➣➣➣➣➣➣เรียบร้อยค่ะ™") elif text.lower() == "ดับไฟ": line.sendMessage(msg.to,"❌•🛑 อันตราย 🛑•❌") line.sendMessage(msg.to,"💙:::⭐ 9 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 8 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 7 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 6 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 5 ⭐:::💖") line.sendMessage(msg.to,"💔:::⭐ 4 ⭐:::💔") line.sendMessage(msg.to,"💙:::⭐ 3 ⭐:::💙") line.sendMessage(msg.to,"💚:::⭐ 2 ⭐:::💚") line.sendMessage(msg.to,"💖:::⭐ 1 ⭐:::💖") line.sendMessage(msg.to,"💚:::⭐ 0 ⭐:::💚") line.sendMessage(msg.to,"🔸•มึงก็เดินไปปิดดิ ไอ้สัด•🔸") elif msg.text in ["ลบรัน","เอจังลบรัน","ล้างรัน"]: gid = line.getGroupIdsInvited() start = time.time() for i in gid: line.rejectGroupInvitation(i) elapsed_time = time.time() - start line.sendMessage(to, "✧•••••••••❂✧✯✧❂••••••••••✧\n ♡ ระบบลบรันเรียบร้อยค่ะ ♡\n✧•••••••••❂✧✯✧❂••••••••••✧") line.sendMessage(to, "ระยะเวลาที่ใช้: %sวินาที" % (elapsed_time)) elif msg.text in ["ล้างถ้วย","ไลปอนเอฟ","ล้างจาน"]: gid = line.getGroupIdsInvited() start = time.time() for i in gid: line.rejectGroupInvitation(i) elapsed_time = time.time() - start line.sendReplyMessage(msg.id,to, " ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n✧•••••••••••❂✧✯✧❂••••••••••••✧\n ✲ ระบบล้างจานอัติโนมัตื ✲\n\n 🔸กวาดเก็บเศษอาหารลงถัง\n 🔸ระบบเริ่มล้างจานอัติโนมัติ...\n 🔸ล้างน้ำสะอาด2ครั้ง\n 🔸เช็ดให้แห้งจัดเก็บเข้าชั้นวาง\n 🔸ล้างจานอัติโนมัติเรียบร้อยค่ะ\n 🔸จุ้ฟป้อก\n✧•••••••••••❂✧✯✧❂••••••••••••✧") sendMessageWithMention(to, lineMID) line.sendMessage(to, "🌀 ฟรุ้งฟริ้ง " +datetime.today().strftime('%H:%M:%S')+ "™ 🌀") elif msg.text in ["ยัดดำกลุ่ม"]: if msg._from in Family: if msg.toType == 2: print ("All Banlist") _name = msg.text.replace("ยัดดำกลุ่ม","") gs = line.getGroup(msg.to) line.sendMessage(msg.to,"●•➤➤➤➤➤➤➤➤➤➤➤➤\n ■•ยัดดำแม่งยกกลุ่มค่ะ•■\n●•➤➤➤➤➤➤➤➤➤➤➤➤") targets = [] for g in gs.members: if _name in g.displayName: targets.append(g.mid) if targets == []: line.sendMessage(msg.to,"Maaf") else: for target in targets: if not target in Family: try: settings["blacklist"][target] = True f=codecs.open('st2__b.json','w','utf-8') json.dump(settings["blacklist"], f, sort_keys=True, indent=4,ensure_ascii=False) except: line.sentMessage(msg.to,"พบข้อผิดพลาดที่ไม่ทราบสาเหตุ") elif 'ยัดดำ' in text.lower(): targets = [] key = eval(msg.contentMetadata["MENTION"]) key["MENTIONEES"] [0] ["M"] for x in key["MENTIONEES"]: targets.append(x["M"]) for target in targets: try: settings["blacklist"][target] = True f=codecs.open('st2__b.json','w','utf-8') json.dump(settings["blacklist"], f, sort_keys=True, indent=4,ensure_ascii=False) line.sendMessage(msg.to,"●•➤➤➤➤➤➤➤➤➤➤➤➤\n ■•ยัดดำเรียบร้อยแล้วค่ะ•■\n●•➤➤➤➤➤➤➤➤➤➤➤➤") print ("Banned User") except: line.sendMessage(msg.to,"✧•••❂ไม่สามารถยัดดำได้❂•••✧") elif 'ล้างแบน' in text.lower(): targets = [] key = eval(msg.contentMetadata["MENTION"]) key["MENTIONEES"] [0] ["M"] for x in key["MENTIONEES"]: targets.append(x["M"]) for target in targets: try: del settings["blacklist"][target] f=codecs.open('st2__b.json','w','utf-8') json.dump(settings["blacklist"], f, sort_keys=True, indent=4,ensure_ascii=False) line.sendMessage(msg.to,"Succes unban from the blacklist. ") print ("Unbanned User") except: line.sendMessage(msg.to,"Contact Not Found") elif msg.text in ["เช็คดำ","บัญชีดำ","พวกนิโกร","พวกบ้ากาม","พวกหื่น","พวกโจร500","พวกดำ","พวกโรคจิต"]: if msg._from in Family: if settings["blacklist"] == {}: line.sendMessage(msg.to,"●•➤➤➤➤➤➤➤➤➤➤➤➤\n ■•ไม่มีลิสในบัญชีดำค่ะ•■\n●•➤➤➤➤➤➤➤➤➤➤➤➤") else: line.sendMessage(msg.to,"รายชื่อบัญชีดำ 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") mc = "✧•••••••••❂✧✯✧❂••••••••••✧\n ✯💀<[[•• Blacklist ••]]>💀✯\n✧•••••••••❂✧✯✧❂••••••••••✧\n" for mi_d in settings["blacklist"]: mc += "[√] " + line.getContact(mi_d).displayName + " \n" line.sendMessage(msg.to, mc + "") elif msg.text.lower().startswith("urban "): sep = msg.text.split(" ") judul = msg.text.replace(sep[0] + " ","") url = "http://api.urbandictionary.com/v0/define?term="+str(judul) with requests.session() as s: s.headers["User-Agent"] = random.choice(settings["userAgent"]) r = s.get(url) data = r.text data = json.loads(data) y = "[ Result Urban ]" y += "\nTags: "+ data["tags"][0] y += ","+ data["tags"][1] y += ","+ data["tags"][2] y += ","+ data["tags"][3] y += ","+ data["tags"][4] y += ","+ data["tags"][5] y += ","+ data["tags"][6] y += ","+ data["tags"][7] y += "\n[1]\nAuthor: "+str(data["list"][0]["author"]) y += "\nWord: "+str(data["list"][0]["word"]) y += "\nLink: "+str(data["list"][0]["permalink"]) y += "\nDefinition: "+str(data["list"][0]["definition"]) y += "\nExample: "+str(data["list"][0]["example"]) line.sendMessage(to, str(y)) elif msg.contentType == 13: if settings["checkContact"] == True: try: contact = line.getContact(msg.contentMetadata["mid"]) if line != None: cover = line.getProfileCoverURL(msg.contentMetadata["mid"]) else: cover = "Tidak dapat masuk di line channel" path = "http://dl.profile.line-cdn.net/{}".format(str(contact.pictureStatus)) try: line.sendImageWithURL(to, str(path)) except: pass ret_ = "[ รายการทั้งหมดจากการสำรวจด้วย คท ]" ret_ += "\n ชื่อ : {}".format(str(contact.displayName)) ret_ += "\n ไอดี : {}".format(str(msg.contentMetadata["mid"])) ret_ += "\n ตัส : {}".format(str(contact.statusMessage)) ret_ += "\n รูปโปรไฟล : http://dl.profile.line-cdn.net/{}".format(str(contact.pictureStatus)) ret_ += "\n  รูปปก : {}".format(str(cover)) ret_ += "\n[ สิ้นสุดการสำรวจ ]" line.sendMessage(to, str(ret_)) except: line.sendMessage(to, "เกิดข้อผิดพลาดในการสำรวจ") elif msg.contentType == 1: if settings["changePictureProfile"] == True: path = line.downloadObjectMsg(msg_id) settings["changePictureProfile"] = False line.updateProfilePicture(path) line.sendMessage(to, "ทำการแปลงโฉมเสร็จเรียบร้อย") if msg.toType == 2: if to in settings["changeGroupPicture"]: path = line.downloadObjectMsg(msg_id) settings["changeGroupPicture"].remove(to) line.updateGroupPicture(to, path) line.sendMessage(to, "เปลี่ยนรูปภาพกลุ่มเรียบร้อยแล้ว") elif msg.contentType == 7: if settings["checkSticker"] == True: stk_id = msg.contentMetadata['STKID'] stk_ver = msg.contentMetadata['STKVER'] pkg_id = msg.contentMetadata['STKPKGID'] ret_ = " 🔷 ระบบเช็คสติ๊กเกอร์เราค่ะ 🔷\n✧••••••••••❂✧✯✧❂••••••••••✧" ret_ += "\n🌟STK IĐ ::: {}".format(stk_id) ret_ += "\n🌟PKG IĐ ::: {}".format(pkg_id) ret_ += "\n🌟STK Vër ::: {}".format(stk_ver) ret_ += "\n✧••••••••••❂✧✯✧❂••••••••••✧\n line://shop/detail/{}".format(pkg_id) line.sendReplyMessage(msg.id,to, str(ret_)) #==============================================================================# if op.type == 19: if lineMID in op.param3: settings["blacklist"][op.param2] = True if op.type == 22: if settings['leaveRoom'] == True: line.leaveRoom(op.param1) if op.type == 24: if settings['leaveRoom'] == True: line.leaveRoom(op.param1) #==============================================================================# #==============================================================================# if op.type == 17: if op.param2 not in Family: if op.param2 in Family: pass if RfuProtect["protect"] == True: if settings["blacklist"][op.param2] == True: try: line.kickoutFromGroup(op.param1,[op.param2]) G = line.getGroup(op.param1) G.preventedJoinByTicket = True line.updateGroup(G) except: try: line.kickoutFromGroup(op.param1,[op.param2]) G = line.getGroup(op.param1) G.preventedJoinByTicket = True line.updateGroup(G) except: pass if op.type == 19: if op.param2 not in Family: if op.param2 in Family: pass elif RfuProtect["protect"] == True: settings ["blacklist"][op.param2] = True random.choice(Rfu).kickoutFromGroup(op.param1,[op.param2]) random.choice(Rfu).inviteIntoGroup(op.param1,[op.param2]) if op.type == 13: if op.param2 not in Family: if op.param2 in Family: pass elif RfuProtect["inviteprotect"] == True: settings ["blacklist"][op.param2] = True random.choice(Rfu).cancelGroupInvitation(op.param1,[op.param3]) random.choice(Rfu).kickoutFromGroup(op.param1,[op.param2]) if op.param2 not in Family: if op.param2 in Family: pass elif RfuProtect["inviteprotect"] == True: settings ["blacklist"][op.param2] = True random.choice(Rfu).cancelGroupInvitation(op.param1,[op.param3]) random.choice(Rfu).kickoutFromGroup(op.param1,[op.param2]) if op.param2 not in Family: if op.param2 in Family: pass elif RfuProtect["cancelprotect"] == True: settings ["blacklist"][op.param2] = True random.choice(Rfu).cancelGroupInvitation(op.param1,[op.param3]) if op.type == 11: if op.param2 not in Family: if op.param2 in Family: pass elif RfuProtect["linkprotect"] == True: settings ["blacklist"][op.param2] = True G = line.getGroup(op.param1) G.preventedJoinByTicket = True line.updateGroup(G) random.choice(Rfu).kickoutFromGroup(op.param1,[op.param2]) if op.type == 5: if RfuProtect["autoAdd"] == True: if (settings["message"] in [""," ","\n",None]): pass else: line.sendMessage(op.param1,str(settings["message"])) if op.type == 11: if RfuProtect["linkprotect"] == True: if op.param2 not in Family: G = line.getGroup(op.param1) G.preventedJoinByTicket = True random.choice(Rfu).updateGroup(G) random.choice(Rfu).kickoutFromGroup(op.param1,[op.param3]) if op.type == 13: if RfuProtect["Protectguest"] == True: if op.param2 not in Family: random.choice(Rfu).cancelGroupInvitation(op.param1,[op.param3]) random.choice(Rfu).kickoutFromGroup(op.param1,[op.param2]) if op.type == 17: if op.param2 in settings["blacklist"] == {}: line.kickoutFromGroup(op.param1,[op.param2]) now2 = datetime.datetime.now() nowT = datetime.datetime.strftime(now2,"%H") nowM = datetime.datetime.strftime(now2,"%M") nowS = datetime.datetime.strftime(now2,"%S") tm = "\n\n"+nowT+":"+nowM+":"+nowS line.sendText(op.param1,"สมาชิกที่ถูกแบนไม่ได้รับอนุญาตให้เข้าร่วมกลุ่ม (´・ω・`)"+tm) if op.type == 17: if RfuProtect["Protectjoin"] == True: if op.param2 not in Family: random.choice(Rfu).kickoutFromGroup(op.param1,[op.param2]) if op.type == 1: if sender in Setmain["foto"]: path = line.downloadObjectMsg(msg_id) del Setmain["foto"][sender] line.updateProfilePicture(path) line.sendMessage(to,"Foto berhasil dirubah") if op.type == 26: msg = op.message text = msg.text msg_id = msg.id receiver = msg.to sender = msg._from if settings ["Aip"] == True: if msg.text in ["cleanse","group cleansed.","mulai",".winebot",".kickall","mayhem","kick on","Kick","!kickall","nuke","บิน","Kick","กระเด็น","หวด","เซลกากจัง","เตะ",".","ปลิว"]: random.choice(Rfu).kickoutFromGroup(receiver,[sender]) random.choice(Rfu).sendText(msg.to,"ตรวจพบคำสั่งของบอทลบกลุ่ม จำเป็นต้องนำออกเพื่อความปลอดภัยของสมาชิก (`・ω・´)") if settings ["Aip"] == True: if msg.text in ["ควย","หี","แตด","เย็ดแม่","เย็ดเข้","ค.วย","สัส","เหี้ย","ไอ้เหี้ย","พ่อมึงตาย","ไอ้เลว","ระยำ","ชาติหมา","หน้าหี","เซลกาก","ไอ้เรส","ไอ้เหี้ยเรส","ไอ่เรส","พ่องตาย","ส้นตีน","แม่มึงอ่ะ","แม่มึงดิ","พ่อมึงดิ"]: random.choice(Rfu).kickoutFromGroup(receiver,[sender]) random.choice(Rfu).sendText(msg.to,"ตรวจพบคำพูดหยาบคายไม่สุภาพ จำเป็นต้องนำออกเพื่อความสงบสุขของสมาชิก (`・ω・´)") if settings ["Api"] == True: if msg.text in ["เอ","ป้าเอ","เอจัง","ชิวารี","น้องเอ","เลียขา","เลขา","ยัยเอ","เขียว","ไอ้เขียว","ไอเขียว","ถั่วเขียว","ทวดเอ","พี่เอ"]: line.sendMessage(msg.to, "✲• Aütó Mëssage •✲") if settings ["Api"] == True: if msg.text in ["Help","help","Help1","Help2","Help3","Help4","Help5","Help6","Help7","คำสั่ง","คำสั่ง1","คำสั่ง2","คำสั่ง3","คำสั่ง4","คำสั่ง5","help1","help2","help3","help4","help5","help6","help7","คำสั่ง6"]: line.sendMessage(msg.to,"✧•••••❂✧A-jańg@API✧❂•••••✧\n ♡ความจำสั้นหรอค่ะ Helpทั้งวัน♡\n✧•••••••••••❂✧✯✧❂••••••••••••✧") # line.sendMessage(msg.to, None, contentMetadata={"STKID":"14134793","STKPKGID":"1356533","STKVER":"2"}, contentType=7) if settings ["Api"] == True: if msg.text in ["ปิดเว้น","ปิดเว้นท์","ปิดอีเว้น","ปิดอีเว้นท์","ปิดอีเวร","ปิดเวร","ปิดจ๊อบ","ปิดเวน","ปิดอีเวน"]: line.sendMessage(msg.to,"❂•เพิ่งปิดหราคะ เต่าล้านปีเอ้ย•❂\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") # line.sendMessage(msg.to, None, contentMetadata={"STKID":"","STKPKGID":"1356533","STKVER":"2"}, contentType=7) if settings ["Api"] == True: if msg.text in ["sp","Sp","Speed","วัดรอบ","speed",".วัดรอบ"]: line.sendMessage(msg.to,"Hî Speëd •➣➣➣➣➣➣➣➣\n❂•สปีดหริอเต่าค่ะ เช็คอยู่ได้•❂\n➣➣➣➣➣➣➣➣•Chiväree™") if settings ["Api"] == True: if msg.text in ["คท","me","Me",".โย่ว","โย่ว","เวลออน",".เวลออน","บอทออน",".บอทออน",".เช็ค","เช็ค","เวลาออน","กู","นช","Runtime","runtime",".ข้อมูล","ข้อมูล",".ออน","ออน",".เชค","เชค","ผส",".ผส","ข้อมูลกลุ่ม",".ข้อมูลกลุ่ม","Status","status","Set","set","Mybot"]: line.sendMessage(msg.to,"เช็คไรหนักหนาค่ะ เช็คสมองบ้าง\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") # line.sendMessage(msg.to, None, contentMetadata={"STKID":"14134793","STKPKGID":"1356533","STKVER":"2"}, contentType=7) if settings ["Api"] == True: if msg.text in [".ไฮโล","เปิดไฮโล","แทงโล","แทงไฮโล","เปิดโล","Hilo","hilo"]: line.sendMessage(msg.to, "✲•เริ่มทำการเขย่าค่ะ•✲") if settings ["Api"] == True: if msg.text in [".เต้าปูปลา",".กุ้งปลา","น้ำเต้าปูปลา","แทงกุ้งปลา","เปิดกุ้งปลา"]: line.sendMessage(msg.to, "✲•เริ่มทำการสุ่มเจ้าค่ะ•✲") if settings ["Api"] == True: if msg.text in ["สต","สต.","ส.ต."]: line.sendMessage(msg.to," ✥✥✥ ส้นตีนหรอค่ะ ✥✥✥\nA~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["ปฎิทิน","ปฏิทิน","แพ้ทาง","191","ยาม","ปะติทิน","ปติทิน",".ปฎิทิน",".ปฏิทิน"]: line.sendMessage(msg.to,"❂•เป็นเพลงของวงลาบานูนค่ะ•❂\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["กินข้าว","ทานข้าว","กินข้าวกัน","ทานข้าวกัน","กินขนมหวาน","กินขนมจีน","กินกล้วยทอด","มาม่า","กินมาม่า","กินขนม","ขนมจีน","กล้วยทอด","ตีน","กินตีน","เมากัน","กินเหล้ากัน","เหล้ากัน","ส้นตีน","ขี้","ขี้หมา","ขี้วัว","ขี้ไก่","กินขี้"]: line.sendMessage(msg.to,"❂•➣➣➣➣➣➣➣➣➣➣➣➣\n กินมา 20กว่าปีล่ะ ไม่เบื่อหรา\n❂•➣➣➣➣➣➣➣➣➣➣➣➣") if settings ["Api"] == True: if msg.text in ["ทำได้ไง","คิดได้ไง","เก่งมาก","ทำไมเก่งจัง","จบได้ไง","เล่นได้ไง"]: line.sendMessage(msg.to,"✧•••••••••❂✧✯✧❂••••••••••✧\n ♡♡ เพราะกูฉลาดค่ะ ♡♡\n✧•••••••••❂✧✯✧❂••••••••••✧") if settings ["Api"] == True: if msg.text in ["คิดตี้","คิตตี้","คิทตี้"]: line.sendMessage(msg.to,"✧•••••••••❂✧✯✧❂••••••••••✧\n ♡♡ HELLO KITTY ♡♡\n✧•••••••••❂✧✯✧❂••••••••••✧") if settings ["Api"] == True: if msg.text in ["ลบแชท",".ลบแชท","ลบรัน",".ลบรัน","ลบกลุ่ม","ลบเพื่อน","ลบข้อความ","ลบดำ",".ลบดำ"]: line.sendMessage(msg.to,"💔ขอลบเทอออกจากใจบ้างนะ💔\n A~jańg@Api ?? " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["ล้างแชท",".ล้างแชท","ล้างรัน"".ล้างรัน","ล้างเพื่อน","ล้างดำ",".ล้างดำ"]: line.sendMessage(msg.to,"❂•ไปล้างที่คาร์แคร์ดิ อีเบื๊อก•❂\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["น่าน"]: line.sendMessage(msg.to,"🌀น่าน คือจ.ในภาคเหนือค่ะ🌀\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["ขอบคุนค่ะ","ขอบคุนครับ","ขอบคุนคับ","ขอบคุนคะ","ขอบคุณ","ขอบคุน","ขอบใจ","ขอบคุณคับ","ขอบคุณคะ","ขอบคุณค่ะ","ใจจ้า","ดีคับ","ดีค่ะ","ดีคะ","ดีคร้า","ดีค้าบ","ดีค้าฟ","มอนิ้ง","มอนิ่ง","ขอบคุณมาก","ขอบคุนมาก","ดียามเช้า","อรุณสวัสดิ์"," ดีจ้า","สวัสดี","สวัสดีค่ะ","สวัสดีคะ","สวัสดีครับ","สวัสดีคับ","สวีดัด","สวัสดีปีใหม่"]: line.sendMessage(msg.to,"❂•• กองไว้ตรงนั้นค่ะ ••❂\n Auto® 🕞 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["สวย","สวยมาก","น่ารักโคตร","โคตรน่ารัก","น่ารักฝุด","น่ารัก","น่ารักอะ","น่ารักอ่ะ"]: line.sendMessage(msg.to,"❂• ขอบคุณนะค่ะที่ชม •❂\n ՃิՁণຮี➣🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["หลาบ","หลาบขี้","หรอย","หรอยแรง","หรอยคาด","หรอยหนัด","ทำพือ","ว่าพือ","ไม่พือ"]: line.sendMessage(msg.to,"❂• แหลงใต้กันหล่าวโหม๋โส •❂\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["เยส","เยสสส","เยสส","เยสสสสส","เยสสสส","เงี่ยน","เงี่ยนชิบ","เงี่ยนโว้ย","เงี่ยนโว้ยยย","เงี่ยนวะ","กูเงี่ยน","เงี่ยนเว้ย"]: line.sendMessage(msg.to,"❂❂•ก็ไปเยสกับรถถังสิค่ะ•❂❂\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["บอท","Bot","bot","คนหรือบอท","บอทหรอ","คนหรอบอท","บอทป่าว","บอทป่ะ","เชล","เชลบอท","บอทตาย"]: line.sendMessage(msg.to,"❂•เรื่องบอทญาญ่าจะไม่ยุ่งค่ะ•❂\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["ดึง","ฝากดึง","ดึงที","ฝากดึงที","ดึงหน่อย"]: line.sendMessage(msg.to,"❂•ไม่ดึงนะค่ะ ไม่อยากรู้จัก•❂\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')) if settings ["Api"] == True: if msg.text in ["รอ","รอๆ","รอนะ","จะรอ","รออยู่","รอยู่","แปป","รอแปป","แปปปป","แปปป","แปปนึงคับ","แปปนึง","รอแปปค่ะ","แปปค่ะ","แปปคับ","แปปคะ","แปปครับ","แปปๆ","แป๊ป","แปปนะ","แปปน่ะ"]: line.sendMessage(msg.to,"❂•ไม่นานคร้า แค่8ชั่วโมงเอง•❂\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["เปิดเสือก",".เปิดเสือก","เปิดเผือก",".เปิดเผือก"]: line.sendMessage(msg.to,"❂•คุณคือแชมป์เสือกประจำปีค่ะ•❂\n A~jańg:@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if settings ["Api"] == True: if msg.text in ["หลุด"]: line.sendMessage(msg.to,"✥•✥ กางเกงหลุดหราค่ะ ✥•✥\n A~jańg@Api 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™") if op.type in [25,26]: msg = op.message if msg.contentType == 16: if settings["checkPost"] == True: try: ret_ = "[ ข้อมูลของโพสนี้ ]" if msg.contentMetadata["serviceType"] == "GB": contact = line.getContact(sender) auth = "\n  ผู้เขียนโพส : {}".format(str(contact.displayName)) else: auth = "\n  ผู้เขียนโพส : {}".format(str(msg.contentMetadata["serviceName"])) purl = "\n  ลิ้งโพส : {}".format(str(msg.contentMetadata["postEndUrl"]).replace("line://","https://line.me/R/")) ret_ += auth ret_ += purl if "mediaOid" in msg.contentMetadata: object_ = msg.contentMetadata["mediaOid"].replace("svc=myhome|sid=h|","") if msg.contentMetadata["mediaType"] == "V": if msg.contentMetadata["serviceType"] == "GB": ourl = "\n  Objek URL : https://obs-us.line-apps.com/myhome/h/download.nhn?tid=612w&{}".format(str(msg.contentMetadata["mediaOid"])) murl = "\n  Media URL : https://obs-us.line-apps.com/myhome/h/download.nhn?{}".format(str(msg.contentMetadata["mediaOid"])) else: ourl = "\n  Objek URL : https://obs-us.line-apps.com/myhome/h/download.nhn?tid=612w&{}".format(str(object_)) murl = "\n  Media URL : https://obs-us.line-apps.com/myhome/h/download.nhn?{}".format(str(object_)) ret_ += murl else: if msg.contentMetadata["serviceType"] == "GB": ourl = "\n Objek URL : https://obs-us.line-apps.com/myhome/h/download.nhn?tid=612w&{}".format(str(msg.contentMetadata["mediaOid"])) else: ourl = "\n Objek URL : https://obs-us.line-apps.com/myhome/h/download.nhn?tid=612w&{}".format(str(object_)) ret_ += ourl if "stickerId" in msg.contentMetadata: stck = "\n  Stiker : https://line.me/R/shop/detail/{}".format(str(msg.contentMetadata["packageId"])) ret_ += stck if "text" in msg.contentMetadata: text = "\n ข้อความโดยย่อ : {}".format(str(msg.contentMetadata["text"])) ret_ += text ret_ += "\n[ สิ้นสุดการเช็คโพส ]" line.sendMessage(to, str(ret_)) except: line.sendMessage(to, "เกิดข้อผิดะลาดในการเช็คโพสนี้") if op.type == 26: msg = op.message text = msg.text msg_id = msg.id receiver = msg.to sender = msg._from if msg.toType == 0 or msg.toType == 1 or msg.toType == 2: if msg.toType == 0: if sender != line.profile.mid: to = sender else: to = receiver elif msg.toType == 1: to = receiver elif msg.toType == 2: to = receiver if settings["autoRead"] == True: line.sendChatChecked(to, msg_id) if to in read["readPoint"]: if sender not in read["ROM"][to]: read["ROM"][to][sender] = True if sender in settings["mimic"]["target"] and settings["mimic"]["status"] == True and settings["mimic"]["target"][sender] == True: text = msg.text if text is not None: line.sendMessage(msg.to,text) elif msg.contentType == 7: if settings["checkSticker"] == True: try: stk_id = msg.contentMetadata['STKID'] stk_ver = msg.contentMetadata['STKVER'] pkg_id = msg.contentMetadata['STKPKGID'] ret_ = "🔶ระบบเช็คสติ๊กเกอร์เพื่อนค่ะ🔶\n✧••••••••••❂✧✯✧❂••••••••••✧" ret_ += "\n🌟STK IĐ ::: {}".format(stk_id) ret_ += "\n🌟PKG IĐ ::: {}".format(pkg_id) ret_ += "\n🌟STK Vër ::: {}".format(stk_ver) ret_ += "\n✧••••••••••❂✧✯✧❂••••••••••✧\n line://shop/detail/{}".format(pkg_id) print(msg) line.sendImageWithURL(to, "http://dl.stickershop.line.naver.jp/products/0/0/"+msg.contentMetadata["STKVER"]+"/"+msg.contentMetadata["STKPKGID"]+"/WindowsPhone/stickers/"+msg.contentMetadata["STKID"]+".png") line.sendReplyMessage(msg.id,to, str(ret_)) except Exception as error: line.sendMessage(to, str(error)) if settings["unsendMessage"] == True: try: msg = op.message if msg.toType == 0: line.log("[{} : {}]".format(str(msg._from), str(msg.text))) else: line.log("[{} : {}]".format(str(msg.to), str(msg.text))) msg_dict[msg.id] = {"text": msg.text, "from": msg._from, "createdTime": msg.createdTime, "contentType": msg.contentType, "contentMetadata": msg.contentMetadata} except Exception as error: logError(error) if msg.contentType == 0: if text is None: return if "/ti/g/" in msg.text.lower(): if settings["autoJoinTicket"] == True: link_re = re.compile('(?:line\:\/|line\.me\/R)\/ti\/g\/([a-zA-Z0-9_-]+)?') links = link_re.findall(text) n_links = [] for l in links: if l not in n_links: n_links.append(l) for ticket_id in n_links: group = line.findGroupByTicket(ticket_id) line.acceptGroupInvitationByTicket(group.id,ticket_id) line.sendMessage(to, "มุดลิ้งเข้าไปในกลุ่ม👉 %s 👈 เรียบร้อยแล้ว" % str(group.name)) if msg.contentType == 0 and sender not in lineMID and msg.toType == 2: if "MENTION" in msg.contentMetadata.keys() != None: if settings['kickMention'] == True: contact = line.getContact(msg._from) cName = contact.displayName balas = ["เนื่องจากตอนนี้ผมเปิดระบบเตะคนแทคไว้ " + "\n👉" + cName + "\n🙏ต้องขออภัยด้วยจริงๆ🙏Bye!!!"] ret_ = "" + random.choice(balas) name = re.findall(r'@(\w+)', msg.text) mention = ast.literal_eval(msg.contentMetadata["MENTION"]) mentionees = mention["MENTIONEES"] for mention in mentionees: if mention['M'] in admin: line.sendText(msg.to,ret_) random.choice(Rfu).kickoutFromGroup(msg.to,[msg._from]) break if mention['M'] in lineMID: line.sendText(msg.to,ret_) random.choice(Rfu).kickoutFromGroup(msg.to,[msg._from]) break if msg.contentType == 0 and sender not in lineMID and msg.toType == 2: if "MENTION" in list(msg.contentMetadata.keys())!= None: if settings['potoMention'] == True: contact = line.getContact(msg._from) cName = contact.pictureStatus mi_d = contact.mid balas = ["http://dl.profile.line-cdn.net/" + cName] ret_ = random.choice(balas) mention = ast.literal_eval(msg.contentMetadata["MENTION"]) mentionees = mention["MENTIONEES"] for mention in mentionees: if mention["M"] in lineMID: line.sendImageWithURL(to,ret_) # line.sendContact(msg.to, mi_d) # line.sendMessage(msg.to, None, contentMetadata={"STKID":"2654757","STKPKGID":"1064185","STKVER":"2"}, contentType=7) break if msg.contentType == 0 and sender not in lineMID and msg.toType == 2: if "MENTION" in list(msg.contentMetadata.keys()) != None: if settings['detectMention'] == True: contact = line.getContact(msg._from) cName = contact.displayName chivareeZ = [' 💔💔💔- ว่างหรอค่ะ -💔💔💔',' 💚💚💚- ว่างหรอค่ะ -💚💚💚',' 💜💜💜- ว่างหรอค่ะ -💜💜💜',' 💙💙💙- ว่างหรอค่ะ -💙💙💙',' 💛💛💛- ว่างหรอค่ะ -💛💛💛',' 🔶🔶🔶- ว่างหรอค่ะ -🔶🔶🔶',' 🔷🔷🔷- ว่างหรอค่ะ -🔷🔷🔷',' 🌟🌟🌟- ว่างหรอค่ะ -🌟🌟🌟',' 💗💗💗- ว่างหรอค่ะ -💗💗💗',' 💘💘💘- ว่างหรอค่ะ -💘💘💘'] chivareeV = [' น้องไปเล่นดีดลูกแก้วตรงโน้นน่ะ',' น้องไปเล่นกะโดดยางตรงโน้นน่ะ',' พี่ไม่ว่างนะค่ะขับเครื่องบินอยู่ค่ะ',' น้องไปเล่นขี้ตรงโน้นน่ะพี่ไม่ว่าง',' ไปเล่นขี้พลางๆนะค่ะพี่ยังไม่ว่าง',' พี่ขับเครื่องบินอยู่ค่ะไม่ว่างตอบ',' ไม่ว่างค่ะให้อาหารไดโนเสาร์อยู่',' สร้างแลนมาร์คอยู่ไม่ว่างตอบค่ะ',' ไม่ว่างเล่นด้วยนะขัดสนิมปืนอยู่',' พี่ขัดปืนอยู่ ไว้ยิงพวกชอบแทค',' มีไรค่ะเตะหน้าพวกชอบแทคอยู่',' น้องไปเล่นหมากเก็บตรงโน้นน่ะ'] ret_ = "✧••••••••••❂✧✯✧❂••••••••••✧\n" + random.choice(chivareeZ) + "\n✧••••••••••❂✧✯✧❂••••••••••✧\n" + random.choice(chivareeV) + "\n ➤ " + cName name = re.findall(r'@(\w+)', msg.text) mention = ast.literal_eval(msg.contentMetadata["MENTION"]) mentionees = mention['MENTIONEES'] for mention in mentionees: if mention['M'] in lineMID: line.sendMessage(to,ret_) line.sendMessage(to,str(settings["Respontag"])) break if msg.contentType == 0 and sender not in lineMID and msg.toType == 2: if "MENTION" in list(msg.contentMetadata.keys()) != None: if settings['delayMention'] == True: contact = line.getContact(msg._from) cName = contact.displayName name = re.findall(r'@(\w+)', msg.text) mention = ast.literal_eval(msg.contentMetadata["MENTION"]) mentionees = mention['MENTIONEES'] for mention in mentionees: if mention['M'] in lineMID: sendMessageWithMention(to, contact.mid) sendMessageWithMention(to, contact.mid) sendMessageWithMention(to, contact.mid) sendMessageWithMention(to, contact.mid) sendMessageWithMention(to, contact.mid) sendMessageWithMention(to, contact.mid) sendMessageWithMention(to, contact.mid) sendMessageWithMention(to, contact.mid) sendMessageWithMention(to, contact.mid) sendMessageWithMention(to, contact.mid) break if op.type == 26: msg = op.message text = msg.text msg_id = msg.id receiver = msg.to sender = msg._from if msg.toType == 0 or msg.toType == 2: if msg.toType == 0: to = sender elif msg.toType == 2: to = receiver if msg.contentType == 0: if settings["unsendMessage"] == True: try: if msg.location != None: unsendmsg = time.time() msg_dict[msg.id] = {"lokasi":msg.location,"from":msg._from,"waktu":unsendmsg} else: unsendmsg = time.time() msg_dict[msg.id] = {"text":msg.text,"from":msg._from,"waktu":unsendmsg} except Exception as e: print (e) if msg.contentType == 1: if settings["unsendMessage"] == True: try: unsendmsg1 = time.time() path = line.downloadObjectMsg(msg_id) msg_dict[msg.id] = {"from":msg._from,"image":path,"waktu":unsendmsg1} except Exception as e: print (e) if msg.contentType == 2: if settings["unsendMessage"] == True: try: unsendmsg2 = time.time() path = line.downloadObjectMsg(msg_id) msg_dict[msg.id] = {"from":msg._from,"video":path,"waktu":unsendmsg2} except Exception as e: print (e) if msg.contentType == 3: if settings["unsendMessage"] == True: try: unsendmsg3 = time.time() path = line.downloadObjectMsg(msg_id) msg_dict[msg.id] = {"from":msg._from,"audio":path,"waktu":unsendmsg3} except Exception as e: print (e) if msg.contentType == 7: if settings["unsendMessage"] == True: try: unsendmsg7 = time.time() sticker = msg.contentMetadata["STKID"] link = "http://dl.stickershop.line.naver.jp/stickershop/v1/sticker/{}/android/sticker.png".format(sticker) msg_dict[msg.id] = {"from":msg._from,"sticker":link,"waktu":unsendmsg7} except Exception as e: print (e) if msg.contentType == 13: if settings["unsendMessage"] == True: try: unsendmsg13 = time.time() mid = msg.contentMetadata["mid"] msg_dict[msg.id] = {"from":msg._from,"mid":mid,"waktu":unsendmsg13} except Exception as e: print (e) if msg.contentType == 14: if settings["unsendMessage"] == True: try: unsendmsg14 = time.time() path = line.downloadObjectMsg(msg_id) msg_dict[msg.id] = {"from":msg._from,"file":path,"waktu":unsendmsg14} except Exception as e: print (e) #==============================================================================# if op.type == 65: print ("[ 65 ] NOTIFIED DESTROY MESSAGE") if settings["unsendMessage"] == True: at = op.param1 msg_id = op.param2 if msg_id in msg_dict: ah = time.time() ikkeh = line.getContact(msg_dict[msg_id]["from"]) if "text" in msg_dict[msg_id]: waktumsg = ah - msg_dict[msg_id]["waktu"] waktumsg = format_timespan(waktumsg) rat_ = "\n♡• สปีด {}".format(waktumsg) rat_ += "\n♡• ได้ยกเลิกคำว่า🌀...." rat_ += "\n 👉 {}".format(msg_dict[msg_id]["text"]) rat_ += "\n♡• ณ.เวลา 🕚 " +datetime.today().strftime('%H:%M:%S')+ "™" line.sendMessage(at, "🔷•🔷•🔷•🔷•🔷•🔷•🔷•🔷•🔷\n 🌟 พบการยกเลิกข้อความค่ะ 🌟\n🔷•🔷•🔷•🔷•🔷•🔷•🔷•🔷•🔷\n\n♡• ชื่อ {}".format(str(ikkeh.displayName) + str(rat_))) # sendMention(at, ikkeh.mid, "** ตรวจพบการยกเลิกข้อความ **\n\nMaker :\n", str(rat_)) del msg_dict[msg_id] else: if "image" in msg_dict[msg_id]: waktumsg = ah - msg_dict[msg_id]["waktu"] waktumsg = format_timespan(waktumsg) rat_ = "\n♡• สปีด {}".format(waktumsg) rat_ += "\n♡• ณ.เวลา 🕚 " +datetime.today().strftime('%H:%M:%S')+ "™" line.sendMessage(at, "🔶•🔶•🔶•🔶•🔶•🔶•🔶•🔶•🔶\n 💗 พบการยกเลิกรูปภาพค่ะ 💗\n🔶•🔶•🔶•🔶•🔶•🔶•🔶•🔶•🔶\n\n♡• ชื่อ {}".format(str(ikkeh.displayName) + str(rat_))) line.sendImage(at, msg_dict[msg_id]["image"]) del msg_dict[msg_id] else: if "video" in msg_dict[msg_id]: waktumsg = ah - msg_dict[msg_id]["waktu"] waktumsg = format_timespan(waktumsg) rat_ = "\n♡• สปีด {}".format(waktumsg) rat_ += "\n♡• ณ.เวลา 🕚 " +datetime.today().strftime('%H:%M:%S')+ "™" line.sendMessage(at, "💔•💔•💔•💔•💔•💔•💔•💔•💔\n 🌟พบการยกเลิกคลิปวีดีโอค่ะ🌟\n💔•💔•💔•💔•💔•💔•💔•💔•💔\n\n♡• ชื่อ {}".format(str(ikkeh.displayName) + str(rat_))) line.sendVideo(at, msg_dict[msg_id]["video"]) del msg_dict[msg_id] else: if "audio" in msg_dict[msg_id]: waktumsg = ah - msg_dict[msg_id]["waktu"] waktumsg = format_timespan(waktumsg) rat_ = "\n♡• สปีด {}".format(waktumsg) rat_ += "\n♡• ณ.เวลา 🕚 " +datetime.today().strftime('%H:%M:%S')+ "™" line.sendMessage(at, "💙•💜•💙•💜•💙•💜•💙•💜•💙\n 🎧พบการยกเลิกไฟล์เสียงค่ะ🎧\n💙•💜•💙•💜•💙•💜•💙•💜•💙\n\n♡• ชื่อ {}".format(str(ikkeh.displayName) + str(rat_))) line.sendAudio(at, msg_dict[msg_id]["audio"]) del msg_dict[msg_id] else: if "sticker" in msg_dict[msg_id]: waktumsg = ah - msg_dict[msg_id]["waktu"] waktumsg = format_timespan(waktumsg) rat_ = "\n♡• สปีด {}".format(waktumsg) rat_ += "\n♡• ณ.เวลา 🕚 " +datetime.today().strftime('%H:%M:%S')+ "™" line.sendMessage(at, "💘•💘•💘•💘•💘•💘•💘•💘•💘\n 💛พบการยกเลิกสติ๊กเกอร์ค่ะ💛\n💘•💘•💘•💘•💘•💘•💘•💘•💘\n\n♡• ชื่อ {}".format(str(ikkeh.displayName) + str(rat_))) line.sendImageWithURL(at, msg_dict[msg_id]["sticker"]) del msg_dict[msg_id] else: if "mid" in msg_dict[msg_id]: waktumsg = ah - msg_dict[msg_id]["waktu"] waktumsg = format_timespan(waktumsg) rat_ = "\n♡• สปีด {}".format(waktumsg) rat_ += "\n♡• ณ.เวลา 🕚 " +datetime.today().strftime('%H:%M:%S')+ "™" line.sendMessage(at, "💙•💙•💙•💙•💙•💙•💙•💙•💙\n 💘พบการยกเลิกคอนแท็คค่ะ💘\n💙•💙•💙•💙•💙•💙•💙•💙•💙\n\n♡• ชื่อ {}".format(str(ikkeh.displayName) + str(rat_))) line.sendContact(at, msg_dict[msg_id]["mid"]) del msg_dict[msg_id] else: if "lokasi" in msg_dict[msg_id]: waktumsg = ah - msg_dict[msg_id]["waktu"] waktumsg = format_timespan(waktumsg) rat_ = "\n♡• สปีด {}".format(waktumsg) rat_ += "\n♡• ณ.เวลา 🕚 " +datetime.today().strftime('%H:%M:%S')+ "™" line.sendMessage(at, "🔶•🔶•🔶•🔶•🔶•🔶•🔶•🔶•🔶\n 🌎 พบการยกเลิกโลเคชั่นค่ะ 🌎\n🔶•🔶•🔶•🔶•🔶•🔶•🔶•🔶•🔶\n\n♡• ชื่อ {}".format(str(ikkeh.displayName) + str(rat_))) line.sendLocation(at, msg_dict[msg_id]["lokasi"]) del msg_dict[msg_id] else: if "file" in msg_dict[msg_id]: waktumsg = ah - msg_dict[msg_id]["waktu"] waktumsg = format_timespan(waktumsg) rat_ = "\n♡• สปีด {}".format(waktumsg) rat_ += "\n♡• ณ.เวลา 🕚 " +datetime.today().strftime('%H:%M:%S')+ "™" line.sendMessage(at, "💘•💘•💘•💘•💘•💘•💘•💘•💘\n🌟พบการยกเลิกไฟล์ข้อมูลค่ะ🌟\n💘•💘•💘•💘•💘•💘•💘•💘•💘\n\n♡• ชื่อ {}".format(str(ikkeh.displayName) + str(rat_))) line.sendFile(at, msg_dict[msg_id]["file"]) del msg_dict[msg_id] else: line.sendMessage(at, "✧•••••••••••❂✧✯✧❂•••••••••••✧\n 🔶พบการยกเลิกข้อความค่ะ🔶\n ✯͜͡✯•ֆҽℓƒ-β❂T-ՃิՁণຮี•✯͜͡✯\n✧•••••••••••❂✧✯✧❂•••••••••••✧") if op.type == 17: print ("MEMBER JOIN TO GROUP") if settings["Wc"] == True: if op.param2 in lineMID: return dan = line.getContact(op.param2) tgb = line.getGroup(op.param1) chivaree = [' 💛💛 HEŁŁO KITTY 💛💛',' 💔💔 HEŁŁO KITTY 💔💔',' 💜💜 HEŁŁO KITTY 💜💜',' 💙💙 HEŁŁO KITTY 💙💙',' 💚💚 HEŁŁO KITTY 💚💚',' 🔶🔶 HEŁŁO KITTY🔶🔶',' 🌟🌟HEŁŁO KITTY 🌟🌟',' 🔷🔷HEŁŁO KITTY 🔷🔷'] ajang = ['💕💕 •ֆҽℓƒ-β❂T-ՃิՁণຮี• 💕💕','💓💓 •ֆҽℓƒ-β❂T-ՃิՁণຮี• 💓💓','💗💗 •ֆҽℓƒ-β❂T-ՃิՁণຮี• 💗💗','💞💞 •ֆҽℓƒ-β❂T-ՃิՁণຮี• 💞💞','💘💘 •ֆҽℓƒ-β❂T-ՃิՁণຮี• 💘💘'] line.sendMessage(op.param1, str(settings["welcome"]) + "\n" + str(random.choice(chivaree)) +"\n✧••••••••••❂✧✯✧❂••••••••••✧\n •➣ {}\n •➣ {}".format(str(dan.displayName),str(tgb.name))) line.sendContact(op.param1, op.param2) # line.sendMessage(op.param1,"สเตตัส\n{}".format(str(dan.statusMessage))) line.sendImageWithURL(op.param1, "http://dl.profile.line-cdn.net{}".format(dan.picturePath)) line.sendMessage(op.param1, str(random.choice(ajang))) if op.type == 19: print ("MEMBER KICKOUT TO GROUP") if settings["Nk"] == True: if op.param2 in lineMID: return dan = line.getContact(op.param2) tgb = line.getGroup(op.param1) line.sendMessage(op.param1,str(settings["kick"]) + "\n -Auto Kick:- 🕒 " +datetime.today().strftime('%H:%M:%S')+ "™\n✧••••••••••❂✧✯✧❂•••••••••••✧\n 🌟เป็นฟรีคิกที่งดงามมากค่ะ🌟\n •➤ {}".format(str(dan.displayName))) # line.sendContact(op.param1, op.param2) # line.sendMessage(op.param1,"สเตตัส\n{}".format(str(dan.statusMessage))) line.sendImageWithURL(op.param1, "http://dl.profile.line-cdn.net{}".format(dan.picturePath)) if op.type == 15: print ("MEMBER LEAVE TO GROUP") if settings["Lv"] == True: if op.param2 in lineMID: return dan = line.getContact(op.param2) tgb = line.getGroup(op.param1) chivaree6 = ['••••••••❂•💔• R.I.P •💔•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•🔷•🔶•🔶•🔷•❂••••••••','••••••••❂•🔷• R.I.P •🔷•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•💔•🌟•🌟•💔•❂••••••••','••••••••❂•🔶• R.I.P •🔶•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•💜•💛•💛•💜•❂••••••••','••••••••❂•🔶• R.I.P •🔶•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•💚•🌟•🌟•💚•❂••••••••','••••••••❂•🔶• R.I.P •🔶•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•💜•🔷•🔷•💜•❂••••••••','••••••••❂•🌟• R.I.P •🌟•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•🔶•🔷•🔷•🔶•❂••••••••','••••••••❂•♥• R.I.P •♥•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•⭐•⭐•⭐•⭐•❂••••••••','••••••••❂•🌟• R.I.P •🌟•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•💜•💙•💙•💜•❂••••••••','••••••••❂•🔶• R.I.P •🔶•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•💜•💙•💙•💜•❂••••••••','••••••••❂•🔷• R.I.P •🔷•❂••••••••\n ✥ อาล้ยยิ่งกับการจากไป ✥\n••••••••❂•💚•💛•💛•💚•❂••••••••'] # line.sendMessage(op.param1,str(settings["bye"]) + "\n R.I.P. ณ. เวลา 🕟 " +datetime.today().strftime('%H:%M:%S')+ "™\n❂•➤➤➤➤➤➤➤➤➤➤➤➤\n ✥อาล้ยยิ่งกับการจากไป✥\n •➣ {}\n •➣ {}".format(str(dan.displayName),str(tgb.name))) # line.sendMessage(op.param1, str(random.choice(chivaree6)) + "\n•ชื่อ• {}\n•เวลา• {}".format(str(dan.displayName),str(tgb.name))) line.sendMessage(op.param1, str(random.choice(chivaree6)) + "\n•ชื่อ• {}".format(str(dan.displayName)) + "\n•เวลา• [" +datetime.today().strftime('%H:%M:%S')+ "] ณ.วัดท่าเคย\n•เจ้าภาพร่วม• คุณเอจัง") line.sendContact(op.param1, op.param2) line.sendImageWithURL(op.param1, "http://dl.profile.line-cdn.net{}".format(dan.picturePath)) if op.type == 55: try: if RfuCctv['cyduk'][op.param1]==True: if op.param1 in RfuCctv['point']: Name = line.getContact(op.param2).displayName if Name in RfuCctv['sidermem'][op.param1]: pass else: RfuCctv['sidermem'][op.param1] += "\n🔰" + Name pref=[' 🍺ไวนะเทอ อ่านคนแรกเลย',' 🔍: เทพเจ้าแห่งการอ่าน',' 🎖แชมป์อ่าน 8 สมัยมาแว้ว',' 👉 ฮั่นแน่..เค้ารู้ทันนะ',' 🌀อ่านอย่างเดียวเลยนะค่ะ',' 👉: อ๊ะอ๊ะ!! ตาวิเศษเห็นน่ะ..',' 🕣:ออกมาคุยกันหน่อย อิอิ'] chivaree = [' 💛💛 HEŁŁO KITTY 💛💛',' 💘💘 HEŁŁO KITTY 💘💘',' 💔💔 HEŁŁO KITTY 💔💔',' 💜💜 HEŁŁO KITTY 💜💜',' 💙💙 HEŁŁO KITTY 💙💙',' 💚💚 HEŁŁO KITTY 💚💚',' ♡♡ HEŁŁO KITTY ♡♡',' 💗💗 HEŁŁO KITTY 💗💗'] sendMessageWithMention(op.param1, op.param2) line.sendMessage(op.param1,"✧••••••••••❂✧✯✧❂••••••••••✧\n" + str(random.choice(chivaree)) + "\n✧••••••••••❂✧✯✧❂••••••••••✧\n" + str(random.choice(pref))) line.sendContact(op.param1, op.param2) else: pass else: pass except: pass if op.type == 55: try: if RfuCctv['cyduk'][op.param1]==True: if op.param1 in RfuCctv['point']: Name = line.getContact(op.param2).displayName if Name in RfuCctv['sidermem'][op.param1]: pass else: RfuCctv['sidermem'][op.param1] += "\n⌬ " + Name + "\n╚════════════════┛" if " " in Name: nick = Name.split(' ') if len(nick) == 2: line.sendMessage(op.param1, "Nah " +nick[0]) summon(op.param1, [op.param2]) else: pass else: pass except: pass if op.type == 55: print (" ╬╬♡•ຟနุ้७ຟနิ้७•♡╬╬ ") try: if op.param1 in read['readPoint']: if op.param2 in read['readMember'][op.param1]: pass else: read['readMember'][op.param1] += op.param2 read['ROM'][op.param1][op.param2] = op.param2 backupData() else: pass except: pass except Exception as error: logError(error) #==============================================================================# def a2(): now2 = datetime.now() nowT = datetime.strftime(now2,"%M") if nowT[14:] in ["10","20","30","40","50","00"]: return False else: return True while True: try: ops = oepoll.singleTrace(count=5) if ops is not None: for op in ops: lineBot(op) oepoll.setRevision(op.revision) except Exception as e: logError(e) def atend(): print("Saving") with open("Log_data.json","w",encoding='utf8') as f: json.dump(msg_dict, f, ensure_ascii=False, indent=4,separators=(',', ': ')) print("BYE") atexit.register(atend)
81dbb46e91e62093f5b7c5b4d0d6aa967f7e3f03
d40c5de528cb43b3c6570bc5faeafca5c18e49b5
/wikinow/views.py
d1fd3c59d8c14c7846c4fe3b686b50f64464eeaa
[]
no_license
yuchaozh/WikiNow
c50296c57d27ca77b712ba726ad3dbc9140b25f8
f6eecd69af8251de20da2c18c4d436922aacab43
refs/heads/master
2021-01-16T19:29:23.804765
2014-06-04T21:23:15
2014-06-04T21:23:15
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,356
py
from django.shortcuts import render # from .models import Page import grab_articles, alchemy_category, news_links, wiki_category def extract_title(whole_title): if "..." in whole_title: sub_title = whole_title.split("...") elif "-" in whole_title: sub_title = whole_title.split("-") title = sub_title[0].rstrip() return title def home(request): url = 'http://tools.wmflabs.org/wikitrends/english-uptrends-today.html' url_most_visited = 'http://tools.wmflabs.org/wikitrends/english-most-visited-this-week.html' url_downtrends = 'http://tools.wmflabs.org/wikitrends/english-downtrends-this-week.html' result = grab_articles.get_articles(url, 'true') # does not grab news articles or categories for most_visited or downtrends most_visited = grab_articles.get_articles(url_most_visited, 'false') downtrends = grab_articles.get_articles(url_downtrends, 'false') for x in result: titles_content = '' x['external'] = (news_links.getLinks(x['titles'], 'true')) array = x['external'] # get wiki categories # x['cat'] = wiki_category.get_wiki_category(x['titles'],array) # get alchemy categories for y in array: title = extract_title(y['external_title']) titles_content = titles_content + title + '. ' x['category'] = (alchemy_category.getCategory(titles_content)) return render(request, 'wikinow/index.html', locals())
971b10ea19c5d1463cb92b153dc361635405f186
80b7f2a10506f70477d8720e229d7530da2eff5d
/ixnetwork_restpy/testplatform/sessions/ixnetwork/vport/protocolstack/dcbxtlv_37d6aa3b470efb288cbc76a9c77c1804.py
d458b4bd197b07612fdfe9f43e94db2631f8cae0
[ "MIT" ]
permissive
OpenIxia/ixnetwork_restpy
00fdc305901aa7e4b26e4000b133655e2d0e346a
c8ecc779421bffbc27c906c1ea51af3756d83398
refs/heads/master
2023-08-10T02:21:38.207252
2023-07-19T14:14:57
2023-07-19T14:14:57
174,170,555
26
16
MIT
2023-02-02T07:02:43
2019-03-06T15:27:20
Python
UTF-8
Python
false
false
18,046
py
# MIT LICENSE # # Copyright 1997 - 2020 by IXIA Keysight # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. import sys from ixnetwork_restpy.base import Base from ixnetwork_restpy.files import Files if sys.version_info >= (3, 5): from typing import List, Any, Union class DcbxTlv(Base): """DCBX TLV (Type-Length-Value) The DcbxTlv class encapsulates a list of dcbxTlv resources that are managed by the user. A list of resources can be retrieved from the server using the DcbxTlv.find() method. The list can be managed by using the DcbxTlv.add() and DcbxTlv.remove() methods. """ __slots__ = () _SDM_NAME = "dcbxTlv" _SDM_ATT_MAP = { "Enabled": "enabled", "Error": "error", "ErrorOverride": "errorOverride", "FeatureEnable": "featureEnable", "FeatureType": "featureType", "MaxVersion": "maxVersion", "Name": "name", "ObjectId": "objectId", "SubType": "subType", "Willing": "willing", } _SDM_ENUM_MAP = {} def __init__(self, parent, list_op=False): super(DcbxTlv, self).__init__(parent, list_op) @property def TlvSettings(self): """ Returns ------- - obj(ixnetwork_restpy.testplatform.sessions.ixnetwork.vport.protocolstack.tlvsettings_9ee7f0bbd6252892487709b1e2bd344a.TlvSettings): An instance of the TlvSettings class Raises ------ - ServerError: The server has encountered an uncategorized error condition """ from ixnetwork_restpy.testplatform.sessions.ixnetwork.vport.protocolstack.tlvsettings_9ee7f0bbd6252892487709b1e2bd344a import ( TlvSettings, ) if len(self._object_properties) > 0: if self._properties.get("TlvSettings", None) is not None: return self._properties.get("TlvSettings") return TlvSettings(self)._select() @property def Enabled(self): # type: () -> bool """ Returns ------- - bool: Specifies if this TLV is used in the configuration. """ return self._get_attribute(self._SDM_ATT_MAP["Enabled"]) @Enabled.setter def Enabled(self, value): # type: (bool) -> None self._set_attribute(self._SDM_ATT_MAP["Enabled"], value) @property def Error(self): # type: () -> bool """ Returns ------- - bool: Indicates that an error has occurred during the configuration exchange with the peer. """ return self._get_attribute(self._SDM_ATT_MAP["Error"]) @Error.setter def Error(self, value): # type: (bool) -> None self._set_attribute(self._SDM_ATT_MAP["Error"], value) @property def ErrorOverride(self): # type: () -> bool """ Returns ------- - bool: True to override the error bit. """ return self._get_attribute(self._SDM_ATT_MAP["ErrorOverride"]) @ErrorOverride.setter def ErrorOverride(self, value): # type: (bool) -> None self._set_attribute(self._SDM_ATT_MAP["ErrorOverride"], value) @property def FeatureEnable(self): # type: () -> bool """ Returns ------- - bool: Indicates whether the DCB feature is enabled or not. """ return self._get_attribute(self._SDM_ATT_MAP["FeatureEnable"]) @FeatureEnable.setter def FeatureEnable(self, value): # type: (bool) -> None self._set_attribute(self._SDM_ATT_MAP["FeatureEnable"], value) @property def FeatureType(self): # type: () -> int """ Returns ------- - number: Type code of the DCB Feature. The codes translate to: 2 - Priority Group 3 - PFC 4 - Application (IEEE 1.01) / Custom(BCN) (Intel 1.0) 5 - Custom (IEEE 1.01) / FCoE (Intel 1.0) 6 - Custom (IEEE 1.01) / Logical Link (Intel 1.0) 7 - NIV 8 - Custom (IEEE 1.01 / Intel 1.0) 9/10 - Custom (IEEE 1.01 / Intel 1.0) / ETS Configuration/Recommendation (802.1Qaz) 11 - Custom (IEEE 1.01 / Intel 1.0) / PFC (802.1Qaz) 12 - Custom (IEEE 1.01 / Intel 1.0) / Application Priority (802.1Qaz) 13 to 127 - Custom (IEEE 1.01 / Intel 1.0) """ return self._get_attribute(self._SDM_ATT_MAP["FeatureType"]) @FeatureType.setter def FeatureType(self, value): # type: (int) -> None self._set_attribute(self._SDM_ATT_MAP["FeatureType"], value) @property def MaxVersion(self): # type: () -> int """ Returns ------- - number: Highest feature version supported by the system. """ return self._get_attribute(self._SDM_ATT_MAP["MaxVersion"]) @MaxVersion.setter def MaxVersion(self, value): # type: (int) -> None self._set_attribute(self._SDM_ATT_MAP["MaxVersion"], value) @property def Name(self): # type: () -> str """ Returns ------- - str: Name of TLV """ return self._get_attribute(self._SDM_ATT_MAP["Name"]) @Name.setter def Name(self, value): # type: (str) -> None self._set_attribute(self._SDM_ATT_MAP["Name"], value) @property def ObjectId(self): # type: () -> str """ Returns ------- - str: Unique identifier for this object """ return self._get_attribute(self._SDM_ATT_MAP["ObjectId"]) @property def SubType(self): # type: () -> int """ Returns ------- - number: Indicates specific types of network traffic. """ return self._get_attribute(self._SDM_ATT_MAP["SubType"]) @SubType.setter def SubType(self, value): # type: (int) -> None self._set_attribute(self._SDM_ATT_MAP["SubType"], value) @property def Willing(self): # type: () -> bool """ Returns ------- - bool: Indicates whether this feature accepts its configuration from the peer or not. """ return self._get_attribute(self._SDM_ATT_MAP["Willing"]) @Willing.setter def Willing(self, value): # type: (bool) -> None self._set_attribute(self._SDM_ATT_MAP["Willing"], value) def update( self, Enabled=None, Error=None, ErrorOverride=None, FeatureEnable=None, FeatureType=None, MaxVersion=None, Name=None, SubType=None, Willing=None, ): # type: (bool, bool, bool, bool, int, int, str, int, bool) -> DcbxTlv """Updates dcbxTlv resource on the server. Args ---- - Enabled (bool): Specifies if this TLV is used in the configuration. - Error (bool): Indicates that an error has occurred during the configuration exchange with the peer. - ErrorOverride (bool): True to override the error bit. - FeatureEnable (bool): Indicates whether the DCB feature is enabled or not. - FeatureType (number): Type code of the DCB Feature. The codes translate to: 2 - Priority Group 3 - PFC 4 - Application (IEEE 1.01) / Custom(BCN) (Intel 1.0) 5 - Custom (IEEE 1.01) / FCoE (Intel 1.0) 6 - Custom (IEEE 1.01) / Logical Link (Intel 1.0) 7 - NIV 8 - Custom (IEEE 1.01 / Intel 1.0) 9/10 - Custom (IEEE 1.01 / Intel 1.0) / ETS Configuration/Recommendation (802.1Qaz) 11 - Custom (IEEE 1.01 / Intel 1.0) / PFC (802.1Qaz) 12 - Custom (IEEE 1.01 / Intel 1.0) / Application Priority (802.1Qaz) 13 to 127 - Custom (IEEE 1.01 / Intel 1.0) - MaxVersion (number): Highest feature version supported by the system. - Name (str): Name of TLV - SubType (number): Indicates specific types of network traffic. - Willing (bool): Indicates whether this feature accepts its configuration from the peer or not. Raises ------ - ServerError: The server has encountered an uncategorized error condition """ return self._update(self._map_locals(self._SDM_ATT_MAP, locals())) def add( self, Enabled=None, Error=None, ErrorOverride=None, FeatureEnable=None, FeatureType=None, MaxVersion=None, Name=None, SubType=None, Willing=None, ): # type: (bool, bool, bool, bool, int, int, str, int, bool) -> DcbxTlv """Adds a new dcbxTlv resource on the server and adds it to the container. Args ---- - Enabled (bool): Specifies if this TLV is used in the configuration. - Error (bool): Indicates that an error has occurred during the configuration exchange with the peer. - ErrorOverride (bool): True to override the error bit. - FeatureEnable (bool): Indicates whether the DCB feature is enabled or not. - FeatureType (number): Type code of the DCB Feature. The codes translate to: 2 - Priority Group 3 - PFC 4 - Application (IEEE 1.01) / Custom(BCN) (Intel 1.0) 5 - Custom (IEEE 1.01) / FCoE (Intel 1.0) 6 - Custom (IEEE 1.01) / Logical Link (Intel 1.0) 7 - NIV 8 - Custom (IEEE 1.01 / Intel 1.0) 9/10 - Custom (IEEE 1.01 / Intel 1.0) / ETS Configuration/Recommendation (802.1Qaz) 11 - Custom (IEEE 1.01 / Intel 1.0) / PFC (802.1Qaz) 12 - Custom (IEEE 1.01 / Intel 1.0) / Application Priority (802.1Qaz) 13 to 127 - Custom (IEEE 1.01 / Intel 1.0) - MaxVersion (number): Highest feature version supported by the system. - Name (str): Name of TLV - SubType (number): Indicates specific types of network traffic. - Willing (bool): Indicates whether this feature accepts its configuration from the peer or not. Returns ------- - self: This instance with all currently retrieved dcbxTlv resources using find and the newly added dcbxTlv resources available through an iterator or index Raises ------ - ServerError: The server has encountered an uncategorized error condition """ return self._create(self._map_locals(self._SDM_ATT_MAP, locals())) def remove(self): """Deletes all the contained dcbxTlv resources in this instance from the server. Raises ------ - NotFoundError: The requested resource does not exist on the server - ServerError: The server has encountered an uncategorized error condition """ self._delete() def find( self, Enabled=None, Error=None, ErrorOverride=None, FeatureEnable=None, FeatureType=None, MaxVersion=None, Name=None, ObjectId=None, SubType=None, Willing=None, ): # type: (bool, bool, bool, bool, int, int, str, str, int, bool) -> DcbxTlv """Finds and retrieves dcbxTlv resources from the server. All named parameters are evaluated on the server using regex. The named parameters can be used to selectively retrieve dcbxTlv resources from the server. To retrieve an exact match ensure the parameter value starts with ^ and ends with $ By default the find method takes no parameters and will retrieve all dcbxTlv resources from the server. Args ---- - Enabled (bool): Specifies if this TLV is used in the configuration. - Error (bool): Indicates that an error has occurred during the configuration exchange with the peer. - ErrorOverride (bool): True to override the error bit. - FeatureEnable (bool): Indicates whether the DCB feature is enabled or not. - FeatureType (number): Type code of the DCB Feature. The codes translate to: 2 - Priority Group 3 - PFC 4 - Application (IEEE 1.01) / Custom(BCN) (Intel 1.0) 5 - Custom (IEEE 1.01) / FCoE (Intel 1.0) 6 - Custom (IEEE 1.01) / Logical Link (Intel 1.0) 7 - NIV 8 - Custom (IEEE 1.01 / Intel 1.0) 9/10 - Custom (IEEE 1.01 / Intel 1.0) / ETS Configuration/Recommendation (802.1Qaz) 11 - Custom (IEEE 1.01 / Intel 1.0) / PFC (802.1Qaz) 12 - Custom (IEEE 1.01 / Intel 1.0) / Application Priority (802.1Qaz) 13 to 127 - Custom (IEEE 1.01 / Intel 1.0) - MaxVersion (number): Highest feature version supported by the system. - Name (str): Name of TLV - ObjectId (str): Unique identifier for this object - SubType (number): Indicates specific types of network traffic. - Willing (bool): Indicates whether this feature accepts its configuration from the peer or not. Returns ------- - self: This instance with matching dcbxTlv resources retrieved from the server available through an iterator or index Raises ------ - ServerError: The server has encountered an uncategorized error condition """ return self._select(self._map_locals(self._SDM_ATT_MAP, locals())) def read(self, href): """Retrieves a single instance of dcbxTlv data from the server. Args ---- - href (str): An href to the instance to be retrieved Returns ------- - self: This instance with the dcbxTlv resources from the server available through an iterator or index Raises ------ - NotFoundError: The requested resource does not exist on the server - ServerError: The server has encountered an uncategorized error condition """ return self._read(href) def CustomProtocolStack(self, *args, **kwargs): # type: (*Any, **Any) -> None """Executes the customProtocolStack operation on the server. Create custom protocol stack under /vport/protocolStack customProtocolStack(Arg2=list, Arg3=enum, async_operation=bool) --------------------------------------------------------------- - Arg2 (list(str)): List of plugin types to be added in the new custom stack - Arg3 (str(kAppend | kMerge | kOverwrite)): Append, merge or overwrite existing protocol stack - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. Raises ------ - NotFoundError: The requested resource does not exist on the server - ServerError: The server has encountered an uncategorized error condition """ payload = {"Arg1": self} for i in range(len(args)): payload["Arg%s" % (i + 2)] = args[i] for item in kwargs.items(): payload[item[0]] = item[1] return self._execute( "customProtocolStack", payload=payload, response_object=None ) def DisableProtocolStack(self, *args, **kwargs): # type: (*Any, **Any) -> Union[str, None] """Executes the disableProtocolStack operation on the server. Disable a protocol under protocolStack using the class name disableProtocolStack(Arg2=string, async_operation=bool)string ------------------------------------------------------------- - Arg2 (str): Protocol class name to disable - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: Status of the exec Raises ------ - NotFoundError: The requested resource does not exist on the server - ServerError: The server has encountered an uncategorized error condition """ payload = {"Arg1": self.href} for i in range(len(args)): payload["Arg%s" % (i + 2)] = args[i] for item in kwargs.items(): payload[item[0]] = item[1] return self._execute( "disableProtocolStack", payload=payload, response_object=None ) def EnableProtocolStack(self, *args, **kwargs): # type: (*Any, **Any) -> Union[str, None] """Executes the enableProtocolStack operation on the server. Enable a protocol under protocolStack using the class name enableProtocolStack(Arg2=string, async_operation=bool)string ------------------------------------------------------------ - Arg2 (str): Protocol class name to enable - async_operation (bool=False): True to execute the operation asynchronously. Any subsequent rest api calls made through the Connection class will block until the operation is complete. - Returns str: Status of the exec Raises ------ - NotFoundError: The requested resource does not exist on the server - ServerError: The server has encountered an uncategorized error condition """ payload = {"Arg1": self.href} for i in range(len(args)): payload["Arg%s" % (i + 2)] = args[i] for item in kwargs.items(): payload[item[0]] = item[1] return self._execute( "enableProtocolStack", payload=payload, response_object=None )
7c7d143151241e5115e2adc2b0d3f88f829828b8
bb8d14ae2f99c5b0f78e2942d69d78ed12358c2e
/tracker/TejaTracker.py
0089d1892d45a7133d264b2e2a0b6cde25da1cd6
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
lowfill/monedaTEJA
9354d018e15dadc0383ae78d2955b1c8ed410a67
9e737f7f2a3475b18e8382515d0e259c67e0319a
refs/heads/master
2021-01-18T12:48:06.642061
2013-11-14T16:19:46
2013-11-14T16:19:46
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,866
py
#!/usr/bin/python """ PunkMoney 0.2 :: Tracker.py Main listener class for finding and parsing #PunkMoney statements. """ from utils.tejaparser import Parser from time import sleep import argparse # Main Tracker class class TejaTracker(Parser): def __init__(self): self.setupLogging() self.connectDB() self.TW = self.connectTwitter() def run(self): # Update expired try: self.updateExpired() except Exception, e: self.logError("Updating expired failed: %s" % e) # If more than 25 hits remaining, harvest new tweets if self.TW.rate_limit_status('search')['resources']['search']['/search/tweets']['remaining'] > 25: try: self.harvestNew() except Exception, e: self.logError("Harvester failed: %s" % e) else: self.logWarning("Skipping harvest, rate limit too low.") # Parse new try: self.parseNew() except Exception, e: self.logError("Parser failed: %s" % e) ''' Run ''' if __name__ == '__main__': T = TejaTracker() parser = argparse.ArgumentParser(description='Run the #PunkMoney tracker') parser.add_argument('-e', action='store_true', dest='expired', default=False) parser.add_argument('-r', action='store_true', dest='harvest', default=False) parser.add_argument('-p', action='store_true', dest='parse', default=False) args = parser.parse_args() if args.expired or args.harvest or args.parse: if args.expired: T.updateExpired() if args.harvest: T.harvestNew() if args.parse: T.parseNew() else: T.run()
b1a39c78d0f3cac0cac701615403f6d5fbbfdeaa
ee5d53e8f8c150bfa7c8a3a4bb982ded3a972faa
/suit._online_ossMember.py
f13ff877c4f4495176a212b2825696e49f1bbe3f
[]
no_license
regend/redriver
7f25d9bdd974ff73d4777e37e8d7164c03ae4fb3
85383b547e9bd848c73a3e8b91a34dda17766427
refs/heads/master
2020-05-09T08:53:04.621598
2019-04-03T06:42:14
2019-04-03T06:42:14
180,996,314
0
0
null
null
null
null
UTF-8
Python
false
false
2,069
py
# coding=utf-8 import unittest import sys from src.ossMember.member.member import MemberInfo from src.ossMember.member.memberAdd import MemberAdd from src.ossMember.member.placementSelect import PlacementSelect from src.ossMember.orders.order_Change import OrderChange from src.ossMember.orders.order_Change_Add import OrderChangeAdd from src.ossMember.orders.order_Return import OrderReturn from src.ossMember.orders.order_Return_Check import OrderReturnCheck from src.ossMember.orders.order_Save import OrderSave from src.ossMember.orders.order_View import OrderView from src.ossMember.product.productComposite import ProductComposite from src.ossMember.product.productMsg_new import ProductNewMSG from src.ossMember.product.productMsg_search import ProductMsgSearch from src.ossMember.product.productSaleTax import ProductSaleTax from src.ossMember.product.product_No import ProductNo from src.ossMember.product.product_Search import ProductSearch from util import HTMLTestRunner from util.initialize import Initialize __author__ = 'Regend' def run_suit(): suit = unittest.TestSuite([ # load_case(ProductNo), load_case(ProductSearch), # load_case(ProductComposite), # load_case(ProductNewMSG), load_case(ProductMsgSearch), load_case(ProductSaleTax), load_case(MemberInfo), # load_case(MemberAdd), load_case(PlacementSelect), load_case(OrderChange), # load_case(OrderChangeAdd), load_case(OrderReturn), # load_case(OrderReturnCheck), load_case(OrderView), load_case(OrderSave) ]) return suit def load_case(name): return unittest.TestLoader().loadTestsFromTestCase(name) if __name__ == "__main__": Initialize().set_build_number(sys.argv[1], True) reportFile = file(Initialize().datapath + sys.argv[1] + "\\ossMember_report.html", "wb") runner = HTMLTestRunner.HTMLTestRunner(stream=reportFile, title=u'测试结果', description=u'测试报告', version=sys.argv[1], env='production') runner.run(run_suit())
29622513bc0b3f87feee614eb571c556137821be
846ac76a39ac168cb3fb4721001a433c0aa418c2
/users/models.py
bf09d16a5128c900579403004b469784849af2ad
[]
no_license
Kalyani2306/the_blog
28f75c3001b226a58733462353abb5aecf10eccb
cd25c0fcf0349fb43d8b3e41bcec8b37c646a294
refs/heads/master
2023-06-09T20:10:32.703855
2021-06-29T12:30:09
2021-06-29T12:30:09
232,806,408
0
0
null
null
null
null
UTF-8
Python
false
false
621
py
from django.db import models from django.contrib.auth.models import User from PIL import Image class Profile(models.Model): user = models.OneToOneField(User, on_delete=models.CASCADE) image = models.ImageField(default='default.jpg', upload_to='profile_pics') def __str__(self): return f'{self.user.username} Profile' def save(self, *args, **kawrgs): super().save(*args, **kawrgs) img = Image.open(self.image.path) if img.height > 300 or img.width > 300: output_size = (300, 300) img.thumbnail(output_size) img.save(self.image.path)
8ca270f8a0167db21533bd8099dfadd32d69046e
2093151c3f1c91e57e73e9610a37aeabc8ae80f0
/tests/test_models/test_user.py
69284dcb6082596803a9925bddf346c75dc5c476
[]
no_license
alejolo311/AirBnB_clone
0af09c65e690fa965f55cd591293c022fabcb143
679f60bff0125512608f49ddf0b34854767a6a8d
refs/heads/master
2021-01-03T22:15:38.501560
2020-03-01T22:08:08
2020-03-01T22:08:08
240,256,659
0
2
null
null
null
null
UTF-8
Python
false
false
1,205
py
#!/usr/bin/python3 '''Tests for User class''' import models from models.base_model import BaseModel from models.user import User import os import unittest class TestUser(unittest.TestCase): '''start tests''' def test_docstring(self): '''test if funcions, methods, classes and modules have docstring''' msj = "Módulo does not has docstring" self.assertIsNotNone(models.user.__doc__, msj) # Modules msj = "Clase does not has docstring" self.assertIsNotNone(User.__doc__, msj) # Classes def test_executable_file(self): '''test if file has permissions u+x to execute''' # Check for read access is_read_true = os.access('models/user.py', os.R_OK) self.assertTrue(is_read_true) # Check for write access is_write_true = os.access('models/user.py', os.W_OK) self.assertTrue(is_write_true) # Check for execution access is_exec_true = os.access('models/user.py', os.X_OK) self.assertTrue(is_exec_true) def test_is_an_instance(self): '''check if my_model is an instance of BaseModel''' my_user = User() self.assertIsInstance(my_user, User)
a4cfe939cf946016e8aa26c131d44218af521253
d5f53599338a30a9d6c7de7d5c574db59545ed3d
/Gse/generated/Ref/channels/SG1_SignalGen_Output.py
dd5c8e60cf31bbd105160631ee8ff53b9fd5a55e
[ "Apache-2.0" ]
permissive
dstockhouse/eaglesat-fprime
c39a01cc5648dcd8b351f47684923fe481c720be
e640b3faea0000e1ca8acab4d6ff66150196c32b
refs/heads/master
2020-05-07T15:31:09.289797
2019-11-20T00:33:15
2019-11-20T00:33:15
180,639,007
0
0
null
null
null
null
UTF-8
Python
false
false
1,405
py
''' Created on Wednesday, 10 April 2019 @author: David THIS FILE IS AUTOMATICALLY GENERATED - DO NOT EDIT!!! XML Source: /cygdrive/c/Users/David/Documents/eaglesat/eaglesat-fprime/Ref/SignalGen/SignalGenComponentAi.xml ''' # Import the types this way so they do not need prefixing for execution. from models.serialize.type_exceptions import * from models.serialize.type_base import * from models.serialize.bool_type import * from models.serialize.enum_type import * from models.serialize.f32_type import * from models.serialize.f64_type import * from models.serialize.u8_type import * from models.serialize.u16_type import * from models.serialize.u32_type import * from models.serialize.u64_type import * from models.serialize.i8_type import * from models.serialize.i16_type import * from models.serialize.i32_type import * from models.serialize.i64_type import * from models.serialize.string_type import * from models.serialize.serializable_type import * from models.common import channel_telemetry # Each file represents the information for a single event # These module variables are used to instance the channel object within the Gse COMPONENT = "Ref::SignalGen" NAME = "SG1_SignalGen_Output" ID = 0xb5 CHANNEL_DESCRIPTION = "SignalGen Output" TYPE = F32Type() FORMAT_STRING = None LOW_RED = None LOW_ORANGE = None LOW_YELLOW = None HIGH_YELLOW = None HIGH_ORANGE = None HIGH_RED = None
891825cba08187b7841fc95a4b003d692a9c30e3
fa4618ab323f37137e2cf3044a773085f4737c03
/yabgp/tests/unit/message/attribute/test_mpreachnlri.py
f17a5fd14f4ab18c6bdc0be08a03e93b45dd4e75
[ "Apache-2.0" ]
permissive
heidinet/yabgp
5ebe5dfe93ad34baef71a1a9f8493649fd479be6
912e0cd71d3d95089556e421e5499d6bed299414
refs/heads/master
2021-01-01T19:45:52.508388
2017-07-21T08:29:11
2017-07-21T08:29:11
98,679,210
1
0
null
2017-07-28T18:57:11
2017-07-28T18:57:11
null
UTF-8
Python
false
false
12,557
py
# Copyright 2015 Cisco Systems, Inc. # All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """ Unittest for MPReach NLRI""" import unittest from yabgp.message.attribute.mpreachnlri import MpReachNLRI class TestMpReachNLRI(unittest.TestCase): def setUp(self): self.maxDiff = None def test_ipv4_mpls_vpn_parse(self): data_bin = b'\x80\x0e\x21\x00\x01\x80\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02\x02\x02' \ b'\x00\x78\x00\x01\x91\x00\x00\x00\x64\x00\x00\x00\x64\xaa\x00\x00\x00' data_hoped = {'afi_safi': (1, 128), 'nexthop': {'rd': '0:0', 'str': '2.2.2.2'}, 'nlri': [{'label': [25], 'rd': '100:100', 'prefix': '170.0.0.0/32'}]} self.assertEqual(data_hoped, MpReachNLRI.parse(data_bin[3:])) def test_ipv4_mpsl_vpn_construct_nexthop(self): nexthop = {'rd': '0:0', 'str': '2.2.2.2'} nexthop_bin = b'\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02\x02\x02' self.assertEqual(nexthop_bin, MpReachNLRI.construct_mpls_vpn_nexthop(nexthop)) def test_ipv6_mpls_vpn_construct_nexthop(self): nexthop = {'rd': '0:0', 'str': '::ffff:172.16.4.12'} nexthop_bin = b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' \ b'\x00\x00\x00\x00\x00\x00\xff\xff\xac\x10\x04\x0c' self.assertEqual(nexthop_bin, MpReachNLRI.construct_mpls_vpn_nexthop(nexthop)) def test_ipv4_mpls_vpn_construct(self): data_bin = b'\x80\x0e\x21\x00\x01\x80\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02\x02\x02' \ b'\x00\x78\x00\x01\x91\x00\x00\x00\x64\x00\x00\x00\x64\xaa\x00\x00\x00' data_parsed = {'afi_safi': (1, 128), 'nexthop': {'rd': '0:0', 'str': '2.2.2.2'}, 'nlri': [{'label': [25], 'rd': '100:100', 'prefix': '170.0.0.0/32'}]} self.assertEqual(data_bin, MpReachNLRI.construct(data_parsed)) def test_ipv6_unicast(self): data_bin = b"\x00\x02\x01\x10\x20\x01\x32\x32\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" \ b"\x01\x00\x80\x20\x01\x32\x32\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" \ b"\x40\x20\x01\x32\x32\x00\x01\x00\x00\x7f\x20\x01\x48\x37\x16\x32\x00\x00\x00" \ b"\x00\x00\x00\x00\x00\x00\x02" data_hoped = { 'afi_safi': (2, 1), 'nexthop': '2001:3232::1', 'nlri': ['2001:3232::1/128', '::2001:3232:1:0/64', '2001:4837:1632::2/127']} self.assertEqual(data_hoped, MpReachNLRI.parse(data_bin)) def test_ipv6_unicast_with_linklocal_nexthop(self): data_bin = b"\x00\x02\x01\x20\x20\x01\x0d\xb8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" \ b"\x02\xfe\x80\x00\x00\x00\x00\x00\x00\xc0\x02\x0b\xff\xfe\x7e\x00\x00\x00\x40" \ b"\x20\x01\x0d\xb8\x00\x02\x00\x02\x40\x20\x01\x0d\xb8\x00\x02\x00\x01\x40\x20" \ b"\x01\x0d\xb8\x00\x02\x00\x00" data_hoped = { 'afi_safi': (2, 1), 'linklocal_nexthop': 'fe80::c002:bff:fe7e:0', 'nexthop': '2001:db8::2', 'nlri': ['::2001:db8:2:2/64', '::2001:db8:2:1/64', '::2001:db8:2:0/64']} self.assertEqual(data_hoped, MpReachNLRI.parse(data_bin)) def test_ipv6_unicast_construct(self): data_parsed = { 'afi_safi': (2, 1), 'nexthop': '2001:3232::1', 'nlri': ['2001:3232::1/128', '::2001:3232:1:0/64', '2001:4837:1632::2/127']} self.assertEqual(data_parsed, MpReachNLRI.parse(MpReachNLRI.construct(data_parsed)[3:])) def test_ipv6_unicast_with_locallink_nexthop_construct(self): data_hoped = { 'afi_safi': (2, 1), 'linklocal_nexthop': 'fe80::c002:bff:fe7e:0', 'nexthop': '2001:db8::2', 'nlri': ['::2001:db8:2:2/64', '::2001:db8:2:1/64', '::2001:db8:2:0/64']} self.assertEqual(data_hoped, MpReachNLRI.parse(MpReachNLRI.construct(data_hoped)[3:])) def test_ipv6_mpls_vpn_parse(self): data_bin = b'\x80\x0e\x45\x00\x02\x80\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' \ b'\x00\x00\x00\x00\x00\x00\xff\xff\xac\x10\x04\x0c\x00\x98\x00\x03\x61\x00\x00' \ b'\x00\x64\x00\x00\x00\x0c\x20\x10\x00\x00\x00\x12\x00\x04\x98\x00\x03\x71\x00' \ b'\x00\x00\x64\x00\x00\x00\x0c\x20\x10\x00\x01\x00\x12\x00\x00' data_hoped = { 'afi_safi': (2, 128), 'nexthop': {'rd': '0:0', 'str': '::ffff:172.16.4.12'}, 'nlri': [ {'label': [54], 'rd': '100:12', 'prefix': '2010:0:12:4::/64'}, {'label': [55], 'rd': '100:12', 'prefix': '2010:1:12::/64'} ] } self.assertEqual(data_hoped, MpReachNLRI.parse(data_bin[3:])) def test_ipv6_mpls_vpn_construct(self): data_bin = b'\x80\x0e\x45\x00\x02\x80\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' \ b'\x00\x00\x00\x00\x00\x00\xff\xff\xac\x10\x04\x0c\x00\x98\x00\x03\x61\x00\x00' \ b'\x00\x64\x00\x00\x00\x0c\x20\x10\x00\x00\x00\x12\x00\x04\x98\x00\x03\x71\x00' \ b'\x00\x00\x64\x00\x00\x00\x0c\x20\x10\x00\x01\x00\x12\x00\x00' data_hoped = { 'afi_safi': (2, 128), 'nexthop': {'rd': '0:0', 'str': '::ffff:172.16.4.12'}, 'nlri': [ {'label': [54], 'rd': '100:12', 'prefix': '2010:0:12:4::/64'}, {'label': [55], 'rd': '100:12', 'prefix': '2010:1:12::/64'} ] } self.assertEqual(data_bin, MpReachNLRI.construct(data_hoped)) def test_ipv4_flowspec_parse_multi_nlri_with_nexthop(self): data_bin = b'\x0e\x00\x1b\x00\x01\x85\x00\x00\x0a\x01\x18\xc0\x58\x03\x02\x18\xc0\x59\x03\x0a' \ b'\x01\x18\xc0\x58\x04\x02\x18\xc0\x59\x04' data_dict = { 'afi_safi': (1, 133), 'nexthop': '', 'nlri': [ {1: '192.88.3.0/24', 2: '192.89.3.0/24'}, {1: '192.88.4.0/24', 2: '192.89.4.0/24'} ]} self.assertEqual(data_dict, MpReachNLRI.parse(data_bin[3:])) def test_ipv4_flowspec_construct(self): data_bin = b'\x80\x0e\x10\x00\x01\x85\x00\x00\x0a\x01\x18\xc0\x55\x02\x02\x18\xc0\x55\x01' data_dict = {'afi_safi': (1, 133), 'nexthop': '', 'nlri': [{1: '192.85.2.0/24', 2: '192.85.1.0/24'}]} self.assertEqual(data_bin, MpReachNLRI.construct(data_dict)) def test_ipv4_flowspec_construct_multi_nlri(self): data_dict = { 'afi_safi': (1, 133), 'nexthop': '', 'nlri': [ {1: '192.88.3.0/24', 2: '192.89.3.0/24'}, {1: '192.88.4.0/24', 2: '192.89.4.0/24'} ]} data_bin_cons = MpReachNLRI.construct(data_dict) self.assertEqual(data_dict, MpReachNLRI.parse(data_bin_cons[3:])) def test_l2vpn_evpn_parse_construct_route_type1(self): data_dict = { "afi_safi": (25, 70), "nexthop": "10.75.44.254", "nlri": [{ "type": 1, "value": { "rd": "1.1.1.1:32867", "esi": 0, "eth_tag_id": 100, "label": [10] } }] } self.assertEqual(data_dict, MpReachNLRI.parse(MpReachNLRI.construct(data_dict)[3:])) def test_l2vpn_evpn_parse_route_type2(self): data_bin = b'\x80\x0e\x30\x00\x19\x46\x04\xac\x11\x00\x03\x00\x02\x25\x00\x01\xac\x11' \ b'\x00\x03\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6c' \ b'\x30\x00\x11\x22\x33\x44\x55\x20\x0b\x0b\x0b\x01\x00\x00\x01' data_dict = { 'afi_safi': (25, 70), 'nexthop': '172.17.0.3', 'nlri': [ { 'type': 2, 'value': { 'eth_tag_id': 108, 'ip': '11.11.11.1', 'label': [0], 'rd': '172.17.0.3:2', 'mac': '00-11-22-33-44-55', 'esi': 0}}] } self.assertEqual(data_dict, MpReachNLRI.parse(data_bin[3:])) def test_l2vpn_evpn_construct_route_type2(self): data_bin = b'\x80\x0e\x30\x00\x19\x46\x04\xac\x11\x00\x03\x00\x02\x25\x00\x01\xac\x11' \ b'\x00\x03\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6c' \ b'\x30\x00\x11\x22\x33\x44\x55\x20\x0b\x0b\x0b\x01\x00\x00\x00' data_dict = { 'afi_safi': (25, 70), 'nexthop': '172.17.0.3', 'nlri': [ { 'type': 2, 'value': { 'eth_tag_id': 108, 'ip': '11.11.11.1', 'label': [0], 'rd': '172.17.0.3:2', 'mac': '00-11-22-33-44-55', 'esi': 0}}] } self.assertEqual(data_bin, MpReachNLRI.construct(data_dict)) def test_l2vpn_evpn_parse_construct_route_type3(self): data_dict = { "afi_safi": (25, 70), "nexthop": "10.75.44.254", "nlri": [ { "type": 3, "value": { "rd": "172.16.0.1:5904", "eth_tag_id": 100, "ip": "192.168.0.1" } } ] } self.assertEqual(data_dict, MpReachNLRI.parse(MpReachNLRI.construct(data_dict)[3:])) def test_l2vpn_evpn_parse_construct_route_type4(self): data_dict = { "afi_safi": (25, 70), "nexthop": "10.75.44.254", "nlri": [ { "type": 4, "value": { "rd": "172.16.0.1:8888", "esi": 0, "ip": "192.168.0.1" } } ] } self.assertEqual(data_dict, MpReachNLRI.parse(MpReachNLRI.construct(data_dict)[3:])) def test_linkstate(self): self.maxDiff = None data = b"\x90\x0e\x00\x62\x40\x04\x47\x04\x0a\x7c\x01\x7e\x00\x00\x02\x00" \ b"\x55\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x1a\x02\x00" \ b"\x00\x04\x00\x00\xff\xfe\x02\x01\x00\x04\x00\x00\x00\x00\x02\x03" \ b"\x00\x06\x00\x00\x00\x00\x00\x01\x01\x01\x00\x1a\x02\x00\x00\x04" \ b"\x00\x00\xff\xfe\x02\x01\x00\x04\x00\x00\x00\x00\x02\x03\x00\x06" \ b"\x00\x00\x00\x00\x00\x03\x01\x03\x00\x04\x01\x03\x00\x01\x01\x04" \ b"\x00\x04\x01\x03\x00\x02" data_dict = { 'afi_safi': (16388, 71), 'nexthop': '10.124.1.126', 'nlri': [ { 'type': 'link', 'value': [ { 'type': 'local-node', 'value': { 'as': 65534, 'bgpls-id': '0.0.0.0', 'igp-id': '0.0.0.1'}}, { 'type': 'remote-node', 'value': { 'as': 65534, 'bgpls-id': '0.0.0.0', 'igp-id': '0.0.0.3'}}, {'type': 'link-local-ipv4', 'value': '1.3.0.1'}, {'type': 'link-remote-ipv4', 'value': '1.3.0.2'}]}]} self.assertEqual(data_dict, MpReachNLRI.parse(data[4:])) if __name__ == '__main__': unittest.main()
12bf17c185f2953f9facbbc757deae5717c3e196
f8492d149d14fb2137b522368f841f22686657fe
/Codi/masp-master/masp/array_response_simulator/simulate_array.py
e3c8e8cf285f4e864a2c841db768fc05ff9cf8dc
[]
no_license
MarcFranco/TFG
fdfae5fd30bd9a714986605e523c077d35e88f62
390289f02dc512f38c7a4810fed75d86b826e6ff
refs/heads/Inicial
2022-11-21T10:08:47.498368
2020-07-06T21:34:54
2020-07-06T21:34:54
237,506,523
1
1
null
2020-03-23T11:44:36
2020-01-31T20:00:58
Python
UTF-8
Python
false
false
16,093
py
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Copyright (c) 2019, Eurecat / UPF # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the <organization> nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # @file simulate_array.py # @author Andrés Pérez-López # @date 22/08/2019 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # import numpy as np import scipy.special import masp.array_response_simulator as asr import masp.utils from masp.validate_data_types import _validate_int, _validate_ndarray_2D, _validate_string, _validate_float, \ _validate_ndarray_1D, _validate_ndarray def simulate_sph_array(N_filt, mic_dirs_rad, src_dirs_rad, arrayType, R, N_order, fs, dirCoef=None): """ Simulate the impulse responses of a spherical array. Parameters ---------- N_filt : int Number of frequencies where to compute the response. It must be even. mic_dirs_rad: ndarray Directions of microphone capsules, in radians. Expressed in [azi, ele] pairs. Dimension = (N_mic, C-1). src_dirs_rad: ndarray Direction of arrival of the indicent plane waves, in radians. Expressed in [azi, ele] pairs. Dimension = (N_doa, C-1). arrayType: str 'open', 'rigid' or 'directional'. Target sampling rate R: float Radius of the array sphere, in meter. N_order: int Maximum spherical harmonic expansion order. fs: int Sample rate. dirCoef: float, optional Directivity coefficient of the sensors. Default to None. Returns ------- h_mic: ndarray Computed IRs in time-domain. Dimension = (N_filt, N_mic, N_doa). H_mic: ndarray, dtype='complex' Frequency responses of the computed IRs. Dimension = (N_filt//2+1, N_mic, N_doa). Raises ----- TypeError, ValueError: if method arguments mismatch in type, dimension or value. Notes ----- This method computes the impulse responses of the microphones of a spherical microphone array for the given directions of incident plane waves. The array type can be either 'open' for omnidirectional microphones in an open setup, 'rigid' for omnidirectional microphones mounted on a sphere, or 'directional' for an open array of first-order directional microphones determined by `dirCoef`. """ _validate_int('N_filt', N_filt, positive=True, parity='even') _validate_ndarray_2D('mic_dirs_rad', mic_dirs_rad, shape1=masp.C-1) _validate_ndarray_2D('src_dirs_rad', src_dirs_rad, shape1=masp.C-1) _validate_string('arrayType', arrayType, choices=['open', 'rigid', 'directional']) _validate_float('R', R, positive=True) _validate_int('N_order', N_order, positive=True) _validate_int('fs', fs, positive=True) if arrayType is 'directional': if dirCoef is None: raise ValueError('dirCoef must be defined in the directional case.') _validate_float('dirCoef', dirCoef) # Compute the frequency-dependent part of the microphone responses (radial dependence) f = np.arange(N_filt//2+1) * fs / N_filt kR = 2*np.pi*f*R/masp.c b_N = asr.sph_modal_coefs(N_order, kR, arrayType, dirCoef) # Handle Nyquist for real impulse response temp = b_N.copy() temp[-1,:] = np.real(temp[-1,:]) # Create the symmetric conjugate negative frequency response for a real time-domain signal b_Nt = np.real(np.fft.fftshift(np.fft.ifft(np.append(temp, np.conj(temp[-2:0:-1,:]), axis=0), axis=0), axes=0)) # Compute angular-dependent part of the microphone responses # Unit vectors of DOAs and microphones N_doa = src_dirs_rad.shape[0] N_mic = mic_dirs_rad.shape[0] U_doa = masp.sph2cart(np.column_stack((src_dirs_rad[:, 0], src_dirs_rad[:, 1], np.ones(N_doa)))) U_mic = masp.sph2cart(np.column_stack((mic_dirs_rad[:, 0], mic_dirs_rad[:, 1], np.ones(N_mic)))) h_mic = np.zeros((N_filt, N_mic, N_doa)) H_mic = np.zeros((N_filt // 2 + 1, N_mic, N_doa), dtype='complex') for i in range(N_doa): cosangle = np.dot(U_mic, U_doa[i,:]) P = np.zeros((N_order + 1, N_mic)) for n in range(N_order+1): for nm in range(N_mic): # The Legendre polynomial gives the angular dependency Pn = scipy.special.lpmn(n,n,cosangle[nm])[0][0,-1] P[n, nm] = (2 * n + 1) / (4 * np.pi) * Pn h_mic[:, :, i] = np.matmul(b_Nt, P) H_mic[:, :, i] = np.matmul(b_N, P) return h_mic, H_mic def simulate_cyl_array(N_filt, mic_dirs_rad, src_dirs_rad, arrayType, R, N_order, fs): """ Simulate the impulse responses of a cylindrical array. Parameters ---------- N_filt : int Number of frequencies where to compute the response. It must be even. mic_dirs_rad: ndarray Directions of microphone capsules, in radians. Dimension = (N_mic). src_dirs_rad: ndarray Direction of arrival of the indicent plane waves, in radians. Dimension = (N_doa). arrayType: str 'open' or 'rigid'. Target sampling rate R: float Radius of the array cylinder, in meter. N_order: int Maximum cylindrical harmonic expansion order. fs: int Sample rate. Returns ------- h_mic: ndarray Computed IRs in time-domain. Dimension = (N_filt, N_mic, N_doa). H_mic: ndarray, dtype='complex' Frequency responses of the computed IRs. Dimension = (N_filt//2+1, N_mic, N_doa). Raises ----- TypeError, ValueError: if method arguments mismatch in type, dimension or value. Notes ----- This method computes the impulse responses of the microphones of a cylindrical microphone array for the given directions of incident plane waves. The array type can be either 'open' for omnidirectional microphones in an open setup, or 'rigid' for omnidirectional microphones mounted on a cylinder. """ _validate_int('N_filt', N_filt, positive=True, parity='even') _validate_ndarray_1D('mic_dirs_rad', mic_dirs_rad) _validate_ndarray_1D('src_dirs_rad', src_dirs_rad) _validate_string('arrayType', arrayType, choices=['open', 'rigid']) _validate_float('R', R, positive=True) _validate_int('N_order', N_order, positive=True) _validate_int('fs', fs, positive=True) # Compute the frequency-dependent part of the microphone responses (radial dependence) f = np.arange(N_filt//2+1) * fs / N_filt kR = 2*np.pi*f*R/masp.c b_N = asr.cyl_modal_coefs(N_order, kR, arrayType) # Handle Nyquist for real impulse response temp = b_N.copy() temp[-1,:] = np.real(temp[-1,:]) # Create the symmetric conjugate negative frequency response for a real time-domain signal b_Nt = np.real(np.fft.fftshift(np.fft.ifft(np.append(temp, np.conj(temp[-2:0:-1,:]), axis=0), axis=0), axes=0)) # Compute angular-dependent part of the microphone responses # Unit vectors of DOAs and microphones N_doa = src_dirs_rad.shape[0] N_mic = mic_dirs_rad.shape[0] h_mic = np.zeros((N_filt, N_mic, N_doa)) H_mic = np.zeros((N_filt // 2 + 1, N_mic, N_doa), dtype='complex') for i in range(N_doa): angle = mic_dirs_rad - src_dirs_rad[i] C = np.zeros((N_order + 1, N_mic)) for n in range(N_order+1): # Jacobi-Anger expansion if n == 0: C[n, :] = np.ones(angle.shape) else: C[n, :] = 2 * np.cos(n*angle) h_mic[:, :, i] = np.matmul(b_Nt, C) H_mic[:, :, i] = np.matmul(b_N, C) return h_mic, H_mic def get_array_response(src_dirs, mic_pos, N_filt, fs=48000, mic_dirs=None, fDir_handle=None): """ Return array response of directional sensors. The function computes the impulse responses of the microphones of an open array of directional microphones, located at R_mic and with orientations U_orient, for the directions-of-incidence U_doa. Each sensors directivity in defined by a function handle in the cell array fDir_handle. Parameters ---------- src_dirs: ndarray Direction of arrival of the indicent plane waves, in cartesian coordinates. Dimension = (Ndoa, C). mic_pos: ndarray Position of microphone capsules, in cartesian coordinates. Dimension = (Nmic, C). N_filt: int Number of frequencies where to compute the responses. It must be even. fs: int, optional. Sample rate. Default to 48000 Hz. mic_dirs: optional. Orientation of microphone capsules, in cartesian coordinates. Default to None. See notes. fDir_handle: optional. Microphone directivity functions. Default to None. See notes. Returns ------- h_mic: ndarray Computed IRs in time-domain. Dimension = (N_filt, Nmic, Ndoa) H_mic: ndarray, dtype='complex' Frequency responses of the computed IRs. Dimension = (N_filt//2+1, N_mic, N_doa). Raises ----- TypeError, ValueError: if method arguments mismatch in type, dimension or value. Notes ----- In the general case, `U_orient` defines the orientation (in cartesian) of each microphone capsule. Therefore, it is expected to be a 2D ndarray with dimension (Nmic, C). It is possible to define the same orientation for all capsules. In this case, `U_orient` is expected to be a 1D array of length C. If `U_orient` is left unespecified, the orientation of the microphones is assumed to be radial from the origin. `fDir_hadle` allows the specification of custom capsulse directivity polar patterns, expressed as lambda expressions with one parameter (lambda angle: f(angle)). In the general case, `fDir_hadle` is expected to be a 1D ndarray of length `Nmic`, with each lambda corresponding to the directivity of a microphone capsule. It is possible to define the directivity for all capsules. In this case, `fDir_hadle` is expected to be a lambda expression. If `fDir_hadle` is left unespecified, the function assumes omnidirectional direcivities for all capsules. Examples ----- Simulate the response of a 3-microphone array of an omnidirectional microphone, a first-order cardioid and a second-order cardioid, with random locations and orientations, for front and side incidence: Nmic = 3 N_filt = 1000 U_doa = np.asarray([[1, 0, 0],[0, 1, 0]]) R_mic = np.random.rand(Nmic,3) U_orient = np.random.rand(Nmic,3) U_orient/np.tile(np.sqrt(np.sum(np.power(U_orient,2),axis=1)), (3,1)).T # Unit vector fdir_omni = lambda angle: np.ones(np.size(angle)) fdir_card = lambda angle: (1/2)*(1 + np.cos(angle)); fdir_card2 = lambda angle: np.power(1/2,2) * np.power((1 + np.cos(angle)),2) fDir_handle = np.asarray([fdir_omni, fdir_card, fdir_card2]) h_mic, H_mic = ars.get_array_response(U_doa, R_mic, U_orient=U_orient, fDir_handle=fDir_handle, N_filt=N_filt) import matplotlib.pyplot as plt plt.plot(h_mic[:,:,0]) plt.show() """ Ndoa = src_dirs.shape[0] Nmics = mic_pos.shape[0] _validate_ndarray_2D('src_dirs', src_dirs, shape1=masp.C) _validate_ndarray_2D('mic_pos', mic_pos, shape1=masp.C) _validate_int('N_filt', N_filt, positive=True, parity='even') _validate_int('fs', fs, positive=True) # If no directivity coefficient is defined assume omnidirectional sensors if fDir_handle is None: # Expand to vector of omni lambdas fDir_handle = np.asarray([lambda angle: 1 for i in range(Nmics)]) else: if masp.isLambda(fDir_handle): fDir_handle = np.asarray([fDir_handle for i in range(Nmics)]) else: _validate_ndarray_1D('fDir_handle', fDir_handle, size=Nmics) for i in range(Nmics): assert masp.isLambda(fDir_handle[i]) # Compute unit vectors of the microphone positionsT normR_mic = np.sqrt(np.sum(np.power(mic_pos, 2), axis=1)) U_mic = mic_pos / normR_mic[:, np.newaxis] # If no orientation is defined then assume that the microphones # are oriented radially, similar to U_mic if mic_dirs is None: mic_dirs = U_mic else: _validate_ndarray('mic_dirs', mic_dirs) if mic_dirs.ndim == 1: _validate_ndarray_1D('mic_dirs', mic_dirs, size=masp.C) mic_dirs = np.tile(mic_dirs, (Nmics, 1)) else: _validate_ndarray_2D('mic_dirs', mic_dirs, shape1=masp.C) # Frequency vector Nfft = N_filt K = Nfft // 2 + 1 f = np.arange(K) * fs / Nfft # Unit vectors pointing to the evaluation points U_eval = np.empty((Ndoa, Nmics, masp.C)) U_eval[:,:,0] = np.tile(src_dirs[:, 0], (Nmics, 1)).T U_eval[:,:,1] = np.tile(src_dirs[:, 1], (Nmics, 1)).T U_eval[:,:,2] = np.tile(src_dirs[:, 2], (Nmics, 1)).T # Computation of time delays and attenuation for each evaluation point to microphone, # measured from the origin tempR_mic = np.empty((Ndoa, Nmics, masp.C)) tempR_mic[:,:,0] = np.tile(mic_pos[:, 0], (Ndoa, 1)) tempR_mic[:,:,1] = np.tile(mic_pos[:, 1], (Ndoa, 1)) tempR_mic[:,:,2] = np.tile(mic_pos[:, 2], (Ndoa, 1)) tempU_orient = np.empty((Ndoa, Nmics, masp.C)) tempU_orient[:,:,0] = np.tile(mic_dirs[:, 0], (Ndoa, 1)) tempU_orient[:,:,1] = np.tile(mic_dirs[:, 1], (Ndoa, 1)) tempU_orient[:,:,2] = np.tile(mic_dirs[:, 2], (Ndoa, 1)) # cos-angles between DOAs and sensor orientations cosAngleU = np.sum(U_eval*tempU_orient, axis=2) # d*cos-angles between DOAs and sensor positions dcosAngleU = np.sum(U_eval*tempR_mic, axis=2) # Attenuation due to directionality of the sensors B = np.zeros((Ndoa, Nmics)) for nm in range(Nmics): B[:, nm] = fDir_handle[nm](np.arccos(cosAngleU[:, nm])) # Create TFs for each microphone H_mic = np.zeros((K, Nmics, Ndoa), dtype='complex') for kk in range(K): omega = 2 * np.pi * f[kk] tempTF = B * np.exp(1j * (omega / masp.c) * dcosAngleU) H_mic[kk,:,:] = tempTF.T # Create IRs for each microphone h_mic = np.zeros((Nfft, Nmics, Ndoa)) for nd in range(Ndoa): tempTF = H_mic[:,:, nd].copy() tempTF[-1,:] = np.abs(tempTF[-1,:]) tempTF = np.append(tempTF, np.conj(tempTF[-2:0:-1,:]), axis=0) h_mic[:,:, nd] = np.real(np.fft.ifft(tempTF, axis=0)) h_mic[:,:, nd] = np.fft.fftshift(h_mic[:,:, nd], axes=0) return h_mic, H_mic
c2e453a82d6f0ff67fd2933ca09cdf638d6bc380
117c5f672da4a4e45ed3c3d32bc3d7e307d33e90
/0430/blog/mothersday/myblog/migrations/0001_initial.py
3de1a7e4e7d53fd1b1db8d3991d9f0f607a60470
[]
no_license
Abonopen/JerryHW
1f9cb6df68e6f8d8d9d61ee0219a4e26ce271e3f
940a051d812b06b0586d513c4949753c777a6eb3
refs/heads/master
2022-12-23T05:38:53.116747
2018-05-11T05:57:12
2018-05-11T05:57:12
125,175,644
0
1
null
2022-12-17T01:30:53
2018-03-14T07:52:58
Python
UTF-8
Python
false
false
724
py
# -*- coding: utf-8 -*- # Generated by Django 1.11 on 2018-05-08 12:35 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Message', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('auther', models.CharField(max_length=20)), ('title', models.CharField(max_length=50)), ('content', models.TextField(max_length=100)), ('date', models.DateTimeField()), ], ), ]
29999708e5d55ff8c392e6c15d6e2e9caebd8144
7f0fcbdd5ff790adc310c674d2d8c3659d109a62
/sdt/migrations/0052_ucs_operator_is_active.py
53c3c313b346e356ae8869f01ba3392042a4e061
[]
no_license
linyi1130/paddy
f797463b60b0c3e06b8c817db1525cdb0388b2a2
366a5d9cedda6f153f29b3ad3542f8f9a53bc866
refs/heads/master
2021-09-09T15:11:36.424493
2018-03-17T09:28:30
2018-03-17T09:28:30
111,760,525
0
0
null
null
null
null
UTF-8
Python
false
false
475
py
# -*- coding: utf-8 -*- # Generated by Django 1.11.7 on 2018-01-04 16:54 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('sdt', '0051_ucs_deposit_balance_account_target_id'), ] operations = [ migrations.AddField( model_name='ucs_operator', name='is_active', field=models.BooleanField(default=True), ), ]
65c2e9073be62766e95cebe8a13c9ff565514568
3b6ba8d4dc4dd8fe572c1419709facc7bdc2274e
/ai4water/et/utils.py
52ff6c28677cbbd9cbc4a5bdf178ee7c3ed62076
[ "MIT" ]
permissive
AtrCheema/AI4Water
fd5bfda1eee530e7bc9ed1b2130ed49dd0d5bf89
ec2a4a426673b11e3589b64cef9d7160b1de28d4
refs/heads/master
2023-09-04T10:59:55.902200
2023-02-10T15:55:32
2023-02-10T15:55:32
284,684,202
47
17
MIT
2023-02-10T15:56:43
2020-08-03T11:39:22
Python
UTF-8
Python
false
false
54,339
py
import re import math from easy_mpl.utils import process_axis from .converter import Temp, Speed, Pressure from .global_variables import ALLOWED_COLUMNS, SOLAR_CONSTANT, LAMBDA from .global_variables import default_constants, SB_CONS from ai4water.backend import np, pd, plt class AttributeChecker: def __init__(self, input_df): self.input = self.check_in_df(input_df) self.output = {} self.allowed_columns = ALLOWED_COLUMNS self.no_of_hours = None def check_in_df(self, data_frame) -> pd.DataFrame: if not isinstance(data_frame, pd.DataFrame): raise TypeError("input must be a pandas dataframe") for col in data_frame.columns: if col not in ALLOWED_COLUMNS: raise ValueError("""col {} given in input dataframe is not allowed. Allowed columns names are {}""" .format(col, ALLOWED_COLUMNS)) if not isinstance(data_frame.index, pd.DatetimeIndex): index = pd.to_datetime(data_frame.index) if not isinstance(index, pd.DatetimeIndex): raise TypeError("index of input dataframe must be convertible to pd.DatetimeIndex") if data_frame.shape[0] > 1: data_frame.index.freq = pd.infer_freq(data_frame.index) else: setattr(self, 'single_vale', True) setattr(self, 'in_freq', data_frame.index.freqstr) return data_frame class PlotData(AttributeChecker): """ Methods: plot_inputs plot_outputs """ def __init__(self, input_df, units): super(PlotData, self).__init__(input_df) self.units = units def plot_inputs(self, _name=False): no_of_plots = len(self.input.columns) plt.close('all') fig, axis = plt.subplots(no_of_plots, sharex='all') fig.set_figheight(no_of_plots+2) fig.set_figwidth(10.48) idx = 0 for ax, col in zip(axis, self.input.columns): show_xaxis = False if idx > no_of_plots-2: show_xaxis = True if col in self.units: yl = self.units[col] else: yl = ' ' data = self.input[col] process_axis(ax, data, label=col, show_xaxis=show_xaxis, ylabel=yl, legend_kws={'markerscale':8}, max_xticks=4) idx += 1 plt.subplots_adjust(wspace=0.001, hspace=0.001) if _name: plt.savefig(_name, dpi=300, bbox_inches='tight') plt.show() def plot_outputs(self, name='', _name=False): def marker_scale(_col): if 'Monthly' in _col: return 4 elif 'Yearly' in _col: return 10 else: return 0.5 to_plot = [] for key in self.output.keys(): if name in key: to_plot.append(key) no_of_plots = len(to_plot) plt.close('all') fig, axis = plt.subplots(no_of_plots, sharex='all') if no_of_plots==1: axis = [axis] fig.set_figheight(no_of_plots+4) fig.set_figwidth(10.48) idx = 0 for ax, col in zip(axis, self.output.keys()): show_xaxis = False if idx > no_of_plots-2: show_xaxis = True data = self.output[col] process_axis(ax, data, ms=marker_scale(col), label=col, show_xaxis=show_xaxis, ylabel='mm', legend_kws={'markerscale': 8}, max_xticks=4) idx += 1 plt.subplots_adjust(wspace=0.001, hspace=0.001) if _name: plt.savefig(_name, dpi=300, bbox_inches='tight') plt.show() class PreProcessing(PlotData): """ Attributes freq_str: str daily_index: pd.DatetimeIndex freq_in_mins: int """ def __init__(self, input_df, units, constants, calculate_at='same', verbosity=1): super(PreProcessing, self).__init__(input_df, units) self.units = units self.default_cons = default_constants self.cons = constants self.freq_in_mins = calculate_at self.sb_cons = self.freq_in_mins self.lat_rad = self.cons self._check_compatability() self.verbosity = verbosity @property def seconds(self): """finds number of seconds between two steps of input data""" if len(self.input) > 1: return (self.input.index[1]-self.input.index[0])/np.timedelta64(1, 's') @property def sb_cons(self): return self._sb_cons @sb_cons.setter def sb_cons(self, freq_in_mins): self._sb_cons = freq_in_mins * SB_CONS @property def lat_rad(self): return self._lat_rad @lat_rad.setter def lat_rad(self, constants): if 'lat_rad' in constants: self._lat_rad = constants['lat_rad'] elif 'lat_dec_deg' in constants: self._lat_rad = constants['lat_dec_deg'] * 0.0174533 # # degree to radians else: raise ConnectionResetError("Provide latitude information in as lat_rat or as lat_dec_deg in constants") @property def freq_in_mins(self): return self._freq_in_mins @freq_in_mins.setter def freq_in_mins(self, calculate_at): if calculate_at is not None and calculate_at != 'same': if isinstance(calculate_at, str): in_minutes = freq_in_mins_from_string(calculate_at) else: raise TypeError("invalid type of frequency demanded", calculate_at) else: in_minutes = freq_in_mins_from_string(self.input.index.freqstr) self._freq_in_mins = in_minutes @property def freq_str(self) -> str: minutes = self.freq_in_mins freq_str = min_to_str(minutes) return freq_str def daily_index(self) -> pd.DatetimeIndex: start_year = justify_len(str(self.input.index[0].year)) end_year = justify_len(str(self.input.index[-1].year)) start_month = justify_len(str(self.input.index[0].month)) end_month = justify_len(str(self.input.index[0].month)) start_day = justify_len(str(self.input.index[0].day)) end_day = justify_len(str(self.input.index[0].day)) st = start_year + start_month + start_day en = end_year + end_month + end_day return pd.date_range(st, en, freq='D') def _check_compatability(self): self._preprocess_temp() self._preprocess_rh() self._check_wind_units() self._cehck_pressure_units() self._check_rad_units() # getting julian day self.input['jday'] = self.input.index.dayofyear if self.freq_in_mins == 60: a = self.input.index.hour ma = np.convolve(a, np.ones((2,)) / 2, mode='same') ma[0] = ma[1] - (ma[2] - ma[1]) self.input['half_hr'] = ma freq = self.input.index.freqstr if len(freq) > 1: setattr(self, 'no_of_hours', int(freq[0])) else: setattr(self, 'no_of_hours', 1) self.input['t1'] = np.zeros(len(self.input)) + self.no_of_hours elif self.freq_in_mins < 60: a = self.input.index.hour b = (self.input.index.minute + self.freq_in_mins / 2.0) / 60.0 self.input['half_hr'] = a + b self.input['t1'] = np.zeros(len(self.input)) + self.freq_in_mins / 60.0 for val in ['sol_rad', 'rn']: if val in self.input: if self.freq_in_mins <= 60: self.input['is_day'] = np.where(self.input[val].values > 0.1, 1, 0) return def _preprocess_rh(self): # make sure that we mean relative humidity calculated if possible if 'rel_hum' in self.input.columns: rel_hum = self.input['rel_hum'] rel_hum = np.where(rel_hum < 0.0, 0.0, rel_hum) rel_hum = np.where(rel_hum >= 100.0, 100.0, rel_hum) self.input['rh_mean'] = rel_hum self.input['rel_hum'] = rel_hum else: if 'rh_min' in self.input.columns: self.input['rh_mean'] = np.mean(np.array([self.input['rh_min'].values, self.input['rh_max'].values]), axis=0) return def _preprocess_temp(self): """ converts temperature related input to units of Centigrade if required. """ # converting temperature units to celsius for val in ['tmin', 'tmax', 'temp', 'tdew']: if val in self.input: t = Temp(self.input[val].values, self.units[val]) temp = t.Centigrade self.input[val] = np.where(temp < -30, -30, temp) # if 'temp' is given, it is assumed to be mean otherwise calculate mean and put it as `temp` in input dataframe. if 'temp' not in self.input.columns: if 'tmin' in self.input.columns and 'tmax' in self.input.columns: self.input['temp'] = np.mean(np.array([self.input['tmin'].values, self.input['tmax'].values]), axis=0) return def _check_wind_units(self): # check units of wind speed and convert if needed if 'wind_speed' in self.input: wind = self.input['wind_speed'].values wind = np.where(wind < 0.0, 0.0, wind) w = Speed(wind, self.units['wind_speed']) self.input['wind_speed'] = w.MeterPerSecond return def _cehck_pressure_units(self): """ converts pressure related input to units of KiloPascal if required. """ for pres in ['ea', 'es', 'vp_def']: if pres in self.input: p = Pressure(self.input[pres].values, self.units[pres]) self.input[pres] = p.KiloPascal def _check_rad_units(self): """ Currently it does not converts radiation units, only makes sure that they are > 0.0. """ for val in ['rn', 'sol_rad']: if val in self.input: rad = self.input[val].values rad = np.where(rad < 0.0, 0.0, rad) self.input[val] = rad class TransFormData(PreProcessing): """ transforms input or output data to different frequencies. """ def __init__(self, input_df, units, constants, calculate_at='same', verbosity=1): self.verbosity = verbosity input_df = self.freq_check(input_df, calculate_at) input_df = self.transform_data(input_df, calculate_at) super(TransFormData, self).__init__(input_df, units, constants, calculate_at, verbosity) def freq_check(self, input_df, freq: str): """ Makes sure that the input dataframe.index as frequency. It frequency is not there, it means it contains missing data. In this case this method fills missing values. In such case, the argument freq must not be `same`. """ if input_df.shape[0] > 1: input_df.index.freq = pd.infer_freq(input_df.index) if input_df.index.freq is None: if freq == 'same' or freq is None: raise ValueError("input data does not have uniform time-step. Provide a value for argument" " `calculate_at` ") else: new_freq = freq_in_mins_from_string(freq) try: input_df.index.freq = freq except ValueError: input_df = self.fill_missing_data(input_df, str(new_freq) + 'min') return input_df def fill_missing_data(self, df: pd.DataFrame, new_freq: str): if self.verbosity > 0: print("input contains missing values or time-steps") df = force_freq(df.copy(), new_freq, 'input', 'nearest') assert df.index.freqstr is not None return df def transform_data(self, input_df, calculate_at): if calculate_at == 'same' or calculate_at is None: df = input_df else: new_freq_mins = freq_in_mins_from_string(calculate_at) old_freq_mins = freq_in_mins_from_string(input_df.index.freqstr) if new_freq_mins == old_freq_mins: df = input_df elif new_freq_mins > old_freq_mins: # we want to calculate at higher/larger time-step print('downsampling input data from {} to {}'.format(old_freq_mins, new_freq_mins)) df = self.downsample_input(input_df, new_freq_mins) else: print('upsampling input data from {} to {}'.format(old_freq_mins, new_freq_mins)) # we want to calculate at smaller time-step df = self.upsample_input(input_df, new_freq_mins) return df def upsample_input(self, df, out_freq): # from larger timestep to smaller timestep, such as from daily to hourly for col in df.columns: df[col] = self.upsample_df(pd.DataFrame(df[col]), col, out_freq) return df def downsample_input(self, df, out_freq): # from low timestep to high timestep i.e from 1 hour to 24 hour # from hourly to daily for col in df.columns: df[col] = self.downsample_df(pd.DataFrame(df[col]), col, out_freq) return df def transform_etp(self, name): freq_to_trans = self.get_freq() down_sample = freq_to_trans['up_sample'] up_sample = freq_to_trans['down_sample'] for freq in up_sample: in_col_name = 'et_' + name + '_' + self.freq_str freq_str = min_to_str(freq) out_col_name = 'et_' + name + '_' + freq_str self.output[out_col_name] = self.upsample_df(pd.DataFrame(self.output[in_col_name]), 'et', freq) for freq in down_sample: in_col_name = 'et_' + name + '_' + self.freq_str freq_str = min_to_str(freq) out_col_name = 'et_' + name + '_' + freq_str self.output[out_col_name] = self.downsample_df(pd.DataFrame(self.output[in_col_name]), 'et', freq) def downsample_df(self, data_frame: pd.DataFrame, data_name: str, out_freq: int): # from low timestep to high timestep i.e from 1 hour to 24 hour # from hourly to daily col_name = data_frame.columns[0] data_frame = data_frame.copy() old_freq = data_frame.index.freq if self.verbosity > 1: print('downsampling {} data from {} to {}'.format(col_name, old_freq, min_to_str(out_freq))) out_freq = str(out_freq) + 'min' # e.g. from hourly to daily if data_name in ['temp', 'rel_hum', 'rh_min', 'rh_max', 'uz', 'u2', 'wind_speed_kph', 'q_lps']: return data_frame.resample(out_freq).mean() elif data_name in ['rain_mm', 'ss_gpl', 'sol_rad', 'etp', 'et']: return data_frame.resample(out_freq).sum() def upsample_df(self, data_frame, data_name, out_freq_int): # from larger timestep to smaller timestep, such as from daily to hourly out_freq = str(out_freq_int) + 'min' col_name = data_frame.columns[0] old_freq = data_frame.index.freqstr nan_idx = data_frame.isna() # preserving indices with nan values nan_idx_r = nan_idx.resample(out_freq).ffill() nan_idx_r = nan_idx_r.fillna(False) # the first value was being filled with NaN, idk y? data_frame = data_frame.copy() if self.verbosity > 1: print('upsampling {} data from {} to {}'.format(data_name, old_freq, min_to_str(out_freq_int))) # e.g from monthly to daily or from hourly to sub_hourly if data_name in ['temp', 'rel_hum', 'rh_min', 'rh_max', 'uz', 'u2', 'q_lps']: data_frame = data_frame.resample(out_freq).interpolate(method='linear') # filling those interpolated values with NaNs which were NaN before interpolation data_frame[nan_idx_r] = np.nan elif data_name in ['rain_mm', 'ss_gpl', 'sol_rad', 'pet', 'pet_hr', 'et', 'etp']: # distribute rainfall equally to smaller time steps. like hourly 17.4 will be 1.74 at 6 min resolution idx = data_frame.index[-1] + get_offset(data_frame.index.freqstr) data_frame = data_frame.append(data_frame.iloc[[-1]].rename({data_frame.index[-1]: idx})) data_frame = add_freq(data_frame) df1 = data_frame.resample(out_freq).ffill().iloc[:-1] df1[col_name] /= df1.resample(data_frame.index.freqstr)[col_name].transform('size') data_frame = df1.copy() # filling those interpolated values with NaNs which were NaN before interpolation data_frame[nan_idx_r] = np.nan return data_frame def get_freq(self) -> dict: """ decides which frequencies to """ all_freqs = {'Sub_hourly': {'down_sample': [1], 'up_sample': [60, 1440, 43200, 525600]}, 'Hourly': {'down_sample': [1], 'up_sample': [1440, 43200, 525600]}, 'Sub_daily': {'down_sample': [1, 60], 'up_sample': [1440, 43200, 525600]}, 'Daily': {'down_sample': [1, 60], 'up_sample': [43200, 525600]}, 'Sub_monthly': {'down_sample': [1, 60, 1440], 'up_sample': [43200, 525600]}, 'Monthly': {'down_sample': [1, 60, 1440], 'up_sample': [525600]}, 'Annualy': {'down_sample': [1, 60, 1440, 43200], 'up_sample': []} } return all_freqs[self.freq_str] class Utils(TransFormData): """ Contains functions methods for calculation of ETP with various methods. Methods: net_rad atm_pressure _wind_2m """ def __init__(self, input_df, units, constants, calculate_at=None, verbosity: bool=1): """ Arguments: calculate_at :a valid pandas dataframe frequency verbosity : """ super(Utils, self).__init__(input_df, units, constants, calculate_at=calculate_at, verbosity=verbosity) @property def seasonal_correction(self): """Seasonal correction for solar time (Eqs. 57 & 58) uses ---------- doy : scalar or array_like of shape(M, ) Day of year. Returns ------ ndarray Seasonal correction [hour] """ doy = self.input['jday'] b = 2 * math.pi * (doy - 81.) / 364. return 0.1645 * np.sin(2 * b) - 0.1255 * np.cos(b) - 0.0250 * np.sin(b) def net_rad(self, ea, rs=None): """ Calculate daily net radiation at the crop surface, assuming a grass reference crop. Net radiation is the difference between the incoming net shortwave (or solar) radiation and the outgoing net longwave radiation. Output can be converted to equivalent evaporation [mm day-1] using ``energy2evap()``. Based on equation 40 in Allen et al (1998). :uses rns: Net incoming shortwave radiation [MJ m-2 day-1]. Can be estimated using ``net_in_sol_rad()``. rnl: Net outgoing longwave radiation [MJ m-2 day-1]. Can be estimated using ``net_out_lw_rad()``. :return: net radiation [MJ m-2 timestep-1]. :rtype: float """ if 'rn' not in self.input: if rs is None: rs = self.rs() if 'rns' not in self.input: rns = self.net_in_sol_rad(rs) else: rns = self.input['rns'] rnl = self.net_out_lw_rad(rs=rs, ea=ea) rn = np.subtract(rns, rnl) self.input['rn'] = rn # for future use else: rn = self.input['rn'] return rn def rs(self): """ calculate solar radiation either from temperature (as second preference, as it is les accurate) or from daily _sunshine hours as second preference). Sunshine hours is given second preference because sunshine hours will remain same for all years if sunshine hours data is not provided (which is difficult to obtain), but temperature data which is easy to obtain and thus will be different for different years""" if 'sol_rad' not in self.input.columns: if 'sunshine_hrs' in self.input.columns: rs = self.sol_rad_from_sun_hours() if self.verbosity > 0: print("Sunshine hour data is used for calculating incoming solar radiation") elif 'tmin' in self.input.columns and 'tmax' in self.input.columns: rs = self._sol_rad_from_t() if self.verbosity > 0: print("solar radiation is calculated from temperature") else: raise ValueError("""Unable to calculate solar radiation. Provide either of following inputs: sol_rad, sunshine_hrs or tmin and tmax""") else: rs = self.input['sol_rad'] self.input['sol_rad'] = rs return rs def net_in_sol_rad(self, rs): """ Calculate net incoming solar (or shortwave) radiation (*Rns*) from gross incoming solar radiation, assuming a grass reference crop. Net incoming solar radiation is the net shortwave radiation resulting from the balance between incoming and reflected solar radiation. The output can be converted to equivalent evaporation [mm day-1] using ``energy2evap()``. Based on FAO equation 38 in Allen et al (1998). Rns = (1-a)Rs uses Gross incoming solar radiation [MJ m-2 day-1]. If necessary this can be estimated using functions whose name begins with 'solar_rad_from'. :param rs: solar radiation albedo: Albedo of the crop as the proportion of gross incoming solar radiation that is reflected by the surface. Default value is 0.23, which is the value used by the FAO for a short grass reference crop. Albedo can be as high as 0.95 for freshly fallen snow and as low as 0.05 for wet bare soil. A green vegetation over has an albedo of about 0.20-0.25 (Allen et al, 1998). :return: Net incoming solar (or shortwave) radiation [MJ m-2 day-1]. :rtype: float """ return np.multiply((1 - self.cons['albedo']), rs) def net_out_lw_rad(self, rs, ea): """ Estimate net outgoing longwave radiation. This is the net longwave energy (net energy flux) leaving the earth's surface. It is proportional to the absolute temperature of the surface raised to the fourth power according to the Stefan-Boltzmann law. However, water vapour, clouds, carbon dioxide and dust are absorbers and emitters of longwave radiation. This function corrects the Stefan- Boltzmann law for humidity (using actual vapor pressure) and cloudiness (using solar radiation and clear sky radiation). The concentrations of all other absorbers are assumed to be constant. The output can be converted to equivalent evaporation [mm timestep-1] using ``energy2evap()``. Based on FAO equation 39 in Allen et al (1998). uses: Absolute daily minimum temperature [degrees Kelvin] Absolute daily maximum temperature [degrees Kelvin] Solar radiation [MJ m-2 day-1]. If necessary this can be estimated using ``sol+rad()``. Clear sky radiation [MJ m-2 day-1]. Can be estimated using ``cs_rad()``. Actual vapour pressure [kPa]. Can be estimated using functions with names beginning with 'avp_from'. :param ea: actual vapour pressure, can be calculated using method avp_from :param rs: solar radiation :return: Net outgoing longwave radiation [MJ m-2 timestep-1] :rtype: float """ if 'tmin' in self.input.columns and 'tmax' in self.input.columns: added = np.add(np.power(self.input['tmax'].values+273.16, 4), np.power(self.input['tmin'].values+273.16, 4)) divided = np.divide(added, 2.0) else: divided = np.power(self.input['temp'].values+273.16, 4.0) tmp1 = np.multiply(self.sb_cons, divided) tmp2 = np.subtract(0.34, np.multiply(0.14, np.sqrt(ea))) tmp3 = np.subtract(np.multiply(1.35, np.divide(rs, self._cs_rad())), 0.35) return np.multiply(tmp1, np.multiply(tmp2, tmp3)) # eq 39 def sol_rad_from_sun_hours(self): """ Calculate incoming solar (or shortwave) radiation, *Rs* (radiation hitting a horizontal plane after scattering by the atmosphere) from relative sunshine duration. If measured radiation data are not available this method is preferable to calculating solar radiation from temperature. If a monthly mean is required then divide the monthly number of sunshine hours by number of days in the month and ensure that *et_rad* and *daylight_hours* was calculated using the day of the year that corresponds to the middle of the month. Based on equations 34 and 35 in Allen et al (1998). uses: Number of daylight hours [hours]. Can be calculated using ``daylight_hours()``. Sunshine duration [hours]. Can be calculated using ``sunshine_hours()``. Extraterrestrial radiation [MJ m-2 day-1]. Can be estimated using ``et_rad()``. :return: Incoming solar (or shortwave) radiation [MJ m-2 day-1] :rtype: float """ # 0.5 and 0.25 are default values of regression constants (Angstrom values) # recommended by FAO when calibrated values are unavailable. ss_hrs = self.input['sunshine_hrs'] # sunshine_hours dl_hrs = self.daylight_fao56() # daylight_hours return np.multiply(np.add(self.cons['a_s'], np.multiply(np.divide(ss_hrs, dl_hrs), self.cons['b_s'])), self._et_rad()) def _sol_rad_from_t(self, coastal=False): """ Estimate incoming solar (or shortwave) radiation [Mj m-2 day-1] , *Rs*, (radiation hitting a horizontal plane after scattering by the atmosphere) from min and max temperature together with an empirical adjustment coefficient for 'interior' and 'coastal' regions. The formula is based on equation 50 in Allen et al (1998) which is the Hargreaves radiation formula (Hargreaves and Samani, 1982, 1985). This method should be used only when solar radiation or sunshine hours data are not available. It is only recommended for locations where it is not possible to use radiation data from a regional station (either because climate conditions are heterogeneous or data are lacking). **NOTE**: this method is not suitable for island locations due to the moderating effects of the surrounding water. """ # Determine value of adjustment coefficient [deg C-0.5] for # coastal/interior locations if coastal: # for 'coastal' locations, situated on or adjacent to the coast of a large l adj = 0.19 # and mass and where air masses are influenced by a nearby water body, else: # for 'interior' locations, where land mass dominates and air adj = 0.16 # masses are not strongly influenced by a large water body et_rad = None cs_rad = None if 'et_rad' not in self.input: et_rad = self._et_rad() self.input['et_rad'] = et_rad if 'cs_rad' not in self.input: cs_rad = self._cs_rad() self.input['cs_rad'] = cs_rad sol_rad = np.multiply(adj, np.multiply(np.sqrt(np.subtract(self.input['tmax'].values, self.input['tmin'].values)), et_rad)) # The solar radiation value is constrained by the clear sky radiation return np.min(np.array([sol_rad, cs_rad]), axis=0) def _cs_rad(self, method='asce'): """ Estimate clear sky radiation from altitude and extraterrestrial radiation. Based on equation 37 in Allen et al (1998) which is recommended when calibrated Angstrom values are not available. et_rad is Extraterrestrial radiation [MJ m-2 day-1]. Can be estimated using ``et_rad()``. :return: Clear sky radiation [MJ m-2 day-1] :rtype: float """ if method.upper() == 'ASCE': return (0.00002 * self.cons['altitude'] + 0.75) * self._et_rad() elif method.upper() == 'REFET': sc = self.seasonal_correction() _omega = omega(solar_time_rad(self.cons['long_dec_deg'], self.input['half_hour'], sc)) else: raise ValueError def daylight_fao56(self): """get number of maximum hours of sunlight for a given latitude using equation 34 in Fao56. Annual variation of sunlight hours on earth are plotted in figre 14 in ref 1. dr = pd.date_range('20110903 00:00', '20110903 23:59', freq='H') sol_rad = np.array([0.45 for _ in range(len(dr))]) df = pd.DataFrame(np.stack([sol_rad],axis=1), columns=['sol_rad'], index=dr) constants = {'lat' : -20} units={'solar_rad': 'MegaJoulePerMeterSquarePerHour'} eto = ReferenceET(df,units,constants=constants) N = np.unique(eto.daylight_fao56()) array([11.66]) 1) http://www.fao.org/3/X0490E/x0490e07.htm""" ws = self.sunset_angle() hrs = (24/3.14) * ws # if self.input_freq == 'Monthly': # df = pd.DataFrame(hrs, index=self.daily_index) # hrs = df.resample('M').mean().values.reshape(-1,) return hrs def _et_rad(self): """ Estimate extraterrestrial radiation (*Ra*, 'top of the atmosphere radiation'). For daily, it is based on equation 21 in Allen et al (1998). If monthly mean radiation is required make sure *sol_dec*. *sha* and *irl* have been calculated using the day of the year that corresponds to the middle of the month. **Note**: From Allen et al (1998): "For the winter months in latitudes greater than 55 degrees (N or S), the equations have limited validity. Reference should be made to the Smithsonian Tables to assess possible deviations." :return: extraterrestrial radiation [MJ m-2 timestep-1] :rtype: float dr = pd.date_range('20110903 00:00', '20110903 23:59', freq='D') sol_rad = np.array([0.45 ]) df = pd.DataFrame(np.stack([sol_rad],axis=1), columns=['sol_rad'], index=dr) constants = {'lat' : -20} units={'sol_rad': 'MegaJoulePerMeterSquarePerHour'} eto = ReferenceET(df,units,constants=constants) ra = eto._et_rad() [32.27] """ if self.freq_in_mins < 1440: # TODO should sub_hourly be different from Hourly? j = (3.14/180) * self.cons['lat_dec_deg'] # eq 22 phi dr = self.inv_rel_dist_earth_sun() # eq 23 sol_dec = self.dec_angle() # eq 24 # gamma w1, w2 = self.solar_time_angle() t1 = (12*60)/math.pi t2 = np.multiply(t1, np.multiply(SOLAR_CONSTANT, dr)) t3 = np.multiply(np.subtract(w2, w1), np.multiply(np.sin(j), np.sin(sol_dec))) t4 = np.subtract(np.sin(w2), np.sin(w1)) t5 = np.multiply(np.multiply(np.cos(j), np.cos(sol_dec)), t4) t6 = np.add(t5, t3) ra = np.multiply(t2, t6) # eq 28 elif self.freq_in_mins == 1440: # daily frequency sol_dec = self.dec_angle() # based on julian day sha = self.sunset_angle() # sunset hour angle[radians], based on latitude ird = self.inv_rel_dist_earth_sun() tmp1 = (24.0 * 60.0) / math.pi tmp2 = np.multiply(sha, np.multiply(math.sin(self.lat_rad), np.sin(sol_dec))) tmp3 = np.multiply(math.cos(self.lat_rad), np.multiply(np.cos(sol_dec), np.sin(sha))) ra = np.multiply(tmp1, np.multiply(SOLAR_CONSTANT, np.multiply(ird, np.add(tmp2, tmp3)))) # eq 21 else: raise NotImplementedError self.input['ra'] = ra return ra def sunset_angle(self): """ calculates sunset hour angle in radians given by Equation 25 in Fao56 (1) 1): http://www.fao.org/3/X0490E/x0490e07.htm""" if 'sha' not in self.input: j = (3.14/180.0) * self.cons['lat_dec_deg'] # eq 22 d = self.dec_angle() # eq 24, declination angle angle = np.arccos(-np.tan(j)*np.tan(d)) # eq 25 self.input['sha'] = angle else: angle = self.input['sha'].values return angle def inv_rel_dist_earth_sun(self): """ Calculate the inverse relative distance between earth and sun from day of the year. Based on FAO equation 23 in Allen et al (1998). ird = 1.0 + 0.033 * cos( [2pi/365] * j ) :return: Inverse relative distance between earth and the sun :rtype: np array """ if 'ird' not in self.input: inv1 = np.multiply(2*math.pi/365.0, self.input['jday'].values) inv2 = np.cos(inv1) inv3 = np.multiply(0.033, inv2) ird = np.add(1.0, inv3) self.input['ird'] = ird else: ird = self.input['ird'] return ird def dec_angle(self): """ finds solar declination angle """ if 'sol_dec' not in self.input: if self.freq_str == 'monthly': solar_dec = np.array(0.409 * np.sin(2*3.14 * self.daily_index().dayofyear/365 - 1.39)) else: solar_dec = 0.409 * np.sin(2*3.14 * self.input['jday'].values/365 - 1.39) # eq 24, declination angle self.input['solar_dec'] = solar_dec else: solar_dec = self.input['solar_dec'] return solar_dec def solar_time_angle(self): """ returns solar time angle at start, mid and end of period using equation 29, 31 and 30 respectively in Fao w = pi/12 [(t + 0.06667 ( lz-lm) + Sc) -12] t =standard clock time at the midpoint of the period [hour]. For example for a period between 14.00 and 15.00 hours, t = 14.5 lm = longitude of the measurement site [degrees west of Greenwich] lz = longitude of the centre of the local time zone [degrees west of Greenwich] w1 = w - pi*t1/24 w2 = w + pi*t1/24 where: w = solar time angle at midpoint of hourly or shorter period [rad] t1 = length of the calculation period [hour]: i.e., 1 for hourly period or 0.5 for a 30-minute period www.fao.org/3/X0490E/x0490e07.htm """ # TODO find out how to calculate lz # https://github.com/djlampert/PyHSPF/blob/c3c123acf7dba62ed42336f43962a5e4db922422/src/pyhspf/preprocessing/etcalculator.py#L610 lz = np.abs(15 * round(self.cons['long_dec_deg'] / 15.0)) lm = np.abs(self.cons['long_dec_deg']) t1 = 0.0667*(lz-lm) t2 = self.input['half_hr'].values + t1 + self.solar_time_cor() t3 = np.subtract(t2, 12) w = np.multiply((math.pi/12.0), t3) # eq 31, in rad w1 = np.subtract(w, np.divide(np.multiply(math.pi, self.input['t1']).values, 24.0)) # eq 29 w2 = np.add(w, np.divide(np.multiply(math.pi, self.input['t1']).values, 24.0)) # eq 30 return w1, w2 def solar_time_cor(self): """seasonal correction for solar time by implementation of eqation 32 in hour, `Sc`""" upar = np.multiply((2*math.pi), np.subtract(self.input['jday'].values, 81)) b = np.divide(upar, 364) # eq 33 t1 = np.multiply(0.1645, np.sin(np.multiply(2, b))) t2 = np.multiply(0.1255, np.cos(b)) t3 = np.multiply(0.025, np.sin(b)) return t1-t2-t3 # eq 32 def avp_from_rel_hum(self): """ Estimate actual vapour pressure (*ea*) from saturation vapour pressure and relative humidity. Based on FAO equation 17 in Allen et al (1998). ea = [ e_not(tmin)RHmax/100 + e_not(tmax)RHmin/100 ] / 2 uses Saturation vapour pressure at daily minimum temperature [kPa]. Saturation vapour pressure at daily maximum temperature [kPa]. Minimum relative humidity [%] Maximum relative humidity [%] :return: Actual vapour pressure [kPa] :rtype: float http://www.fao.org/3/X0490E/x0490e07.htm#TopOfPage """ if 'ea' in self.input: avp = self.input['ea'] else: avp = 0.0 # TODO `shub_hourly` calculation should be different from `Hourly` # use equation 54 in http://www.fao.org/3/X0490E/x0490e08.htm#TopOfPage if self.freq_in_mins <= 60: # for hourly or sub_hourly avp = np.multiply(self.sat_vp_fao56(self.input['temp'].values), np.divide(self.input['rel_hum'].values, 100.0)) elif self.freq_in_mins == 1440: if 'rh_min' in self.input.columns and 'rh_max' in self.input.columns: tmp1 = np.multiply(self.sat_vp_fao56(self.input['tmin'].values), np.divide(self.input['rh_max'].values, 100.0)) tmp2 = np.multiply(self.sat_vp_fao56(self.input['tmax'].values), np.divide(self.input['rh_min'].values, 100.0)) avp = np.divide(np.add(tmp1, tmp2), 2.0) elif 'rel_hum' in self.input.columns: # calculation actual vapor pressure from mean humidity # equation 19 t1 = np.divide(self.input['rel_hum'].values, 100) t2 = np.divide(np.add(self.sat_vp_fao56(self.input['tmax'].values), self.sat_vp_fao56(self.input['tmin'].values)), 2.0) avp = np.multiply(t1, t2) else: raise NotImplementedError(" for frequency of {} minutes, actual vapour pressure can not be calculated" .format(self.freq_in_mins)) self.input['ea'] = avp return avp def sat_vp_fao56(self, temp): """calculates saturation vapor pressure (*e_not*) as given in eq 11 of FAO 56 at a given temp which must be in units of centigrade. using Tetens equation es = 0.6108 * exp((17.26*temp)/(temp+273.3)) where es is in KiloPascal units. Murray, F. W., On the computation of saturation vapor pressure, J. Appl. Meteorol., 6, 203-204, 1967. """ # e_not_t = multiply(0.6108, np.exp( multiply(17.26939, temp) / add(temp , 237.3))) e_not_t = np.multiply(0.6108, np.exp(np.multiply(17.27, np.divide(temp, np.add(temp, 237.3))))) return e_not_t def soil_heat_flux(self, rn=None): if self.freq_in_mins == 1440: return 0.0 elif self.freq_in_mins <= 60: gd = np.multiply(0.1, rn) gn = np.multiply(0.5, rn) return np.where(self.input['is_day'] == 1, gd, gn) elif self.freq_in_mins > 1440: raise NotImplementedError def mean_sat_vp_fao56(self): """ calculates mean saturation vapor pressure (*es*) for a day, weak or month according to eq 12 of FAO 56 using tmin and tmax which must be in centigrade units """ es = None # for case when tmax and tmin are not given and only `temp` is given if 'tmax' not in self.input: if 'temp' in self.input: es = self.sat_vp_fao56(self.input['temp']) # for case when `tmax` and `tmin` are provided elif 'tmax' in self.input: es_tmax = self.sat_vp_fao56(self.input['tmax'].values) es_tmin = self.sat_vp_fao56(self.input['tmin'].values) es = np.mean(np.array([es_tmin, es_tmax]), axis=0) else: raise NotImplementedError return es def psy_const(self) -> float: """ Calculate the psychrometric constant. This method assumes that the air is saturated with water vapour at the minimum daily temperature. This assumption may not hold in arid areas. Based on equation 8, page 95 in Allen et al (1998). uses Atmospheric pressure [kPa]. :return: Psychrometric constant [kPa degC-1]. :rtype: array """ return np.multiply(0.000665, self.atm_pressure()) def slope_sat_vp(self, t): """ slope of the relationship between saturation vapour pressure and temperature for a given temperature according to equation 13 in Fao56[1]. delta = 4098 [0.6108 exp(17.27T/T+237.3)] / (T+237.3)^2 :param t: Air temperature [deg C]. Use mean air temperature for use in Penman-Monteith. :return: Saturation vapour pressure [kPa degC-1] [1]: http://www.fao.org/3/X0490E/x0490e07.htm#TopOfPage """ to_exp = np.divide(np.multiply(17.27, t), np.add(t, 237.3)) tmp = np.multiply(4098, np.multiply(0.6108, np.exp(to_exp))) return np.divide(tmp, np.power(np.add(t, 237.3), 2)) def _wind_2m(self, method='fao56', z_o=0.001): """ converts wind speed (m/s) measured at height z to 2m using either FAO 56 equation 47 or McMohan eq S4.4. u2 = uz [ 4.87/ln(67.8z-5.42) ] eq 47 in [1], eq S5.20 in [2]. u2 = uz [ln(2/z_o) / ln(z/z_o)] eq S4.4 in [2] :param `method` string, either of `fao56` or `mcmohan2013`. if `mcmohan2013` is chosen then `z_o` is used :param `z_o` float, roughness height. Default value is from [2] :return: Wind speed at 2 m above the surface [m s-1] [1] http://www.fao.org/3/X0490E/x0490e07.htm [2] McMahon, T., Peel, M., Lowe, L., Srikanthan, R. & McVicar, T. 2012. Estimating actual, potential, reference crop and pan evaporation using standard meteorological data: a pragmatic synthesis. Hydrology and Earth System Sciences Discussions, 9, 11829-11910. https://www.hydrol-earth-syst-sci.net/17/1331/2013/hess-17-1331-2013-supplement.pdf """ # if value of height at which wind is measured is not given, then don't convert if 'wind_z' in self.cons: wind_z = self.cons['wind_z'] else: wind_z = None if wind_z is None: if self.verbosity > 0: print("""WARNING: givn wind data is not at 2 meter and `wind_z` is also not given. So assuming wind given as measured at 2m height""") return self.input['wind_speed'].values else: if method == 'fao56': return np.multiply(self.input['wind_speed'], (4.87 / math.log((67.8 * wind_z) - 5.42))) else: return np.multiply(self.input['wind_speed'].values, math.log(2/z_o) / math.log(wind_z/z_o)) def atm_pressure(self) -> float: """ Estimate atmospheric pressure from altitude. Calculated using a simplification of the ideal gas law, assuming 20 degrees Celsius for a standard atmosphere. Based on equation 7, page 62 in Allen et al (1998). :return: atmospheric pressure [kPa] :rtype: float """ tmp = (293.0 - (0.0065 * self.cons['altitude'])) / 293.0 return math.pow(tmp, 5.26) * 101.3 def tdew_from_t_rel_hum(self): """ Calculates the dew point temperature given temperature and relative humidity. Following formulation given at https://goodcalculators.com/dew-point-calculator/ The formula is Tdew = (237.3 × [ln(RH/100) + ( (17.27×T) / (237.3+T) )]) / (17.27 - [ln(RH/100) + ( (17.27×T) / (237.3+T) )]) Where: Tdew = dew point temperature in degrees Celsius (°C), T = air temperature in degrees Celsius (°C), RH = relative humidity (%), ln = natural logarithm. The formula also holds true as calculations shown at http://www.decatur.de/javascript/dew/index.html """ temp = self.input['temp'] neum = (237.3 * (np.log(self.input['rel_hum'] / 100.0) + ((17.27 * temp) / (237.3 + temp)))) denom = (17.27 - (np.log(self.input['rel_hum'] / 100.0) + ((17.27 * temp) / (237.3 + temp)))) td = neum / denom self.input['tdew'] = td return def evap_pan(self): """ pan evaporation which is used in almost all penman related methods """ ap = self.cons['pen_ap'] lat = self.cons['lat_dec_deg'] rs = self.rs() delta = self.slope_sat_vp(self.input['temp'].values) gamma = self.psy_const() vabar = self.avp_from_rel_hum() # Vapour pressure vas = self.mean_sat_vp_fao56() u2 = self._wind_2m() r_nl = self.net_out_lw_rad(rs=rs, ea=vabar) # net outgoing longwave radiation ra = self._et_rad() # eq 34 in Thom et al., 1981 f_pan_u = np.add(1.201, np.multiply(1.621, u2)) # eq 4 and 5 in Rotstayn et al., 2006 p_rad = np.add(1.32, np.add(np.multiply(4e-4, lat), np.multiply(8e-5, lat**2))) f_dir = np.add(-0.11, np.multiply(1.31, np.divide(rs, ra))) rs_pan = np.multiply(np.add(np.add(np.multiply(f_dir, p_rad), np.multiply(1.42, np.subtract(1, f_dir))), np.multiply(0.42, self.cons['albedo'])), rs) rn_pan = np.subtract(np.multiply(1-self.cons['alphaA'], rs_pan), r_nl) # S6.1 in McMohan et al 2013 tmp1 = np.multiply(np.divide(delta, np.add(delta, np.multiply(ap, gamma))), np.divide(rn_pan, LAMBDA)) tmp2 = np.divide(np.multiply(ap, gamma), np.add(delta, np.multiply(ap, gamma))) tmp3 = np.multiply(f_pan_u, np.subtract(vas, vabar)) tmp4 = np.multiply(tmp2, tmp3) epan = np.add(tmp1, tmp4) return epan def rad_to_evap(self): """ converts solar radiation to equivalent inches of water evaporation SRadIn[in/day] = SolRad[Ley/day] / ((597.3-0.57) * temp[centigrade]) * 2.54) [1] or using equation 20 of FAO chapter 3 from TABLE 3 in FAO chap 3. SRadIn[mm/day] = 0.408 * Radiation[MJ m-2 day-1] SRadIn[mm/day] = 0.035 * Radiation[Wm-2] SRadIn[mm/day] = Radiation[MJ m-2 day-1] / 2.45 SRadIn[mm/day] = Radiation[J cm-2 day-1] / 245 SRadIn[mm/day] = Radiation[Wm-2] / 28.4 [1] https://github.com/respec/BASINS/blob/4356aa9481eb7217cb2cbc5131a0b80a932907bf/atcMetCmp/modMetCompute.vb#L1251 https://github.com/DanluGuo/Evapotranspiration/blob/8efa0a2268a3c9fedac56594b28ac4b5197ea3fe/R/Evapotranspiration.R http://www.fao.org/3/X0490E/x0490e07.htm """ # TODO following equation assumes radiations in langleys/day ando output in Inches tmp1 = np.multiply(np.subtract(597.3, np.multiply(0.57, self.input['temp'].values)), 2.54) rad_in = np.divide(self.input['sol_rad'].values, tmp1) return rad_in def equil_temp(self, et_daily): # equilibrium temperature T_e t_e = self.input['temp'].copy() ta = self.input['temp'] vabar = self.avp_from_rel_hum() r_n = self.net_rad(vabar) # net radiation gamma = self.psy_const() for i in range(9999): v_e = 0.6108 * np.exp(17.27 * t_e/(t_e + 237.3)) # saturated vapour pressure at T_e (S2.5) t_e_new = ta - 1 / gamma * (1 - r_n / (LAMBDA * et_daily)) * (v_e - vabar) # rearranged from S8.8 delta_t_e = t_e_new - t_e maxdelta_t_e = np.abs(np.max(delta_t_e)) t_e = t_e_new if maxdelta_t_e < 0.01: break return t_e def freq_in_mins_from_string(input_string: str) -> int: if has_numbers(input_string): in_minutes = split_freq(input_string) elif input_string.upper() in ['D', 'H', 'M', 'DAILY', 'HOURLY', 'MONTHLY', 'YEARLY', 'MIN', 'MINUTE']: in_minutes = str_to_mins(input_string.upper()) else: raise TypeError("invalid input string", input_string) return int(in_minutes) def str_to_mins(input_string: str) -> int: d = {'MIN': 1, 'MINUTE': 1, 'DAILY': 1440, 'D': 1440, 'HOURLY': 60, 'HOUR': 60, 'H': 60, 'MONTHLY': 43200, 'M': 43200, 'YEARLY': 525600 } return d[input_string] def split_freq(freq_str: str) -> int: match = re.match(r"([0-9]+)([a-z]+)", freq_str, re.I) if match: minutes, freq = match.groups() if freq.upper() in ['H', 'HOURLY', 'HOURS', 'HOUR']: minutes = int(minutes) * 60 elif freq.upper() in ['D', 'DAILY', 'DAY', 'DAYS']: minutes = int(minutes) * 1440 return int(minutes) else: raise NotImplementedError def has_numbers(input_string: str) -> bool: return bool(re.search(r'\d', input_string)) def justify_len(string: str, length: int = 2, pad: str = '0') -> str: if len(string) < length: zeros_to_pad = pad * int(len(string) - length) new_string = zeros_to_pad + string else: new_string = string return new_string def add_freq(dataframe, name=None, _force_freq=None, method=None): """Add a frequency attribute to idx, through inference or directly. Returns a copy. If `freq` is None, it is inferred. """ idx = dataframe.index idx = idx.copy() # if freq is None: if idx.freq is None: freq = pd.infer_freq(idx) idx.freq = freq if idx.freq is None: if _force_freq is not None: dataframe = force_freq(dataframe, _force_freq, name, method=method) else: raise AttributeError('no discernible frequency found in {} for {}. Specify' ' a frequency string with `freq`.'.format(name, name)) else: print('frequency {} is assigned to {}'.format(idx.freq, name)) dataframe.index = idx return dataframe def force_freq(data_frame, freq_to_force, name, method=None): old_nan_counts = data_frame.isna().sum() old_shape = data_frame.shape dr = pd.date_range(data_frame.index[0], data_frame.index[-1], freq=freq_to_force) df_unique = data_frame[~data_frame.index.duplicated(keep='first')] # first remove duplicate indices if present if method: df_idx_sorted = df_unique.sort_index() df_reindexed = df_idx_sorted.reindex(dr, method='nearest') else: df_reindexed = df_unique.reindex(dr, fill_value=np.nan) df_reindexed.index.freq = pd.infer_freq(df_reindexed.index) new_nan_counts = df_reindexed.isna().sum() print('Frequency {} is forced to {} dataframe, NaN counts changed from {} to {}, shape changed from {} to {}' .format(df_reindexed.index.freq, name, old_nan_counts.values, new_nan_counts.values, old_shape, df_reindexed.shape)) return df_reindexed def min_to_str(minutes: int) -> str: if minutes == 1: freq_str = 'Minute' elif 60 > minutes > 1: freq_str = 'Sub_hourly' elif minutes == 60: freq_str = 'Hourly' elif 1440 > minutes > 60: freq_str = 'Sub-daily' elif minutes == 1440: freq_str = 'Daily' elif 43200 > minutes > 1440: freq_str = 'Sub-monthly' elif minutes == 43200: freq_str = 'Monthly' elif 525600 > minutes > 43200: freq_str = 'Sub-yearly' elif minutes == 525600: freq_str = 'Yearly' else: raise ValueError("Can not calculate frequency string from given frequency in minutes ", minutes) return freq_str time_step = {'D': 'Day', 'H': 'Hour', 'M': 'MonthEnd'} def get_offset(freqstr: str) -> str: offset_step = 1 if freqstr in time_step: freqstr = time_step[freqstr] elif has_numbers(freqstr): in_minutes = split_freq(freqstr) freqstr = 'Minute' offset_step = int(in_minutes) offset = getattr(pd.offsets, freqstr)(offset_step) return offset def _wrap(x, x_min, x_max): """Wrap floating point values into range Parameters ---------- x : ndarray Values to wrap. x_min : float Minimum value in output range. x_max : float Maximum value in output range. Returns ------- ndarray """ return np.mod((x - x_min), (x_max - x_min)) + x_min def omega(solar_time): """Solar hour angle (Eq. 55) Parameters ---------- solar_time : scalar or array_like of shape(M, ) Solar time (i.e. noon is 0) [hours]. Returns ------- omega : ndarray Hour angle [radians]. """ _omega = (2 * math.pi / 24.0) * solar_time # Need to adjust omega so that the values go from -pi to pi # Values outside this range are wrapped (i.e. -3*pi/2 -> pi/2) _omega = _wrap(_omega, -math.pi, math.pi) return _omega def solar_time_rad(lon, time_mid, sc): """Solar time (i.e. noon is 0) (Eq. 55) Parameters ---------- lon : scalar or array_like of shape(M, ) Longitude [radians]. time_mid : scalar or array_like of shape(M, ) UTC time at midpoint of period [hours]. sc : scalar or array_like of shape(M, ) Seasonal correction [hours]. Returns ------- ndarray Solar time [hours]. Notes ----- This function could be integrated into the _omega() function since they are always called together (i.e. _omega(_solar_time_rad()). It was built independently from _omega to eventually support having a separate solar_time functions for longitude in degrees. """ return time_mid + (lon * 24 / (2 * math.pi)) + sc - 12
6a4b9b33ccb4907b8e2d6194e8a505fcd0aaaeb0
523f8f5febbbfeb6d42183f2bbeebc36f98eadb5
/539.py
3f49db2b3056bb0ea18a9558663dea67f0a5b806
[]
no_license
saleed/LeetCode
655f82fdfcc3000400f49388e97fc0560f356af0
48b43999fb7e2ed82d922e1f64ac76f8fabe4baa
refs/heads/master
2022-06-15T21:54:56.223204
2022-05-09T14:05:50
2022-05-09T14:05:50
209,430,056
2
0
null
null
null
null
UTF-8
Python
false
false
580
py
class Solution(object): def findMinDifference(self, timePoints): """ :type timePoints: List[str] :rtype: int """ timePoints.sort() diff=float("inf") for i in range(1,len(timePoints)): time1=timePoints[i%len(timePoints)] time2=timePoints[(i-1)%len(timePoints)] hour1=int(time1[:2]) hour2=int(time2[:2]) minute1=int(time1[3:]) minute2=int(time2[3:]) diff=min(diff,((hour1-hour2)*60+minute1-minute2+(24*60))%(24*60)) return diff
28c68876752e055269fc5f373c2077f62b221565
f0bb39fa0d5eb80f081e9f39e59107c9e5f1d473
/src/implem/ResCNF.py
1f2efcb9d9a097a5542c320b2cb0a1a26f371095
[]
no_license
TomVeniat/bsn
f30411e64152a302dde7bfa1426bc2d9fdb3fe80
04337e3ea147563768f62aaa496cdb599352487b
refs/heads/master
2020-03-17T21:21:03.185920
2019-02-25T12:41:57
2019-02-25T12:41:57
133,954,480
29
5
null
null
null
null
UTF-8
Python
false
false
11,450
py
from numbers import Number import networkx as nx import numpy as np import torch.nn.functional as F from torch import nn, torch from src.interfaces.NetworkBlock import ConvBn, NetworkBlock, Add_Block from src.networks.StochasticSuperNetwork import StochasticSuperNetwork from src.utils import loss from src.utils.drawers.ResCNFDrawer import ResCNFDrawer class BasicBlock(NetworkBlock): n_layers = 2 n_comp_steps = 1 def __init__(self, in_chan, out_chan, bias, **kwargs): super(BasicBlock, self).__init__() assert in_chan <= out_chan stride = int(out_chan / in_chan) self.conv1 = ConvBn(in_chan, out_chan, stride=stride, relu=True, bias=bias) self.conv2 = ConvBn(out_chan, out_chan, relu=False, bias=bias) def forward(self, x): x = self.conv1(x) return self.conv2(x) def get_flop_cost(self, x1): x2 = self.conv1(x1) y = self.conv2(x2) cost = self.get_conv2d_flops(x1, x2, self.conv1.conv.kernel_size) cost += self.get_conv2d_flops(x2, y, self.conv2.conv.kernel_size) assert cost == self.conv1.get_flop_cost(x1) + self.conv2.get_flop_cost(x2) return cost class BottleneckBlock(NetworkBlock): n_layers = 3 n_comp_steps = 1 def __init__(self, input_chan, out_chan, bias, stride=None, use_stride=True, bottleneck_factor=4): super(BottleneckBlock, self).__init__() assert input_chan <= out_chan stride = stride if stride is not None else int(out_chan / input_chan) if use_stride else 1 inside_chan = int(out_chan / bottleneck_factor) self.conv1 = ConvBn(input_chan, inside_chan, k_size=1, stride=stride, padding=0, relu=True, bias=bias) self.conv2 = ConvBn(inside_chan, inside_chan, relu=True, bias=bias) self.conv3 = ConvBn(inside_chan, out_chan, k_size=1, padding=0, relu=False, bias=bias) def forward(self, x): x = self.conv1(x) x = self.conv2(x) y = self.conv3(x) return y def get_flop_cost(self, x1): x2 = self.conv1(x1) x3 = self.conv2(x2) y = self.conv3(x3) cost = self.get_conv2d_flops(x1, x2, self.conv1.conv.kernel_size) cost += self.get_conv2d_flops(x2, x3, self.conv2.conv.kernel_size) cost += self.get_conv2d_flops(x3, y, self.conv3.conv.kernel_size) assert cost == self.conv1.get_flop_cost(x1) + self.conv2.get_flop_cost(x2) + self.conv3.get_flop_cost(x3) return cost class Skip_Block(NetworkBlock): def __init__(self, in_chan, out_chan, bias, stride=None, use_stride=True): super(Skip_Block, self).__init__() assert in_chan <= out_chan self.projection = None if in_chan != out_chan: stride = stride if stride is not None else int(out_chan / in_chan) if use_stride else 1 self.projection = ConvBn(in_chan, out_chan, relu=False, k_size=1, padding=0, stride=stride, bias=bias) # self.projection = ConvBn(in_chan, out_chan, relu=False, stride=stride, bias=bias) def forward(self, x): if self.projection is not None: x = self.projection(x) return x def get_flop_cost(self, x): if self.projection is None: return 0 else: return self.projection.get_flop_cost(x) @property def n_layers(self): return 0 if self.projection is None else 1 @property def n_comp_steps(self): return 0 if self.projection is None else 1 class Out_Layer(NetworkBlock): n_layers = 1 n_comp_steps = 1 def __init__(self, in_chan, out_dim, bias=True): super(Out_Layer, self).__init__() self.fc = nn.Linear(in_chan, out_dim, bias=bias) def forward(self, x): assert x.size(-1) == 8 x = F.avg_pool2d(x, x.size(-1)) x = x.view(x.size(0), -1) x = self.fc(x) return x def get_flop_cost(self, x): return self.fc.in_features * self.fc.out_features class ResCNF(StochasticSuperNetwork): INPUT_NAME = 'Input' OUTPUT_NAME = 'Output' CLASSIC_BLOCK_NAME = 'CLASSIC_B{}_N{}' SHORTCUT_BLOCK_NAME = 'SHORTCUT_B{}_N{}_{}' CLASSIC_SKIP_NAME = 'SKIP_CL_B{}_N{}' SHORTCUT_SKIP_NAME = 'SKIP_SH_B{}_N{}_{}' ADD_NAME = 'ADD_B{}_N{}' IDENT_NAME = 'IDENT_B{}' def __init__(self, layers, blocks_per_layer, n_channels, shortcuts, shortcuts_res, shift, static_node_proba, data_prop, bottlnecks, bn_factor=4, bias=True, *args, **kwargs): super(ResCNF, self).__init__(*args, **kwargs) assert len(n_channels) == layers and (len(blocks_per_layer) == 1 or len(blocks_per_layer) == layers) self.in_chan = data_prop['in_channels'] self.in_size = data_prop['img_dim'] self.out_dim = data_prop['out_size'][0] self.loss = loss.cross_entropy_sample self.static_node_proba = static_node_proba self._input_size = (self.in_chan, self.in_size, self.in_size) self.blocks = nn.ModuleList([]) self.graph = nx.DiGraph() self.sampling_parameters = nn.ParameterList() self.bottleneck = bottlnecks if bottlnecks: self.block_type = BottleneckBlock self.scale_factor = bn_factor else: self.block_type = BasicBlock self.scale_factor = 1 if len(blocks_per_layer) == 1: blocks_per_layer = blocks_per_layer * len(n_channels) in_node = ConvBn(self.in_chan, n_channels[0], relu=True, bias=bias) self.add_node([], self.INPUT_NAME, in_node, (0, 0)) last_node = self.add_layer(0, blocks_per_layer[0], n_channels[0], n_channels[0] * self.scale_factor, self.INPUT_NAME, False, False, shift, bias, stride=False) for l in range(1, layers): in_chan = n_channels[l - 1] * self.scale_factor last_node = self.add_layer(l, blocks_per_layer[l], in_chan, n_channels[l] * self.scale_factor, last_node, shortcuts, shortcuts_res, shift, bias, stride=True) out_node = Out_Layer(n_channels[-1] * self.scale_factor, self.out_dim, bias=bias) self.add_node([last_node], self.OUTPUT_NAME, out_node, (layers - 1, blocks_per_layer[-1] + 1)) self.set_graph(self.graph, self.INPUT_NAME, self.OUTPUT_NAME) def add_layer(self, b, n_blocks, in_chan, out_chan, last_node, shortcuts, sh_res, shift, bias, stride): prev_in_chan = in_chan for n in range(n_blocks): use_stride = stride and n == 0 if b > 0 and n == 0: # Add identity block (only for drawing) ident_block = Skip_Block(in_chan, in_chan, bias) ident_name = self.IDENT_NAME.format(b) self.add_node([last_node], ident_name, ident_block, (b,)) last_node = ident_name # Add basic block basic_block = self.block_type(in_chan, out_chan, bias=bias, use_stride=use_stride) basic_block_name = self.CLASSIC_BLOCK_NAME.format(b, n) self.add_node([last_node], basic_block_name, basic_block, (b, n)) # Add skip connection skip = Skip_Block(in_chan, out_chan, bias, use_stride=use_stride) skip_name = self.CLASSIC_SKIP_NAME.format(b, n) self.add_node([last_node], skip_name, skip, (b, n)) shortcuts_add_inputs = [] # Add shortcut: if shortcuts or sh_res: sh_sources = self.get_shortcut_source_nodes(b, n, n_blocks, shift) for i, (sh_in_node, chan_div) in enumerate(sh_sources): # sh_in_node, chan_div = self.get_shortcut_source_node(b, n, n_blocks, shift) sh_in_chan = int(prev_in_chan / chan_div) if sh_in_node == self.INPUT_NAME and self.bottleneck: special_stride = 2 else: special_stride = None if shortcuts: shortcut_block = self.block_type(sh_in_chan, out_chan, stride=special_stride, bias=bias) shortcut_block_name = self.SHORTCUT_BLOCK_NAME.format(b, n, i) self.add_node([sh_in_node], shortcut_block_name, shortcut_block, (b, n)) shortcuts_add_inputs.append(shortcut_block_name) # Add skip connection if sh_res: sh_skip = Skip_Block(sh_in_chan, out_chan, stride=special_stride, bias=bias) sh_skip_name = self.SHORTCUT_SKIP_NAME.format(b, n, i) self.add_node([sh_in_node], sh_skip_name, sh_skip, (b, n)) shortcuts_add_inputs.append(sh_skip_name) # Add addition add_block = Add_Block() add_name = self.ADD_NAME.format(b, n) self.add_node(shortcuts_add_inputs + [skip_name, basic_block_name], add_name, add_block, (b, n)) in_chan = out_chan last_node = add_name return last_node def add_node(self, in_nodes, node_name, module, pos, **args): pos = ResCNFDrawer.get_draw_pos(pos=pos, node_name=node_name) sampling_param = sampling_param_generator(self.static_node_proba, node_name) self.graph.add_node(node_name, module=module, sampling_param=len(self.sampling_parameters), pos=pos, **args) if sampling_param is not None: self.sampling_parameters.append(sampling_param) else: raise RuntimeError('Old version, should be fixed !') if isinstance(module, nn.Module): self.blocks.append(module) else: raise RuntimeError('Old version, should be fixed !') for input in in_nodes: self.graph.add_edge(input, node_name, width_node=node_name) def get_shortcut_source_nodes(self, block, depth, max_layers, shift): assert block > 0 sources = [] source_b = block - 1 if 's' in shift: n = max_layers - depth - 2 if n < 0: if block == 1: sources.append((self.INPUT_NAME, self.scale_factor)) else: sources.append((self.IDENT_NAME.format(source_b), 2)) else: sources.append((self.ADD_NAME.format(source_b, n), 1)) if 'l' in shift and depth != 0: sources.append((self.ADD_NAME.format(source_b, max_layers - 1 - depth), 1)) if 'r' in shift and depth != max_layers - 1: n = max_layers - depth - 3 if n < 0: if block == 1: sources.append((self.INPUT_NAME, self.scale_factor)) else: sources.append((self.IDENT_NAME.format(source_b), 2)) else: sources.append((self.ADD_NAME.format(source_b, n), 1)) return sources def sampling_param_generator(static_node_proba, node_name): if static_node_proba >= 0: param_value = 1 if np.random.rand() < static_node_proba else -1 param_value *= np.inf trainable = False else: param_value = 3 trainable = True return nn.Parameter(torch.Tensor([param_value]), requires_grad=trainable)
e30ba69f7f8611075d519ba70a3cf7c4d2bbef58
a4a555c49c2b7f18171c9e7a3f739f415f48c8c6
/Lesson3/filehand3.py
fa38ba6146ba976a20b709843a7d3ab65e4fe5b8
[]
no_license
moshegplay/python_digital
1f40093db066d8353a61123caf2594fd9a5d681a
703e8046894e632ce3535bbc656399048ba6452d
refs/heads/master
2023-02-05T13:25:53.687961
2021-01-03T10:39:18
2021-01-03T10:39:18
356,987,725
4
0
null
null
null
null
UTF-8
Python
false
false
273
py
filename = "C:/Users/אידן חכימי/Documents/Pycharm/hello.txt" file = open(filename, "r") print(file.readlines()[2]) file.close() ######################### ##Create a empty file # f = open("C:/Users/אידן חכימי/Documents/Pycharm/NET4U.txt", "x") # f.close()
7aa9d2cb87065aef1464ae63bb6dfa762d3f2e1d
53ed8fab57a74b2e724cef67d3588fce264e6104
/day1/d1p8(1).py
a82e594491f1af28736eccbdb0926c2b97fb80f3
[]
no_license
thazhemadam/Serious-Python
ca97e2e6dd87a43828e840810718536cf0ca2d51
30d92c9a8ca2343575a4cc0d9a88dedcc8806f80
refs/heads/master
2022-11-12T22:24:06.510139
2020-06-27T18:34:49
2020-06-27T18:34:49
275,432,330
0
0
null
null
null
null
UTF-8
Python
false
false
2,276
py
# -*- coding: utf-8 -*- """ Created on Sun May 26 18:54:42 2019 @author: user """ #Let us stop using our Find function import re #we used re.search to return a match object #we used group function to return what we found # Let us say we want to find differentc pieces of what we found # username is one part and domain is another part #Like [email protected] we are interested in #name=katharguppe and domain=gmail # the best way to explain this is anything in the first() is in group(1), second search string in group(2) m = re.search(r'[\w.-]+@[\w.-]+','[email protected]') m.group() m = re.search(r'([\w.-]+)@([\w.-]+)','[email protected]') m.group() m.group(1) m.group(2) # If we wanted to find multiple email-ids embedded we could # another function called find all # findall finds all occurences of our match m = re.findall(r'([\w.-]+)@([\w.-]+)','[email protected],[email protected],[email protected]') # Here we dont use a group as m returns a list of all finds # the list would contain tuples if we need to extract part m = re.findall(r'([\w.-]+)@([\w.-]+)','[email protected],[email protected],[email protected]') dir(re) # dir is a handy option for finding all parameters about python modules import sklearn as sk # The machine learning package dir(sk) # IGNORECASE ignores case, DOTALL includes newline as well so you can process a file as well m = re.findall(r'([\w.-]+)@([\w.-]+)','[email protected],[email protected],[email protected]',re.IGNORECASE) #Let us try an find and print all names as one list and # all domains in another list # Exercise - try this now. def print_name_domain(str,l1,l2): m = re.findall(r'([\w.-]+)@([\w.-]+)','[email protected],[email protected],[email protected]',re.IGNORECASE) # fill in the missing code so that all names are in l1 and domains in l2 and then iterate thru the list #for i in m: #if isinstance(i,tuple): # l1.add() # l2.add() # so the gyan for today is almost done exzcept for pytest which we will cover after these exercise at around 3 pm. # for a simple testing functionality # So lets do one more thing right - write an iterator
7cec84d82d2dcb14c1cbdaf99b64ffc73e1ae94e
11771f5dd90a74d5c76765f27f0d9a9cb044f57b
/route/bbs_make.py
2185cef4c1bdcfd50b641b610aa030eb0d012695
[ "BSD-3-Clause" ]
permissive
openNAMU/openNAMU
cc031ea848ac6d829ad243fcf59da26adf0f0814
868107e4ef53e4e78af15c590673b78ee385baa5
refs/heads/beta
2023-08-24T10:20:00.245680
2023-08-23T14:09:53
2023-08-23T14:09:53
78,184,261
86
75
BSD-3-Clause
2023-09-13T21:36:03
2017-01-06T07:22:10
Python
UTF-8
Python
false
false
2,024
py
from .tool.func import * def bbs_make(): with get_db_connect() as conn: curs = conn.cursor() if admin_check() != 1: return re_error('/error/3') if flask.request.method == 'POST': curs.execute(db_change('select set_id from bbs_set where set_name = "bbs_name" order by set_id + 0 desc')) db_data = curs.fetchall() bbs_num = str(int(db_data[0][0]) + 1) if db_data else '1' bbs_name = flask.request.form.get('bbs_name', 'test') bbs_type = flask.request.form.get('bbs_type', 'comment') bbs_type = bbs_type if bbs_type in ['comment', 'thread'] else 'comment' curs.execute(db_change("insert into bbs_set (set_name, set_code, set_id, set_data) values ('bbs_name', '', ?, ?)"), [bbs_num, bbs_name]) curs.execute(db_change("insert into bbs_set (set_name, set_code, set_id, set_data) values ('bbs_type', '', ?, ?)"), [bbs_num, bbs_type]) conn.commit() return redirect('/bbs/main') else: return easy_minify(flask.render_template(skin_check(), imp = [load_lang('bbs_make'), wiki_set(), wiki_custom(), wiki_css([0, 0])], data = ''' <form method="post"> <input placeholder="''' + load_lang('bbs_name') + '''" name="bbs_name"> <hr class="main_hr"> <select name="bbs_type"> <option value="comment">''' + load_lang('comment_base') + '''</option> <option value="thread">''' + load_lang('thread_base') + '''</option> </select> <hr class="main_hr"> <button type="submit">''' + load_lang('save') + '''</button> </form> ''', menu = [['bbs/main', load_lang('return')]] ))
63aa433b5a60c02b8d6c24ed27079611527400cb
1ad90e99ef4c8dc35085326233121072a8d15158
/datagen/generate.py
c6bdcee29fed2179a65b8126c9b9874e044344a3
[]
no_license
c-guo16/embedding
99757761f8a51d8c9933497bd11025acd233bbf9
3cc1748f475b8cd5abc8eecb9960e92dfbe51d9d
refs/heads/master
2023-01-21T10:23:15.157971
2020-11-28T15:06:30
2020-11-28T15:06:30
316,748,736
0
0
null
null
null
null
UTF-8
Python
false
false
2,547
py
import cv2,numpy,csv # num_of_res_needed=10000 #生成的训练图片的数量(大约) # network_input_width=36 # # if __name__ == '__main__': # # img=cv2.imread("./1.jpg",cv2.IMREAD_COLOR) # # img_width=img.shape[1] # img_height=img.shape[0] # lens_width=int(img_width/10) # scanned_width=img_width-lens_width # scanned_height=img_height-lens_width # # aspect_ratio=scanned_width/scanned_height # height_square=num_of_res_needed/aspect_ratio # height_num=int(height_square**0.5) # width_num=int(num_of_res_needed/height_num) # stride=scanned_height/height_num # # csv_contents=[] # for i in range(0,height_num): # for j in range(0,width_num): # pix_h=int(i*stride) # pix_w=int(j*stride) # res_img=img[pix_h:pix_h+lens_width,pix_w:pix_w+lens_width,:] # res_img=cv2.resize(res_img,(network_input_width,network_input_width)) # fname="{0}_{1}.bmp".format(i,j) # cv2.imwrite("./res/"+fname,res_img) # csv_contents.append([fname,pix_h/img_height,pix_w/img_width]) # # with open('label.csv','w',newline='')as f: # f_csv = csv.writer(f) # f_csv.writerows(csv_contents) # # cv2.imshow("sss",img) # cv2.waitKey(0) # cv2.destroyAllWindows() # cv2.destroyWindow("sss") vertical_split_num=6 horizontal_split_num=8 if __name__ == '__main__': img=cv2.imread("./ori.jpg",cv2.IMREAD_COLOR) img_width=img.shape[1] img_height=img.shape[0] stride_height=img_height/vertical_split_num stride_width=img_width/horizontal_split_num csv_contents=[] posh=0 posw=0 for i in range(0,vertical_split_num-1): for j in range(0,horizontal_split_num-1): res_img=img[int(i*stride_height):int((i+2)*stride_height),int(j*stride_width):int((j+2)*stride_width),:] fname="{0}_{1}.bmp".format(i,j) cv2.imwrite("C:\Projects\Visual_Studio_2019\Projects\embedding\embedding\splitted_pic/"+fname,res_img) csv_contents.append([fname,i*stride_height/img_height,j*stride_width/img_width]) # with open('./splitted_pic/splitted_base.csv','w',newline='')as f: # f_csv = csv.writer(f) # f_csv.writerows(csv_contents) with open('C:\Projects\Visual_Studio_2019\Projects\embedding\embedding\splitted_pic/splitted_base.txt','w')as f: f.write(str(img_height)+' '+str(img_width)+'\n') for item in csv_contents: f.write(item[0]+' '+str(item[1])+' '+str(item[2])+'\n')
8c0b325e2e4aca60b2f48cba3d141b41ada9d59f
22aea5e9057d04bc90fe3984233a7cdbe72ec24f
/traversal.py
b4d2487908d4dd729c9c3022907410d9c6a67914
[]
no_license
chigginss/Coding-Challenges
fbea1cc6e6345a2a44946e6d7c085200576fbb71
8bedfeab54abcacb3ce096db60977211486c781c
refs/heads/master
2020-03-21T21:32:26.618673
2018-08-21T02:38:22
2018-08-21T02:38:22
139,069,158
1
0
null
null
null
null
UTF-8
Python
false
false
651
py
def num_of_paths_to_dest(n): # input: n - a positive integer representing the grid size. # output: number of valid paths from (0,0) to (n-1,n-1). # create a 2D array to save values memory = [0][0] # initialize with -1 and then add for i in range(0, n-1): for j in range(0, n-1): memory[i][j] = -1 return paths_to_square(n-1, n-1, memory) def paths_to_square(i, j, memory): if (i < 0 or j < 0): return 0 elif (i < j): memory[i][j] = 0 elif (i == 0 and j == 0): memory[i][j] = 1 else: memory[i][j] = paths_to_square(i,j - 1, memory) + paths_to_square(i - 1, j, memory) return memory[i][j]
53cd30d03207556424257a7a49ed432f13b6260a
9aa7b52847a161507eae57c222f6f3b3473fbf67
/Project/Main/bin/pyhtmlizer
cb636c852d7d27ecd58cab7c59fd4e7b1fc7541b
[]
no_license
azatnt/Project_Aza_Madi
13a41bcc7bc822503136046dd5905a0884ffccb5
d2804cd2b1e9b97d44e85d6a24c45d3f41458db3
refs/heads/master
2023-01-22T18:17:17.512344
2020-11-16T15:56:00
2020-11-16T15:56:00
261,734,097
1
0
null
null
null
null
UTF-8
Python
false
false
276
#!/Users/sulpak/Documents/GitHub/Project_Aza_Madi/Project/Main/bin/python # -*- coding: utf-8 -*- import re import sys from twisted.scripts.htmlizer import run if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(run())
4d04066a8e7c894b6f4b1c2667046f8289665528
c89354cb7aaa05c47a207f40863fa39948e396f4
/tests/test_exams.py
064756220ddba6afdb2b3de89e6872401267e617
[]
no_license
mariiiiiia/profapp
17fbc6cca6c71212593b7eceff2a9d1a8b3ab9a4
4dba874817989fea4b4b6d533a856595a5a97eb7
refs/heads/master
2021-01-18T14:14:41.511205
2016-01-07T00:34:51
2016-01-07T00:34:51
10,173,617
0
0
null
null
null
null
UTF-8
Python
false
false
681
py
import datetime from django.test import TestCase from django.test.client import Client from profapp.models import Student class TestExam(TestCase): def setUp(self): self.stu = [Student.objects.create(am=i, date_enrolled=datetime.datetime.now(), semester=1, first_name="Chodey", last_name="McNumnuts") for i in xrange(1000,1010)] subj = SemesterSubject.objects.create(students=self.stu, name="Math", year=2010) self.exam = Exam.objects.create(subject=subj, type='m', percent=20)
376183f1fd02abc26c81e2af35be1774eebe4052
1eab574606dffb14a63195de994ee7c2355989b1
/ixnetwork_restpy/testplatform/sessions/ixnetwork/globals/topology/bfdrouter/bfdrouter.py
a4c8d026e8eb6e4b33d202bfd079514c11616f61
[ "MIT" ]
permissive
steiler/ixnetwork_restpy
56b3f08726301e9938aaea26f6dcd20ebf53c806
dd7ec0d311b74cefb1fe310d57b5c8a65d6d4ff9
refs/heads/master
2020-09-04T12:10:18.387184
2019-11-05T11:29:43
2019-11-05T11:29:43
219,728,796
0
0
null
2019-11-05T11:28:29
2019-11-05T11:28:26
null
UTF-8
Python
false
false
2,602
py
# MIT LICENSE # # Copyright 1997 - 2019 by IXIA Keysight # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. from ixnetwork_restpy.base import Base from ixnetwork_restpy.files import Files class BfdRouter(Base): """Bfd Port Specific Data The BfdRouter class encapsulates a required bfdRouter resource which will be retrieved from the server every time the property is accessed. """ __slots__ = () _SDM_NAME = 'bfdRouter' def __init__(self, parent): super(BfdRouter, self).__init__(parent) @property def Count(self): """Number of elements inside associated multiplier-scaled container object, e.g. number of devices inside a Device Group. Returns: number """ return self._get_attribute('count') @property def DescriptiveName(self): """Longer, more descriptive name for element. It's not guaranteed to be unique like -name-, but may offers more context Returns: str """ return self._get_attribute('descriptiveName') @property def Name(self): """Name of NGPF element, guaranteed to be unique in Scenario Returns: str """ return self._get_attribute('name') @Name.setter def Name(self, value): self._set_attribute('name', value) @property def RowNames(self): """Name of rows Returns: list(str) """ return self._get_attribute('rowNames') def update(self, Name=None): """Updates a child instance of bfdRouter on the server. Args: Name (str): Name of NGPF element, guaranteed to be unique in Scenario Raises: ServerError: The server has encountered an uncategorized error condition """ self._update(locals())
f012952b29876b396eeff208f656b11ad3d1d3d2
54f352a242a8ad6ff5516703e91da61e08d9a9e6
/Source Codes/AtCoder/agc025/C/2658196.py
38086edb4f9e8897ebee6bd4d4c545b41c0b5eb2
[]
no_license
Kawser-nerd/CLCDSA
5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb
aee32551795763b54acb26856ab239370cac4e75
refs/heads/master
2022-02-09T11:08:56.588303
2022-01-26T18:53:40
2022-01-26T18:53:40
211,783,197
23
9
null
null
null
null
UTF-8
Python
false
false
333
py
from itertools import accumulate N = int(input()) L, R = [0], [0] for i in range(N): li, ri = map(int, input().split()) L.append(li) R.append(ri) L.sort(reverse=True) R.sort() L = list(accumulate(L)) R = list(accumulate(R)) ans = 0 for k in range(N+1): ans = max(ans, 2*(L[k]-R[k])) print(ans)
e3cd591b49df0c6b2e15e200adda136e62a8bd76
b7f20e9e993513cce1726af481dbe0a78a94645e
/QtResultVisualization/MplCommands.py
50d5d69304414f463639c7d2b3ae8147a75246e0
[]
no_license
SvenMarcus/ResultVisualization
38b6f0f7eba3fd52aea8dcd31a93a7a3f7cefc5a
9d103857bd6228b476a899b469fe48868dfb98ac
refs/heads/master
2021-10-25T23:43:30.179944
2019-04-08T10:49:48
2019-04-08T10:49:48
109,824,890
0
0
null
null
null
null
UTF-8
Python
false
false
911
py
from matplotlib.backends.backend_pdf import PdfPages from matplotlib.backends.backend_template import FigureCanvas from ResultVisualization.Commands import Command from ResultVisualization.Dialogs import ChooseFileDialog, DialogResult from ResultVisualization.MainWindow import MainWindow class ExportPdfCommand(Command): def __init__(self, mainWindow: MainWindow, fileChooser: ChooseFileDialog): self.__mainWindow: MainWindow = mainWindow self.__fileChooser = fileChooser def execute(self): result = self.__fileChooser.show() if result is not DialogResult.Ok: return pdf = PdfPages(self.__fileChooser.getSelectedFile()) for graphView in self.__mainWindow.getCurrentViews(): graph = graphView.getGraph() canvas: FigureCanvas = graph.getFigureCanvas() pdf.savefig(canvas.figure) pdf.close()
7bcff9fa804b622d48c7a6bb33873bdeede52060
b61dedf12868e2bc511b6693af1985911a13f336
/src/logpipe/formats/json.py
5747c863e36910b285e51dc63598357f2e147fee
[ "ISC" ]
permissive
vitorcarmovieira/django-logpipe
f9eebb6674b9ba180a63448c9d71ce2e87929f7c
89d0543e341518f9ae49124c354e6a6c2e3f4150
refs/heads/main
2023-03-03T13:18:22.456270
2021-02-13T17:29:32
2021-02-13T17:29:32
326,679,534
1
1
ISC
2021-02-13T17:29:32
2021-01-04T12:39:30
Python
UTF-8
Python
false
false
139
py
from rest_framework.renderers import JSONRenderer from rest_framework.parsers import JSONParser __all__ = ['JSONRenderer', 'JSONParser']
6e5b281dfdbc8eb03b095b591ce654289d789360
e0c8e66af3a72a1cc534d7a90fead48754d266b3
/vb_suite/miscellaneous.py
8295d275f2dd615f626d02981203b406f233a1ea
[ "BSD-3-Clause" ]
permissive
gwtaylor/pandas
e12b0682347b9f03a24d6bff3e14f563cb7a3758
7b0349f0545011a6cac2422b8d8d0f409ffd1e15
refs/heads/master
2021-01-15T17:51:47.147334
2012-01-13T17:53:56
2012-01-13T17:53:56
3,174,111
1
1
null
null
null
null
UTF-8
Python
false
false
505
py
from vbench.benchmark import Benchmark from datetime import datetime common_setup = """from pandas_vb_common import * """ #---------------------------------------------------------------------- # cache_readonly setup = common_setup + """ from pandas.util.decorators import cache_readonly class Foo: @cache_readonly def prop(self): return 5 obj = Foo() """ misc_cache_readonly = Benchmark("obj.prop", setup, name="misc_cache_readonly", ncalls=2000000)
2a8283ca822002a8cb5973f40a079fd1219f0a40
5cd4879e432281d39519fbc9801b001a3a3f4151
/walloff_web/server_resources/monitor.py
dc96d585f674b5f6729bc4665efb948b28e131c0
[]
no_license
WalloffDev/Walloff
43cc5dc0a999cc84843fe5c4da4e673d19fee103
256b284d43d7e0dfc22e01ca61f05208e8241015
refs/heads/master
2016-09-05T10:44:18.392947
2012-12-28T18:23:33
2012-12-28T18:23:33
6,498,704
1
0
null
null
null
null
UTF-8
Python
false
false
1,647
py
# Monitors heartbeats from Android clients # # Import(s) # import threading, socket, json import constants from lobby_app.models import * class monitor( threading.Thread ): # Member(s) tag = '[MONITOR]: ' monitor_socket = None ready_flg = None killed_flg = None def __init__( self ): try: threading.Thread.__init__( self ) self.ready_flg = threading.Event( ) self.killed_flg = threading.Event( ) self.monitor_socket = socket.socket( socket.AF_INET, socket.SOCK_DGRAM ) self.monitor_socket.setsockopt( socket.SOL_SOCKET, socket.SO_REUSEADDR, 1 ) self.monitor_socket.settimeout( constants.MONITOR_TIMEOUT ) self.monitor_socket.bind( ( '', constants.MONITOR_PORT ) ) self.ready_flg.set( ) except socket.error as e: print self.tag + str( e ) def is_ready( self ): return self.ready_flg.is_set( ) def receive_and_parse( self ): payload, r_addr = self.monitor_socket.recvfrom( constants.MONITOR_RECV_LEN ) print self.tag + 'received ' + str( len( payload ) ) + ' byte heartbeat from ' + str( r_addr ) payload = json.loads( payload ) client = Player.objects.get( django_user__username=str( payload[ constants.uname ] ).lower( ) ) client.update_net_info( r_addr[ 0 ], r_addr[ 1 ], str( payload[ constants.priv_ip ] ), str( payload[ constants.priv_port ] ) ) def run( self ): try: print self.tag + 'listening for heartbeats...' while not self.killed_flg.is_set( ): try: self.receive_and_parse( ) except socket.timeout: continue except socket.error: pass except BaseException as e: print self.tag + str( e ) def die( self ): self.killed_flg.set( )
3e14c52e46b70e5aca1d0f5a055cabdee1774a89
372da4f11ff2996f4c7e023884f12455fdfbb045
/RA4Analysis/plotsDaniel/makeSubPlot.py
0888769bf88a5d67e18425f2471031eadb7038fd
[]
no_license
HephyAnalysisSW/Workspace
ec127f75da58c1bbf12f8999055a1ef513598e94
dcdee36e344dec8cbfe6dd6986e2345d9c1af25f
refs/heads/94X-master
2022-11-22T01:52:28.179081
2019-03-12T13:19:04
2019-03-12T13:19:04
13,293,437
1
1
null
2018-11-14T10:52:57
2013-10-03T08:07:27
Python
UTF-8
Python
false
false
8,532
py
import ROOT import os, sys, copy ROOT.gROOT.LoadMacro('../../HEPHYPythonTools/scripts/root/tdrstyle.C') ROOT.setTDRStyle() from math import * from array import array from Workspace.HEPHYPythonTools.helpers import getVarValue, getChain, deltaPhi from Workspace.RA4Analysis.cmgTuplesPostProcessed_v6_Phys14V2_HT400ST150_withDF import * #from Workspace.RA4Analysis.cmgTuplesPostProcessed_v6_Phys14V2 import * from Workspace.RA4Analysis.helpers import * varstring='deltaPhi_Wl' binning=[16,0,3.2] lepSel = 'hard' nbtagCut=0 njetCut=2 nBtagReg=[0,1,2] nJetReg=[2,3,4,5,6] stReg=[(150,-1)]#250),(250,350),(350,450),(450,-1)] htReg=[(500,-1)]#750),(750,1000),(1000,1250),(1250,-1)] startpath = '/afs/hephy.at/user/d/dspitzbart/www/subBkgInclusive/' #Load the Background Chain c = getChain(ttJets[lepSel],histname='') #Sub Background Definitions ngNuEFromW = "Sum$(abs(genPart_pdgId)==12&&abs(genPart_motherId)==24)" ngNuMuFromW = "Sum$(abs(genPart_pdgId)==14&&abs(genPart_motherId)==24)" ngNuTauFromW = "Sum$(abs(genPart_pdgId)==16&&abs(genPart_motherId)==24)" lTau_H = ngNuEFromW+"+"+ngNuMuFromW+"==0&&"+ngNuTauFromW+"==1"\ +"&&Sum$(genTau_nNuE+genTau_nNuMu==1&&genTau_nNuTau==1)==1" hTau_l= "Sum$((abs(genPart_pdgId)==14||abs(genPart_pdgId)==12)&&abs(genPart_motherId)==24)==1"\ +"&&Sum$(abs(genPart_pdgId)==16&&abs(genPart_motherId)==24)==1"\ +"&&Sum$(genTau_nNuE+genTau_nNuMu==0&&genTau_nNuTau==1)==1" diLepEff = ngNuEFromW+"+"+ngNuMuFromW+"==2&&"+ngNuTauFromW+"==0&&Sum$(genLep_pt>10&&(abs(genLep_eta)<2.1&&abs(genLep_pdgId)==13||abs(genLep_eta)<2.4&&abs(genLep_pdgId)==11))==2" diLepAcc = ngNuEFromW+"+"+ngNuMuFromW+"==2&&"+ngNuTauFromW+"==0&&Sum$(genLep_pt>10&&(abs(genLep_eta)<2.1&&abs(genLep_pdgId)==13||abs(genLep_eta)<2.4&&abs(genLep_pdgId)==11))!=2" lTau_l = ngNuEFromW+"+"+ngNuMuFromW+"==1&&"+ngNuTauFromW+"==1&&Sum$(genTau_nNuE+genTau_nNuMu==1&&genTau_nNuTau==1)==1" diTau = ngNuEFromW+"+"+ngNuMuFromW+"==0&&"+ngNuTauFromW+"==2" l_H = ngNuEFromW+"+"+ngNuMuFromW+"==1&&"+ngNuTauFromW+"==0" diHad = ngNuEFromW+"+"+ngNuMuFromW+"==0&&"+ngNuTauFromW+"==0" hTau_H = ngNuEFromW+"+"+ngNuMuFromW+"==0&&"+ngNuTauFromW+"==1&&Sum$(genTau_nNuE+genTau_nNuMu==0&&genTau_nNuTau==1)==1" allHad = "(("+diHad+")||("+hTau_H+"))" #tot_lumi = 4000 #nevents = c.GetEntries() #weight = "("+str(tot_lumi)+"*xsec)/"+str(nevents) #print weight for i,bReg in enumerate(nBtagReg): if i < len(nBtagReg)-1: nbtagCutString='&&nBJetMediumCMVA30=='+str(bReg) nbtagPath='nBtagEq'+str(bReg)+'/' else: nbtagCutString='&&nBJetMediumCMVA30>='+str(bReg) nbtagPath='nBtagLEq'+str(bReg)+'/' for j, hReg in enumerate(htReg): if j < len(htReg)-1: htCutString='&&htJet30j>='+str(hReg[0])+'&&htJet30j<'+str(hReg[1]) htPath=str(hReg[0])+'htJet30j'+str(hReg[1])+'/' else: htCutString='&&htJet30j>='+str(hReg[0]) htPath='_'+str(hReg[0])+'htJet30j/' for k,sReg in enumerate(stReg): if k < len(stReg)-1: stCutString='&&st>='+str(sReg[0])+'&&st<'+str(sReg[1]) stPath=str(sReg[0])+'st'+str(sReg[1])+'/' else: stCutString='&&st>='+str(sReg[0]) stPath='_'+str(sReg[0])+'st/' for l,jReg in enumerate(nJetReg): if l < len(nJetReg)-1: njCutString='&&nJet30=='+str(jReg) njPath='nJet30Eq'+str(jReg)+'/' else: njCutString='&&nJet30>='+str(jReg) njPath='nJet30LEq'+str(jReg)+'/' path=startpath+nbtagPath+htPath+stPath+njPath if not os.path.exists(path): os.makedirs(path) prepresel = "singleLeptonic&&nLooseHardLeptons==1&&nTightHardLeptons==1&&nLooseSoftPt10Leptons==0&&Jet_pt[1]>80" presel = prepresel+nbtagCutString+htCutString+stCutString+njCutString#"htJet30j>=750&&htJet30j<=1000&&st>=450&&"+njetCutString+"&&"+nbtagCutString+'&&Jet_pt[1]>80' prefix= ''.join(presel.split('&&')[5:]).replace("&&","_").replace(">=","le_").replace("==","eq_") can1 = ROOT.TCanvas(varstring,varstring,1200,1000) h_Stack = ROOT.THStack('h_Stack',varstring) h_Stack_S = ROOT.THStack('h_Stack_S',varstring) l = ROOT.TLegend(0.7,0.7,0.95,0.95) l.SetFillColor(ROOT.kWhite) l.SetShadowColor(ROOT.kWhite) l.SetBorderSize(1) nothing='(1)' subBkg=[ ##[allHad, 'all hadronic', ROOT.kRed-7, 'all hadronic'], [diHad,'two had.', ROOT.kRed-9,'diHad'], [hTau_H,'W#rightarrow#tau#nu#rightarrow had.+2#nu | W#rightarrow had.', ROOT.kRed-7, 'hadTau'], [lTau_H,'W#rightarrow#tau#nu#rightarrow e/#mu+3#nu | W#rightarrow had.', ROOT.kBlue-2, 'lepTau_H'], [diTau,'two #tau leptons', ROOT.kGreen+3,'diTau'], [lTau_l,'W#rightarrow#tau#nu#rightarrow e/#mu+3#nu | W#rightarrow e/#mu+#nu', ROOT.kOrange+1,'lTau_l'], [diLepAcc,'dileptonic (e/#mu) Acc.',ROOT.kRed-3,'diLepAcc'], [diLepEff,'dileptonic (e/#mu) Eff.',ROOT.kRed-4,'diLepEff'], [hTau_l,'W#rightarrow#tau#nu#rightarrow had.+2#nu | W#rightarrow e/#mu+#nu', ROOT.kAzure+6,'hTau_l'], [l_H, 'single lep. (e/#mu)',ROOT.kCyan+3,'singleLep'] #[nothing,'tt Jets',ROOT.kBlue,'ttJets'] ] totalh=ROOT.TH1F('total','Total',*binning) c.Draw(varstring+'>>total','weight*('+presel+')') totalh.SetLineColor(ROOT.kBlue+3) totalh.SetLineWidth(2) totalh.SetMarkerSize(0) totalh.SetMarkerStyle(0) totalh.SetTitleSize(20) totalh.SetFillColor(0) l.AddEntry(totalh) for i, [cut,name,col,subname] in enumerate(subBkg): histo = 'h'+str(i) histoname = histo print histoname histo = ROOT.TH1F(str(histo) ,str(histo),*binning) print histo print col wholeCut=presel+'&&'+cut print wholeCut c.Draw(varstring+'>>'+str(histoname),'weight*('+wholeCut+')') histo.SetLineColor(ROOT.kBlack) histo.SetLineWidth(1) histo.SetMarkerSize(0) histo.SetMarkerStyle(0) histo.SetTitleSize(20) histo.GetXaxis().SetTitle(varstring) histo.GetYaxis().SetTitle("Events / "+str( (binning[2] - binning[1])/binning[0])) histo.GetXaxis().SetLabelSize(0.04) histo.GetYaxis().SetLabelSize(0.04) histo.GetYaxis().SetTitleOffset(0.8) histo.GetYaxis().SetTitleSize(0.05) histo.SetFillColor(col) histo.SetFillStyle(1001) histo.SetMinimum(.08) h_Stack.Add(histo) l.AddEntry(histo, name) #RCS Backup calculation twoBin=[0,1,pi] rcsh=ROOT.TH1F('rcsh','rcsh',len(twoBin)-1, array('d', twoBin)) c.Draw(varstring+'>>rcsh','weight*('+wholeCut+')','goff') rcsb=0 if rcsh.GetBinContent(1)>0 and rcsh.GetBinContent(2)>0: rcsb=rcsh.GetBinContent(2)/rcsh.GetBinContent(1) can2=ROOT.TCanvas('sub','sub',800,600) histo.Draw() latex2 = ROOT.TLatex() latex2.SetNDC() latex2.SetTextSize(0.035) latex2.SetTextAlign(11) # align right latex2.DrawLatex(0.7,0.96,str(rcsb)) latex2.DrawLatex(0.16,0.96,name) can2.SetGrid() can2.SetLogy() can2.Print(path+varstring+subname+'_'+prefix+'notauRej.png') can2.Print(path+varstring+subname+'_'+prefix+'notauRej.root') can1.cd() can1.SetGrid() h_Stack.Draw() totalh.Draw('same') h_Stack.SetMinimum(0.08) l.Draw() #Calculation of RCS value, works only for cut at dPhi=1 atm bins=1/(binning[2]/binning[0]) i=1+int(bins) rcs=0 rcsn=0 while i <= binning[0]: rcs=rcs+h_Stack.GetStack().Last().GetBinContent(i) i=i+1 i=1 while i<= int(bins): rcsn=rcsn+h_Stack.GetStack().Last().GetBinContent(i) i=i+1 if rcsn>0: rcs=rcs/rcsn else: rcs=float('nan') print rcs latex1 = ROOT.TLatex() latex1.SetNDC() latex1.SetTextSize(0.035) latex1.SetTextAlign(11) # align right latex1.DrawLatex(0.16,0.96,"Rcs="+str(rcs)) latex1.DrawLatex(0.72,0.96,"L=4 fb^{-1} (13TeV)") can1.SetLogy() can1.Print(path+varstring+'_'+prefix+'notauRej.png') can1.Print(path+varstring+'_'+prefix+'notauRej.root')
2dd13606ceedf90c8358b2e2e402aaead40749b4
2ed5bded83b3b6a1994646ad99b97e6ec6fb01c4
/ZJetAnalysis/test/flatTree_DoubleMu_Run2012A_cfg.py
059c662fe77e50072a1ce0a6d0fbbf96ccc49289
[]
no_license
ForwardGroupBrazil/QCDCodes
737877bff9c03743609a40b13576524fd2f77b94
97abf589b19967f8b26fa8ce05b9a113124d5c9e
refs/heads/master
2021-01-22T14:38:41.741628
2013-09-05T22:40:27
2013-09-05T22:40:27
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,220
py
import FWCore.ParameterSet.Config as cms process = cms.Process("myprocess") process.load('FWCore.MessageService.MessageLogger_cfi') from CMGTools.Production.datasetToSource import * from CMGTools.Common.Tools.applyJSON_cff import * ##-------------------- Define the source ---------------------------- process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) process.source = datasetToSource('cmgtools','/DoubleMu/Run2012A-PromptReco-v1/RECO/PAT_CMG_V5_4_0_runrange_190605-194076/', 'cmgTuple_.*root') applyJSON(process,'Cert_190456-196531_8TeV_PromptReco_Collisions12_JSON.txt') process.TFileService=cms.Service("TFileService",fileName=cms.string('flatTree.root')) ############# Format MessageLogger ################# process.MessageLogger.cerr.FwkReport.reportEvery = 1000 ##-------------------- User analyzer -------------------------------- process.zjet = cms.EDAnalyzer('FlatTreeProducer', jets = cms.InputTag('cmgPFJetSel'), met = cms.InputTag('nopuMet'), muons = cms.InputTag('cmgMuonSel'), electrons = cms.InputTag('cmgElectronSel'), rho = cms.InputTag('kt6PFJets','rho'), minJetPt = cms.double(50.0), maxJetEta = cms.double(3.0), minMuonPt = cms.double(20.0), minElectronPt = cms.double(20.0) ) ############# hlt filter ######################### process.hltElFilter = cms.EDFilter('HLTHighLevel', TriggerResultsTag = cms.InputTag('TriggerResults','','HLT'), HLTPaths = cms.vstring('HLT_Ele17_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_Ele8_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_v*'), eventSetupPathsKey = cms.string(''), andOr = cms.bool(True), #----- True = OR, False = AND between the HLTPaths throw = cms.bool(False) ) process.hltMuFilter = cms.EDFilter('HLTHighLevel', TriggerResultsTag = cms.InputTag('TriggerResults','','HLT'), HLTPaths = cms.vstring('HLT_Mu17_Mu8_v*'), eventSetupPathsKey = cms.string(''), andOr = cms.bool(True), #----- True = OR, False = AND between the HLTPaths throw = cms.bool(False) ) process.p = cms.Path(process.hltMuFilter * process.zjet)
[ "" ]
f6be5f348da2ecdc3c2f5549a9bb3406e3276280
5da5473ff3026165a47f98744bac82903cf008e0
/packages/google-cloud-securitycenter/google/cloud/securitycenter_v1/types/vulnerability.py
a9fea0e6bca2b8199f9e1f0237c0ce0083326912
[ "Apache-2.0" ]
permissive
googleapis/google-cloud-python
ed61a5f03a476ab6053870f4da7bc5534e25558b
93c4e63408c65129422f65217325f4e7d41f7edf
refs/heads/main
2023-09-04T09:09:07.852632
2023-08-31T22:49:26
2023-08-31T22:49:26
16,316,451
2,792
917
Apache-2.0
2023-09-14T21:45:18
2014-01-28T15:51:47
Python
UTF-8
Python
false
false
12,429
py
# -*- coding: utf-8 -*- # Copyright 2023 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # from __future__ import annotations from typing import MutableMapping, MutableSequence import proto # type: ignore __protobuf__ = proto.module( package="google.cloud.securitycenter.v1", manifest={ "Vulnerability", "Cve", "Reference", "Cvssv3", }, ) class Vulnerability(proto.Message): r"""Refers to common vulnerability fields e.g. cve, cvss, cwe etc. Attributes: cve (google.cloud.securitycenter_v1.types.Cve): CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) """ cve: "Cve" = proto.Field( proto.MESSAGE, number=1, message="Cve", ) class Cve(proto.Message): r"""CVE stands for Common Vulnerabilities and Exposures. More information: https://cve.mitre.org Attributes: id (str): The unique identifier for the vulnerability. e.g. CVE-2021-34527 references (MutableSequence[google.cloud.securitycenter_v1.types.Reference]): Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527 cvssv3 (google.cloud.securitycenter_v1.types.Cvssv3): Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document upstream_fix_available (bool): Whether upstream fix is available for the CVE. """ id: str = proto.Field( proto.STRING, number=1, ) references: MutableSequence["Reference"] = proto.RepeatedField( proto.MESSAGE, number=2, message="Reference", ) cvssv3: "Cvssv3" = proto.Field( proto.MESSAGE, number=3, message="Cvssv3", ) upstream_fix_available: bool = proto.Field( proto.BOOL, number=4, ) class Reference(proto.Message): r"""Additional Links Attributes: source (str): Source of the reference e.g. NVD uri (str): Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527. """ source: str = proto.Field( proto.STRING, number=1, ) uri: str = proto.Field( proto.STRING, number=2, ) class Cvssv3(proto.Message): r"""Common Vulnerability Scoring System version 3. Attributes: base_score (float): The base score is a function of the base metric scores. attack_vector (google.cloud.securitycenter_v1.types.Cvssv3.AttackVector): Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible. attack_complexity (google.cloud.securitycenter_v1.types.Cvssv3.AttackComplexity): This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability. privileges_required (google.cloud.securitycenter_v1.types.Cvssv3.PrivilegesRequired): This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability. user_interaction (google.cloud.securitycenter_v1.types.Cvssv3.UserInteraction): This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. scope (google.cloud.securitycenter_v1.types.Cvssv3.Scope): The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope. confidentiality_impact (google.cloud.securitycenter_v1.types.Cvssv3.Impact): This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability. integrity_impact (google.cloud.securitycenter_v1.types.Cvssv3.Impact): This metric measures the impact to integrity of a successfully exploited vulnerability. availability_impact (google.cloud.securitycenter_v1.types.Cvssv3.Impact): This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability. """ class AttackVector(proto.Enum): r"""This metric reflects the context by which vulnerability exploitation is possible. Values: ATTACK_VECTOR_UNSPECIFIED (0): Invalid value. ATTACK_VECTOR_NETWORK (1): The vulnerable component is bound to the network stack and the set of possible attackers extends beyond the other options listed below, up to and including the entire Internet. ATTACK_VECTOR_ADJACENT (2): The vulnerable component is bound to the network stack, but the attack is limited at the protocol level to a logically adjacent topology. ATTACK_VECTOR_LOCAL (3): The vulnerable component is not bound to the network stack and the attacker's path is via read/write/execute capabilities. ATTACK_VECTOR_PHYSICAL (4): The attack requires the attacker to physically touch or manipulate the vulnerable component. """ ATTACK_VECTOR_UNSPECIFIED = 0 ATTACK_VECTOR_NETWORK = 1 ATTACK_VECTOR_ADJACENT = 2 ATTACK_VECTOR_LOCAL = 3 ATTACK_VECTOR_PHYSICAL = 4 class AttackComplexity(proto.Enum): r"""This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability. Values: ATTACK_COMPLEXITY_UNSPECIFIED (0): Invalid value. ATTACK_COMPLEXITY_LOW (1): Specialized access conditions or extenuating circumstances do not exist. An attacker can expect repeatable success when attacking the vulnerable component. ATTACK_COMPLEXITY_HIGH (2): A successful attack depends on conditions beyond the attacker's control. That is, a successful attack cannot be accomplished at will, but requires the attacker to invest in some measurable amount of effort in preparation or execution against the vulnerable component before a successful attack can be expected. """ ATTACK_COMPLEXITY_UNSPECIFIED = 0 ATTACK_COMPLEXITY_LOW = 1 ATTACK_COMPLEXITY_HIGH = 2 class PrivilegesRequired(proto.Enum): r"""This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability. Values: PRIVILEGES_REQUIRED_UNSPECIFIED (0): Invalid value. PRIVILEGES_REQUIRED_NONE (1): The attacker is unauthorized prior to attack, and therefore does not require any access to settings or files of the vulnerable system to carry out an attack. PRIVILEGES_REQUIRED_LOW (2): The attacker requires privileges that provide basic user capabilities that could normally affect only settings and files owned by a user. Alternatively, an attacker with Low privileges has the ability to access only non-sensitive resources. PRIVILEGES_REQUIRED_HIGH (3): The attacker requires privileges that provide significant (e.g., administrative) control over the vulnerable component allowing access to component-wide settings and files. """ PRIVILEGES_REQUIRED_UNSPECIFIED = 0 PRIVILEGES_REQUIRED_NONE = 1 PRIVILEGES_REQUIRED_LOW = 2 PRIVILEGES_REQUIRED_HIGH = 3 class UserInteraction(proto.Enum): r"""This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. Values: USER_INTERACTION_UNSPECIFIED (0): Invalid value. USER_INTERACTION_NONE (1): The vulnerable system can be exploited without interaction from any user. USER_INTERACTION_REQUIRED (2): Successful exploitation of this vulnerability requires a user to take some action before the vulnerability can be exploited. """ USER_INTERACTION_UNSPECIFIED = 0 USER_INTERACTION_NONE = 1 USER_INTERACTION_REQUIRED = 2 class Scope(proto.Enum): r"""The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope. Values: SCOPE_UNSPECIFIED (0): Invalid value. SCOPE_UNCHANGED (1): An exploited vulnerability can only affect resources managed by the same security authority. SCOPE_CHANGED (2): An exploited vulnerability can affect resources beyond the security scope managed by the security authority of the vulnerable component. """ SCOPE_UNSPECIFIED = 0 SCOPE_UNCHANGED = 1 SCOPE_CHANGED = 2 class Impact(proto.Enum): r"""The Impact metrics capture the effects of a successfully exploited vulnerability on the component that suffers the worst outcome that is most directly and predictably associated with the attack. Values: IMPACT_UNSPECIFIED (0): Invalid value. IMPACT_HIGH (1): High impact. IMPACT_LOW (2): Low impact. IMPACT_NONE (3): No impact. """ IMPACT_UNSPECIFIED = 0 IMPACT_HIGH = 1 IMPACT_LOW = 2 IMPACT_NONE = 3 base_score: float = proto.Field( proto.DOUBLE, number=1, ) attack_vector: AttackVector = proto.Field( proto.ENUM, number=5, enum=AttackVector, ) attack_complexity: AttackComplexity = proto.Field( proto.ENUM, number=6, enum=AttackComplexity, ) privileges_required: PrivilegesRequired = proto.Field( proto.ENUM, number=7, enum=PrivilegesRequired, ) user_interaction: UserInteraction = proto.Field( proto.ENUM, number=8, enum=UserInteraction, ) scope: Scope = proto.Field( proto.ENUM, number=9, enum=Scope, ) confidentiality_impact: Impact = proto.Field( proto.ENUM, number=10, enum=Impact, ) integrity_impact: Impact = proto.Field( proto.ENUM, number=11, enum=Impact, ) availability_impact: Impact = proto.Field( proto.ENUM, number=12, enum=Impact, ) __all__ = tuple(sorted(__protobuf__.manifest))
dca89cf77d813bdb1d0fed7d050952a5d09b0573
e45d539e04d91bda4e622983a5b955cd496052f4
/Sauvegarde_event.py
90219e7007f809248969fe36066100034cc94579
[]
no_license
dupuis24/projet1
88a1ce938cacdc14dfaff24fb8d294001d5267b0
18273b53be534cf3fd8bc0b35e50082ca8aaab93
refs/heads/master
2020-03-21T21:07:48.370384
2018-08-16T16:51:57
2018-08-16T16:51:57
139,047,572
0
0
null
null
null
null
UTF-8
Python
false
false
4,825
py
# import the necessary packages from collections import deque from threading import Thread from queue import Queue import time import cv2 class KeyClipWriter: def __init__(self, bufSize=64, timeout=1.0): # store the maximum buffer size of frames to be kept # in memory along with the sleep timeout during threading self.bufSize = bufSize self.timeout = timeout # initialize the buffer of frames, queue of frames that # need to be written to file, video writer, writer thread, # and boolean indicating whether recording has started or not self.frames = deque(maxlen=bufSize) self.Q = None self.writer = None self.thread = None self.recording = False def update(self, frame): # update the frames buffer self.frames.appendleft(frame) # if we are recording, update the queue as well if self.recording: self.Q.put(frame) def start(self, outputPath, fourcc, fps): # indicate that we are recording, start the video writer, # and initialize the queue of frames that need to be written # to the video file self.recording = True self.writer = cv2.VideoWriter(outputPath, fourcc, fps, (self.frames[0].shape[1], self.frames[0].shape[0]), True) self.Q = Queue() # loop over the frames in the deque structure and add them # to the queue for i in range(len(self.frames), 0, -1): self.Q.put(self.frames[i - 1]) # start a thread write frames to the video file self.thread = Thread(target=self.write, args=()) self.thread.daemon = True self.thread.start() def write(self): # keep looping while True: # if we are done recording, exit the thread if not self.recording: return # check to see if there are entries in the queue if not self.Q.empty(): # grab the next frame in the queue and write it # to the video file frame = self.Q.get() self.writer.write(frame) # otherwise, the queue is empty, so sleep for a bit # so we don't waste CPU cycles else: time.sleep(self.timeout) y event video clips with OpenCVPython # import the necessary packages from collections import deque from threading import Thread from queue import Queue import time import cv2 class KeyClipWriter: def __init__(self, bufSize=64, timeout=1.0): # store the maximum buffer size of frames to be kept # in memory along with the sleep timeout during threading self.bufSize = bufSize self.timeout = timeout # initialize the buffer of frames, queue of frames that # need to be written to file, video writer, writer thread, # and boolean indicating whether recording has started or not self.frames = deque(maxlen=bufSize) self.Q = None self.writer = None self.thread = None self.recording = False def update(self, frame): # update the frames buffer self.frames.appendleft(frame) # if we are recording, update the queue as well if self.recording: self.Q.put(frame) def start(self, outputPath, fourcc, fps): # indicate that we are recording, start the video writer, # and initialize the queue of frames that need to be written # to the video file self.recording = True self.writer = cv2.VideoWriter(outputPath, fourcc, fps, (self.frames[0].shape[1], self.frames[0].shape[0]), True) self.Q = Queue() # loop over the frames in the deque structure and add them # to the queue for i in range(len(self.frames), 0, -1): self.Q.put(self.frames[i - 1]) # start a thread write frames to the video file self.thread = Thread(target=self.write, args=()) self.thread.daemon = True self.thread.start() def write(self): # keep looping while True: # if we are done recording, exit the thread if not self.recording: return # check to see if there are entries in the queue if not self.Q.empty(): # grab the next frame in the queue and write it # to the video file frame = self.Q.get() self.writer.write(frame) # otherwise, the queue is empty, so sleep for a bit # so we don't waste CPU cycles else: time.sleep(self.timeout) def flush(self): # empty the queue by flushing all remaining frames to file while not self.Q.empty(): frame = self.Q.get() self.writer.write(frame) def flush(self): # empty the queue by flushing all remaining frames to file while not self.Q.empty(): frame = self.Q.get() self.writer.write(frame) def finish(self): # indicate that we are done recording, join the thread, # flush all remaining frames in the queue to file, and # release the writer pointer self.recording = False self.thread.join() self.flush() self.writer.release()
b7b1ab392f3f33005886b428869d51aedb37ce95
c13807d1bfddb0218de2d8d124fac582cdecfc5c
/200B.py
73d4e2490933d310cd2a803565b2359bf2dbc2f3
[]
no_license
FrankGuo22/Codeforces
b6d09f7bb89abd16d68c1324a684b8be204285ba
33007f5868838303c4b544bec49f4ca5453f45a0
refs/heads/master
2021-01-22T07:13:54.502378
2015-05-15T10:54:21
2015-05-15T10:54:21
31,418,410
1
0
null
null
null
null
UTF-8
Python
false
false
156
py
# coding = utf - 8 n = raw_input() a = map(int,raw_input().split()) sum = 0 for i in a: sum += i f1,f2 = float(sum),float(n) print '{0:.12f}'.format(f1/f2)
dffed986b4dbd206299a14c1eeed0d5c4cb867a6
9a074d92f2cbf40d7148ef1f544ccb246a9d73ed
/systeme_de_gestion_de_stock/projet/settings.py
ff0da279cb12ebe3c77892a1a4e5e31e7978f2b4
[]
no_license
sergedemanou/systeme_de_gestion_de_stock
300cc7bef2e9ab7469dd49c7d98329aac048bc08
c3372fcf5530f2b743186f4ed643dae4a6497780
refs/heads/main
2023-04-02T05:13:17.585830
2021-04-01T08:33:20
2021-04-01T08:33:20
353,316,085
0
0
null
null
null
null
UTF-8
Python
false
false
3,394
py
""" Django settings for projet project. Generated by 'django-admin startproject' using Django 3.1.7. For more information on this file, see https://docs.djangoproject.com/en/3.1/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/3.1/ref/settings/ """ from pathlib import Path import os # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '+o(#ju=e&9i7k31jtwe$lchp)slx*%(zisk^xh)5324%upfleb' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'crispy_forms', 'django_filters', 'produit', 'client', 'commande', 'compte', ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] ROOT_URLCONF = 'projet.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'projet.wsgi.application' # Database # https://docs.djangoproject.com/en/3.1/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Password validation # https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/3.1/topics/i18n/ LANGUAGE_CODE = 'fr-fr' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/3.1/howto/static-files/ STATIC_URL = '/static/' MEDIA_URL = '/media/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static'), ] STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') CRISPY_TEMPLATE_PACK = 'bootstrap4'
4265c5c776462df6a9e2ace5418932716eac8fc8
acb8e84e3b9c987fcab341f799f41d5a5ec4d587
/langs/0/a_l.py
653cbd127ab6e82ce289684705f743c8316095a0
[]
no_license
G4te-Keep3r/HowdyHackers
46bfad63eafe5ac515da363e1c75fa6f4b9bca32
fb6d391aaecb60ab5c4650d4ae2ddd599fd85db2
refs/heads/master
2020-08-01T12:08:10.782018
2016-11-13T20:45:50
2016-11-13T20:45:50
73,624,224
0
1
null
null
null
null
UTF-8
Python
false
false
486
py
import sys def printFunction(lineRemaining): if lineRemaining[0] == '"' and lineRemaining[-1] == '"': if len(lineRemaining) > 2: #data to print lineRemaining = lineRemaining[1:-1] print ' '.join(lineRemaining) else: print def main(fileName): with open(fileName) as f: for line in f: data = line.split() if data[0] == 'a_L': printFunction(data[1:]) else: print 'ERROR' return if __name__ == '__main__': main(sys.argv[1])
42ce96bca156c131b8614cf4782ddab933300c90
4553c5c7bbdb07779fab531a350000050d885221
/level2/main.py
c18b4f8c67b24f9c345931233137ef05c882d91f
[]
no_license
Rsilnav/CatalystsCodingContest2017
509c972cf9363315cffeb1bc87c8855e8833a824
f5bcd53519c234a54c6d8bcb49128fa110fa390e
refs/heads/master
2021-01-18T20:40:10.194819
2017-04-02T12:27:20
2017-04-02T12:27:20
86,984,186
1
0
null
null
null
null
UTF-8
Python
false
false
854
py
import math def dist(x1, y1, x2, y2): return math.sqrt((x1 - x2)**2 + (y1 - y2)**2) def dista(p1, p2): return dist(p1[0], p1[1], p2[0], p2[1]) f = open("level2/level2-2.txt", "r") cities = int(f.readline()) list_cities = {} for city in range(cities): temp = f.readline().split() print temp x = int(temp[1]) y = int(temp[2]) name = temp[0] list_cities[name] = [x, y] start1, start2 = f.readline().split() n1, n2 = f.readline().split() start1_d = min(dista(list_cities[start1], list_cities[n1]), dista(list_cities[start1], list_cities[n2])) start2_d = min(dista(list_cities[start2], list_cities[n1]), dista(list_cities[start2], list_cities[n2])) d = dista(list_cities[n1], list_cities[n2]) print start1_d/15.0, start2_d/15.0, (d/250.0 + 200.0) print int(round(start1_d/15.0 + start2_d/15.0 + (d/250.0 + 200.0)))
36e92b3d30e1040b8e63d1028c04440af0a0e16e
8548329b7f0aa42e8587f7ee663b8eb8ae84dac9
/dec1.py
1579f177029606ac5c0bea9f4d51a04c3915ad4a
[]
no_license
vijeeshtp/python22
379f631c77a87df5dcf9910f63b447beaed833c0
0d14c3de5fc893779c4fc1926209edea9536feb8
refs/heads/master
2020-07-31T23:11:31.820544
2019-10-23T06:08:34
2019-10-23T06:08:34
210,783,004
0
0
null
null
null
null
UTF-8
Python
false
false
456
py
def xyz (f): def inner (*a, **b): print ("---------") f (*a, **b) print ("---------") return inner @xyz def hai (): print ("Hai") @xyz def hello(): print ("Hello") @xyz def add (a,b): print ( a+b) @xyz def greet (**vals): print (vals) print ( vals['msg'] +" ," + vals['name'] ) greet (name='kumar', msg= "good morning") #h =outer (hai) #h1= outer (hello) #h () #h1() hai() hello() add(11,33)
2296f109907a1fc0cd3e374b1f43a5f9f53158e3
d055ea30c1df408b894daf0c2714de21d77fae46
/django_Project/django_Project/settings.py
2e5dce150fe1bed4667564f08fc79d0852028214
[]
no_license
vishvakkumaran/Argonne-Summer-Project-2020
7414fc7eec1ba7ac4dafec4a762b4f081d27a2d9
f7c2b804e3b4aa9878791c6c846bf56fc69332ae
refs/heads/master
2022-11-18T08:47:48.600898
2020-07-20T20:58:03
2020-07-20T20:58:03
263,693,239
0
0
null
null
null
null
UTF-8
Python
false
false
3,126
py
""" Django settings for django_Project project. Generated by 'django-admin startproject' using Django 3.0.7. For more information on this file, see https://docs.djangoproject.com/en/3.0/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/3.0/ref/settings/ """ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'ha+r=rcdhodrj6x#glg3$$w(9jd+xz%@lj0e8zspvoyr=6e@02' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'matplot' ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] ROOT_URLCONF = 'django_Project.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'django_Project.wsgi.application' # Database # https://docs.djangoproject.com/en/3.0/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Password validation # https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/3.0/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/3.0/howto/static-files/ STATIC_URL = '/static/'
c5f2f26d46bac1c9ac0732bb80058056477b270f
e7a7d83c73bda42d41df6e89d3733856cec5a8b2
/getMat.py
ddd9ecfb644bd4f20941a65113e9aae2770622ab
[]
no_license
sonhill/Array-assisted-Phase-Picker
19d812bed8d13809a216e7c9c5c44d0715d3e56a
f656ad1801fa5d344aa374234574fdd8774ec8d6
refs/heads/master
2022-08-24T02:01:06.582122
2020-05-22T10:06:50
2020-05-22T10:06:50
266,090,354
1
0
null
2020-05-22T11:08:20
2020-05-22T11:08:20
null
UTF-8
Python
false
false
1,317
py
import os import detecQuake import sacTool from imp import reload from obspy import UTCDateTime import tool from glob import glob import names R=[37.5,43,95,104.5] sDate=UTCDateTime(2014,10,17,0,0,0) eDate=UTCDateTime(2014,12,18,0,0,0) cmpAz=sacTool.loadCmpAz() staInfos=sacTool.readStaInfos('staLst_NM',cmpAz=cmpAz) quakeLs=tool.readQuakeLs('NM/phaseLstNMALLReloc',staInfos) laL=R[:2] loL=R[2:] laN=30 loN=30 modelL = None aMat=sacTool.areaMat(laL,loL,laN,loN) staTimeML= [None for staInfo in staInfos] for sec in range(int(sDate.timestamp),int(eDate.timestamp),86400): print(sec) date=UTCDateTime(sec) dayNum=int(sec/86400) dayDir='NM/output/'+str(dayNum) if os.path.exists(dayDir): print('done') continue quakeL=[] for quakeLTmp in quakeLs: for quake in quakeLTmp: if quake.time>=date.timestamp and quake.time<date.timestamp+86400: quakeL.append(quake) if len(quakeL)==0: print('no quake',date) continue staL = detecQuake.getStaL(staInfos, aMat, staTimeML, modelL,date, \ getFileName=names.NMFileName,mode='mid',isPre=False,R=R,f=[-1,-1]) print('quake Num:%d'%len(quakeL)) tool.saveQuakeLWaveform(staL,quakeL, matDir='NM/output/') detecQuake.plotResS(staL,quakeL,outDir='NM/output/')
e98acca5fc104aff0d86422d133d604d1cd6858e
ad136e8faf198734dc3cf874521642ba854919f3
/urlDetection.py
5f37038acde1eb6e6be7b04c6b1753a90e0b9758
[]
no_license
Murklan/Ircbot
f6ce83a59d18e884a80a5f726e8a1de244917e8a
b6d501e3bf3b8d4b9fd6e76812fe823edc7f34ce
refs/heads/master
2016-09-07T15:42:02.019149
2016-02-25T18:43:19
2016-02-25T18:43:19
16,739,693
0
0
null
2016-02-25T18:16:18
2014-02-11T17:55:17
Python
UTF-8
Python
false
false
1,380
py
from bs4 import BeautifulSoup import urllib2 def get_url_title(data): start = data.find('http') stop = data.find(' ', start) if stop == -1: stop = len(data) url = data[start:stop] if url.find('i.imgur') != -1 and not url.find('/a/') != -1: url = fix_imgur_url(url) if return_title(url).find('the simple image sharer') != -1: return 'That Imgur link does not seem to have a proper title' return return_title(url) else: if url.find('twitch.tv') != -1: return get_twitch_title(url) return return_title(url) def get_twitch_title(URL): nomnom = get_soup(URL) stream_title = nomnom.findAll(attrs={'property': 'og:description'}) streamer = nomnom.findAll(attrs={'property': 'og:title'}) title = 'Twitch > ' + streamer[0]['content'] + ' - ' + stream_title[0]['content'] return title def fix_imgur_url(url): tempurl = url.split('.') url = tempurl[0] url = 'http://' + tempurl[1] + '.' + tempurl[2] return url def return_title(url): try: soup = get_soup(url) title = soup.title.contents[0] return 'URL > ' + title.lstrip().encode("utf-8") except: return "Couldn't find a proper title and/or something went wrong :(" def get_soup(url): soup = BeautifulSoup(urllib2.urlopen(url).read()) return soup
6ac441a175fc3eed064b134d0875d6e53af26e72
dad5e3ba2261afffcb11333efc3ddf30e20cfcd3
/topwordsLogOdds.py
ca75565cb0fca1b07a554a85b0a9c46badda3976
[]
no_license
Angelaaaaaa/Machine-Learning
96332ad1a30e20ca87bf34b9edec2aa45a14aefb
f90af97e4737d4c5324b46df52200197c413cd5c
refs/heads/master
2021-01-22T04:01:10.010757
2017-02-09T20:38:26
2017-02-09T20:38:26
81,490,935
0
0
null
null
null
null
UTF-8
Python
false
false
2,014
py
import sys from collections import Counter import math import operator train = sys.argv[1] fo = open(train, "r") docs = fo.readlines() docs = map(lambda s: s.strip(), docs) def Vnb(): libL = [] conL = [] # split C and L txt file for txt in docs: if txt[0] == "l": libL.append(txt) else: conL.append(txt) ll = len(libL) lc = len(conL) Pv = dict() # P(v) Pv["L"] = ll * 1.0/(lc + ll) Pv["C"] = lc * 1.0/(lc + ll) #creat text containing all menber of docj Tl = [] Tc = [] for i in libL: fo = open(i, "r") trainData = fo.readlines() trainData = map(lambda s: s.strip(), trainData) trainData = map(lambda s: s.lower(), trainData) Tl += (trainData) for j in conL: fo = open(j, "r") trainData = fo.readlines() trainData = map(lambda s: s.strip(), trainData) trainData = map(lambda s: s.lower(), trainData) Tc += (trainData) # count of uniqe words in nl = len((Tl)) nc = len((Tc)) Pl = dict(Counter(Tl)) Pc = dict(Counter(Tc)) vocab = set(Tc + Tl) lv = len(vocab) for i in vocab: if i in Pl: Pl[i] = ((Pl[i] + 1.0) / (lv + (nl))) else: Pl[i] = ((1.0) / (lv + (nl))) if i in Pc: Pc[i] = ((Pc[i] + 1.0) / (lv + (nc))) else: Pc[i] = ((1.0) / (lv + (nc))) MaxPc = [] Mc = [] MaxPl = [] Ml = [] logPc = {} logPl = {} for k in Pc.keys(): if k in Pl: logPc[k] = math.log(Pc[k]/Pl[k]) else: logPc[k] = 0 for k in Pl.keys(): if k in Pc: logPl[k] = math.log(Pl[k]/Pc[k]) else: logPl[k] = 0 for i in range (0, 20): kl = max(logPl.iteritems(), key=operator.itemgetter(1))[0] kc = max(logPc.iteritems(), key=operator.itemgetter(1))[0] MaxPl.append(kl) MaxPc.append(kc) Ml.append(logPl[kl]) Mc.append(logPc[kc]) del logPl[kl] del logPc[kc] for k in range(0,20): print MaxPl[k], str("%.4f" % Ml[k]) print for k in range(0,20): print MaxPc[k], str("%.4f" % Mc[k]) Vnb()
fad239a76939996543ed888402063bca524bc74e
02a8f927ed485c97e39b294f722aa3174e4bccb5
/Dimensionality Reduction Folder/Kernel PCA/main.py
5ae0fba12de74570895871f85af9c2555d5e6da5
[]
no_license
Quantanalyst/MLeducationalprojects
768cc2e2216e6fbf712cbbe2a7c3d1209847dc9c
07a6c983ca03244cf04864d3185d01dc9312bad3
refs/heads/master
2020-09-19T23:02:07.451848
2020-01-30T20:22:14
2020-01-30T20:22:14
224,317,909
1
0
null
null
null
null
UTF-8
Python
false
false
2,967
py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mon Dec 16 11:16:06 2019 @author: saeed mohajeryami, PhD Kernel PCA """ # Importing the libraries import numpy as np import matplotlib.pyplot as plt import pandas as pd # Importing the dataset dataset = pd.read_csv('Social_Network_Ads.csv') X = dataset.iloc[:, [2, 3]].values y = dataset.iloc[:, 4].values # Splitting the dataset into the Training set and Test set from sklearn.model_selection import train_test_split X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.25, random_state = 0) # Feature Scaling from sklearn.preprocessing import StandardScaler sc = StandardScaler() X_train = sc.fit_transform(X_train) X_test = sc.transform(X_test) # Applying Kernel PCA from sklearn.decomposition import KernelPCA kpca = KernelPCA(n_components = 2, kernel = 'rbf') X_train = kpca.fit_transform(X_train) X_test = kpca.transform(X_test) # Fitting Logistic Regression to the Training set from sklearn.linear_model import LogisticRegression classifier = LogisticRegression(random_state = 0) classifier.fit(X_train, y_train) # Predicting the Test set results y_pred = classifier.predict(X_test) # Making the Confusion Matrix from sklearn.metrics import confusion_matrix cm = confusion_matrix(y_test, y_pred) # Visualising the Training set results from matplotlib.colors import ListedColormap X_set, y_set = X_train, y_train X1, X2 = np.meshgrid(np.arange(start = X_set[:, 0].min() - 1, stop = X_set[:, 0].max() + 1, step = 0.01), np.arange(start = X_set[:, 1].min() - 1, stop = X_set[:, 1].max() + 1, step = 0.01)) plt.contourf(X1, X2, classifier.predict(np.array([X1.ravel(), X2.ravel()]).T).reshape(X1.shape), alpha = 0.75, cmap = ListedColormap(('red', 'green'))) plt.xlim(X1.min(), X1.max()) plt.ylim(X2.min(), X2.max()) for i, j in enumerate(np.unique(y_set)): plt.scatter(X_set[y_set == j, 0], X_set[y_set == j, 1], c = ListedColormap(('red', 'green'))(i), label = j) plt.title('Logistic Regression (Training set)') plt.xlabel('Age') plt.ylabel('Estimated Salary') plt.legend() plt.show() # Visualising the Test set results from matplotlib.colors import ListedColormap X_set, y_set = X_test, y_test X1, X2 = np.meshgrid(np.arange(start = X_set[:, 0].min() - 1, stop = X_set[:, 0].max() + 1, step = 0.01), np.arange(start = X_set[:, 1].min() - 1, stop = X_set[:, 1].max() + 1, step = 0.01)) plt.contourf(X1, X2, classifier.predict(np.array([X1.ravel(), X2.ravel()]).T).reshape(X1.shape), alpha = 0.75, cmap = ListedColormap(('red', 'green'))) plt.xlim(X1.min(), X1.max()) plt.ylim(X2.min(), X2.max()) for i, j in enumerate(np.unique(y_set)): plt.scatter(X_set[y_set == j, 0], X_set[y_set == j, 1], c = ListedColormap(('red', 'green'))(i), label = j) plt.title('Logistic Regression (Test set)') plt.xlabel('Age') plt.ylabel('Estimated Salary') plt.legend() plt.show()
fe2e0dbf229673eea2e424f4dd6335c18441af76
9b0ba72bed02517b67309e9a5a404a08612bddb8
/Basic Algorithm/images/data_utils.py
289acfbb7ffd94c52978a535326375fc8022b007
[]
no_license
ngoctuhan/When-i-learn-Machine-Learning-from-Zero
88c52bd1c74f463d3260721c78da0483ee117a0b
e0e2b247294f18538e6bfdd9075a4f4cd77b96fb
refs/heads/master
2021-05-25T15:00:52.044191
2020-04-07T13:52:04
2020-04-07T13:52:04
253,798,719
2
0
null
null
null
null
UTF-8
Python
false
false
6,981
py
# -*- coding: utf-8 -*- """ Created on Sat Jan 19 22:16:49 2019 @author: trung """ import pickle import numpy as np import os from scipy.misc import imread def load_CIFAR_batch(filename): """ load single batch of cifar """ with open(filename, 'rb') as f: datadict = pickle.load(f, fix_imports=True, encoding="ASCII", errors="strict") X = datadict['data'] Y = datadict['labels'] X = X.reshape(10000, 3, 32, 32).transpose(0,2,3,1).astype("float") Y = np.array(Y) return X, Y def load_CIFAR10(ROOT): """ load all of cifar """ xs = [] ys = [] for b in range(1,6): f = os.path.join(ROOT, 'data_batch_%d' % (b, )) X, Y = load_CIFAR_batch(f) xs.append(X) ys.append(Y) Xtr = np.concatenate(xs) Ytr = np.concatenate(ys) del X, Y Xte, Yte = load_CIFAR_batch(os.path.join(ROOT, 'test_batch')) return Xtr, Ytr, Xte, Yte def get_CIFAR10_data(num_training=49000, num_validation=1000, num_test=1000): """ Load the CIFAR-10 dataset from disk and perform preprocessing to prepare it for classifiers. These are the same steps as we used for the SVM, but condensed to a single function. """ # Load the raw CIFAR-10 data cifar10_dir = 'cs231n/datasets/cifar-10-batches-py' X_train, y_train, X_test, y_test = load_CIFAR10(cifar10_dir) # Subsample the data mask = range(num_training, num_training + num_validation) X_val = X_train[mask] y_val = y_train[mask] mask = range(num_training) X_train = X_train[mask] y_train = y_train[mask] mask = range(num_test) X_test = X_test[mask] y_test = y_test[mask] # Normalize the data: subtract the mean image mean_image = np.mean(X_train, axis=0) X_train -= mean_image X_val -= mean_image X_test -= mean_image # Transpose so that channels come first X_train = X_train.transpose(0, 3, 1, 2).copy() X_val = X_val.transpose(0, 3, 1, 2).copy() X_test = X_test.transpose(0, 3, 1, 2).copy() # Package data into a dictionary return { 'X_train': X_train, 'y_train': y_train, 'X_val': X_val, 'y_val': y_val, 'X_test': X_test, 'y_test': y_test, } def load_tiny_imagenet(path, dtype=np.float32): """ Load TinyImageNet. Each of TinyImageNet-100-A, TinyImageNet-100-B, and TinyImageNet-200 have the same directory structure, so this can be used to load any of them. Inputs: - path: String giving path to the directory to load. - dtype: numpy datatype used to load the data. Returns: A tuple of - class_names: A list where class_names[i] is a list of strings giving the WordNet names for class i in the loaded dataset. - X_train: (N_tr, 3, 64, 64) array of training images - y_train: (N_tr,) array of training labels - X_val: (N_val, 3, 64, 64) array of validation images - y_val: (N_val,) array of validation labels - X_test: (N_test, 3, 64, 64) array of testing images. - y_test: (N_test,) array of test labels; if test labels are not available (such as in student code) then y_test will be None. """ # First load wnids with open(os.path.join(path, 'wnids.txt'), 'r') as f: wnids = [x.strip() for x in f] # Map wnids to integer labels wnid_to_label = {wnid: i for i, wnid in enumerate(wnids)} # Use words.txt to get names for each class with open(os.path.join(path, 'words.txt'), 'r') as f: wnid_to_words = dict(line.split('\t') for line in f) for wnid, words in wnid_to_words.iteritems(): wnid_to_words[wnid] = [w.strip() for w in words.split(',')] class_names = [wnid_to_words[wnid] for wnid in wnids] # Next load training data. X_train = [] y_train = [] for i, wnid in enumerate(wnids): if (i + 1) % 20 == 0: print ('loading training data for synset %d / %d' % (i + 1, len(wnids))) # To figure out the filenames we need to open the boxes file boxes_file = os.path.join(path, 'train', wnid, '%s_boxes.txt' % wnid) with open(boxes_file, 'r') as f: filenames = [x.split('\t')[0] for x in f] num_images = len(filenames) X_train_block = np.zeros((num_images, 3, 64, 64), dtype=dtype) y_train_block = wnid_to_label[wnid] * np.ones(num_images, dtype=np.int64) for j, img_file in enumerate(filenames): img_file = os.path.join(path, 'train', wnid, 'images', img_file) img = imread(img_file) if img.ndim == 2: ## grayscale file img.shape = (64, 64, 1) X_train_block[j] = img.transpose(2, 0, 1) X_train.append(X_train_block) y_train.append(y_train_block) # We need to concatenate all training data X_train = np.concatenate(X_train, axis=0) y_train = np.concatenate(y_train, axis=0) # Next load validation data with open(os.path.join(path, 'val', 'val_annotations.txt'), 'r') as f: img_files = [] val_wnids = [] for line in f: img_file, wnid = line.split('\t')[:2] img_files.append(img_file) val_wnids.append(wnid) num_val = len(img_files) y_val = np.array([wnid_to_label[wnid] for wnid in val_wnids]) X_val = np.zeros((num_val, 3, 64, 64), dtype=dtype) for i, img_file in enumerate(img_files): img_file = os.path.join(path, 'val', 'images', img_file) img = imread(img_file) if img.ndim == 2: img.shape = (64, 64, 1) X_val[i] = img.transpose(2, 0, 1) # Next load test images # Students won't have test labels, so we need to iterate over files in the # images directory. img_files = os.listdir(os.path.join(path, 'test', 'images')) X_test = np.zeros((len(img_files), 3, 64, 64), dtype=dtype) for i, img_file in enumerate(img_files): img_file = os.path.join(path, 'test', 'images', img_file) img = imread(img_file) if img.ndim == 2: img.shape = (64, 64, 1) X_test[i] = img.transpose(2, 0, 1) y_test = None y_test_file = os.path.join(path, 'test', 'test_annotations.txt') if os.path.isfile(y_test_file): with open(y_test_file, 'r') as f: img_file_to_wnid = {} for line in f: line = line.split('\t') img_file_to_wnid[line[0]] = line[1] y_test = [wnid_to_label[img_file_to_wnid[img_file]] for img_file in img_files] y_test = np.array(y_test) return class_names, X_train, y_train, X_val, y_val, X_test, y_test def load_models(models_dir): """ Load saved models from disk. This will attempt to unpickle all files in a directory; any files that give errors on unpickling (such as README.txt) will be skipped. Inputs: - models_dir: String giving the path to a directory containing model files. Each model file is a pickled dictionary with a 'model' field. Returns: A dictionary mapping model file names to models. """ models = {} for model_file in os.listdir(models_dir): with open(os.path.join(models_dir, model_file), 'rb') as f: try: models[model_file] = pickle.load(f)['model'] except pickle.UnpicklingError: continue return models
d88655eca82bb1dfc62a5f8e64effd742211eda1
7a3d793802cd0b2cde26d6e901d71c65b5005a0c
/app.py
16148c97f90dc00ea7799e0bc9c999bbf8d9fe48
[]
no_license
scroveez/otest
ba7a3d8d1378c5ed20a1778a1411a51eb1a57e4e
4ea4d5209faa6235f0ae829fe3e1f4c68226eb0e
refs/heads/master
2020-12-28T18:54:17.390007
2020-02-08T17:53:42
2020-02-08T17:53:42
238,449,492
0
0
null
null
null
null
UTF-8
Python
false
false
715
py
from flask import Flask, render_template, request, flash, redirect, url_for import redis import string import random app = Flask(__name__) #app.debug = True #app.secret_key = 'kdud743ldsksjdlff092dsjd632skdjhfdd' @app.route('/') def connect_redis(): #contenty = {} #r = redis.StrictRedis(host='192.168.58.150', port=6379, db=0) #for key in r.scan_iter("*"): #for key,val in r.hscan("*"): # val = r.get(key) # contenty[key]=val #contenty = r.hgetall("mydict") contenty = {"1":"234567"} #print str(type(contenty)) return render_template('index.html', title='Home', contenty=contenty) if __name__ == '__main__': app.run(debug=False,host='0.0.0.0',port=8080)
1e312786bc748b92bf9119e00e57504af9aee1ef
174d3cd2f871d5fc9f851dea56d4ec5fba28cd61
/clinic.1.0/notetaker_1_0/migrations_old/0023_auto__del_note__add_note1.py
4134cfdc8b5c6362846a088b5de048130e10348e
[]
no_license
naresh-sundarrajan/clinicv2
391996bd8a0bc14ee2a2f60e2dfccad77f574b2d
29880d388922d7b1f762345bf522d6a465c1fda3
refs/heads/master
2021-01-22T04:48:39.453865
2014-09-02T17:39:43
2014-09-02T17:39:43
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,797
py
# -*- coding: utf-8 -*- from south.utils import datetime_utils as datetime from south.db import db from south.v2 import SchemaMigration from django.db import models class Migration(SchemaMigration): def forwards(self, orm): # Deleting model 'Note' # Adding model 'Note1' db.create_table(u'notetaker_1_0_note1', ( (u'id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), ('title', self.gf('django.db.models.fields.CharField')(max_length=120, null=True, blank=True)), ('text', self.gf('ckeditor.fields.RichTextField')()), ('date', self.gf('django.db.models.fields.DateTimeField')(auto_now_add=True, blank=True)), ('patient_id', self.gf('django.db.models.fields.related.ForeignKey')(related_name='PATIENT', null=True, to=orm['notetaker_1_0.UserProfile'])), ('Provider_id', self.gf('django.db.models.fields.related.ForeignKey')(related_name='PROVIDER', null=True, to=orm['notetaker_1_0.UserProfile'])), )) db.send_create_signal(u'notetaker_1_0', ['Note1']) def backwards(self, orm): # Adding model 'Note' # Deleting model 'Note1' db.delete_table(u'notetaker_1_0_note1') models = { u'auth.group': { 'Meta': {'object_name': 'Group'}, u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}), 'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': u"orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}) }, u'auth.permission': { 'Meta': {'ordering': "(u'content_type__app_label', u'content_type__model', u'codename')", 'unique_together': "((u'content_type', u'codename'),)", 'object_name': 'Permission'}, 'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}), 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['contenttypes.ContentType']"}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'name': ('django.db.models.fields.CharField', [], {'max_length': '50'}) }, u'auth.user': { 'Meta': {'object_name': 'User'}, 'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), 'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}), 'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), 'groups': ('django.db.models.fields.related.ManyToManyField', [], {'symmetrical': 'False', 'related_name': "u'user_set'", 'blank': 'True', 'to': u"orm['auth.Group']"}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}), 'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), 'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), 'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), 'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), 'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}), 'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'symmetrical': 'False', 'related_name': "u'user_set'", 'blank': 'True', 'to': u"orm['auth.Permission']"}), 'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}) }, u'contenttypes.contenttype': { 'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"}, 'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}), 'name': ('django.db.models.fields.CharField', [], {'max_length': '100'}) }, u'notetaker_1_0.note1': { 'Meta': {'object_name': 'Note1'}, 'Provider_id': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'PROVIDER'", 'null': 'True', 'to': u"orm['notetaker_1_0.UserProfile']"}), 'date': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'patient_id': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'PATIENT'", 'null': 'True', 'to': u"orm['notetaker_1_0.UserProfile']"}), 'text': ('ckeditor.fields.RichTextField', [], {}), 'title': ('django.db.models.fields.CharField', [], {'max_length': '120', 'null': 'True', 'blank': 'True'}) }, u'notetaker_1_0.patient': { 'Meta': {'object_name': 'Patient'}, 'adrs': ('django.db.models.fields.CharField', [], {'max_length': '100'}), 'city': ('django.db.models.fields.CharField', [], {'max_length': '100'}), u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'patient_name': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['notetaker_1_0.UserProfile']"}), 'state': ('django.db.models.fields.CharField', [], {'max_length': '50'}), 'zip': ('django.db.models.fields.CharField', [], {'max_length': '5'}) }, u'notetaker_1_0.provider': { 'Meta': {'object_name': 'Provider'}, u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'provider_code': ('django.db.models.fields.IntegerField', [], {}), 'provider_name': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['notetaker_1_0.UserProfile']"}), 'speciality': ('django.db.models.fields.CharField', [], {'max_length': '1'}) }, u'notetaker_1_0.userprofile': { 'Meta': {'object_name': 'UserProfile'}, u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'user': ('django.db.models.fields.related.OneToOneField', [], {'to': u"orm['auth.User']", 'unique': 'True'}), 'user_type': ('django.db.models.fields.CharField', [], {'max_length': '1'}) } } complete_apps = ['notetaker_1_0']
e80dbe3f146430b849d82e582afac85ba73f9e37
204d220c5c54eb2c4f746495779c406636dc1302
/kAFL-Fuzzer/kafl_gui.py
1a54a44c8532ca49d2f45376b0d30da036dbb14c
[]
no_license
dlehgus1023/kAFL
314cc720b9ed5c4f2c783ed022bb0faca2826a43
90759b273a57d1591b34c39a63b21d6afc319c2a
refs/heads/master
2023-01-01T21:07:13.408334
2020-10-29T10:05:51
2020-10-29T10:05:51
null
0
0
null
null
null
null
UTF-8
Python
false
false
24,090
py
#!/usr/bin/env python3 # # Copyright (C) 2017-2019 Sergej Schumilo, Cornelius Aschermann, Tim Blazytko # Copyright (C) 2019-2020 Intel Corporation # # SPDX-License-Identifier: AGPL-3.0-or-later """ Given a kAFL workdir, produce a text-based UI with status summary/overview. """ import curses import string import msgpack import os import sys import time import inotify.adapters import glob import psutil from common.util import read_binary_file from threading import Thread, Lock class Interface: def __init__(self, stdscr): self.stdscr = stdscr self.y = 0 def print_title_line(self, title): title = "[%s%s]" % (title, " " * (len(title) % 2)) pad = '░' * ((80 - len(title)) // 2) self.stdscr.addstr(self.y, 0, pad + title + pad) self.y += 1 def print_sep_line(self): self.stdscr.addstr(self.y, 0, '━' * 80) self.y += 1 def print_thin_line(self): self.stdscr.addstr(self.y, 0, '─' * 80) self.y += 1 def print_empty(self): self.stdscr.addstr(self.y, 0, '┃' + ' ' * 78 + '┃') self.y += 1 def print_info_line(self, pairs, sep=" │ ", end="┃", prefix=""): infos = [] for info in pairs: infolen = len(info[1]) + len(info[2]) if infolen == 0: infos.append(" ".ljust(info[0]+1)) else: infos.append("%s:%s%s" % ( info[1], " ".ljust(info[0]-infolen), info[2])) self.stdscr.addstr(self.y, 0, '┃' + prefix + sep.join(infos) + " " + end) self.y += 1 def refresh(self): self.y = 0 self.stdscr.refresh() def clear(self): self.stdscr.clear() def print_hexdump(self, data, max_rows=10): width = 16 for ri in range(0, max_rows): row = data[width * ri:width * (ri + 1)] if len(row) > 0: self.print_hexrow(row, offset=ri * width) else: self.print_empty() def print_hexrow(self, row, offset=0): def map_printable(char): s_char = chr(char) if s_char in string.printable and s_char not in "\t\n\r\x0b\x0c": return s_char return "." def map_hex(char): return hex(char)[2:].ljust(2, "0") prefix = "┃0x%07x: " % offset hex_dmp = prefix + (" ".join(map(map_hex, row))) hex_dmp = hex_dmp.ljust(61) print_dmp = ("".join(map(map_printable, row))) print_dmp = print_dmp.ljust(16) print_dmp = "│" + print_dmp + " ┃" self.stdscr.addstr(self.y, 0, hex_dmp) self.stdscr.addstr(self.y, len(hex_dmp), print_dmp) self.y += 1 def pnum(num): assert num >= 0 if num <= 9999: return "%d" % num num /= 1000.0 if num <= 999: return "%.1fK" % num num /= 1000.0 if num <= 999: return "%.1fM" % num num /= 1000.0 if num <= 999: return "%.1fG" % num num /= 1000.0 if num <= 999: return "%.1fT" % num num /= 1000.0 if num <= 999: return "%.1fP" % num assert False def pbyte(num): assert num >= 0 if num <= 999: return "%d" % num num /= 1024.0 if num <= 999: return "%.1fK" % num num /= 1024.0 if num <= 999: return "%.1fM" % num num /= 1024.0 if num <= 999: return "%.1fG" % num num /= 1024.0 if num <= 999: return "%.1fT" % num num /= 1024.0 if num <= 999: return "%.1fP" % num assert False def pfloat(flt): assert flt >= 0 if flt <= 999: return "%.1f" % flt return pnum(flt) def ptime(secs): if not secs: return "None Yet" if secs < 2: # clear the jitter return "Just Now!" secs = int(secs) seconds = secs % 60 secs //= 60 mins = secs % 60 secs //= 60 hours = secs % 24 days = secs // 24 if days > 0: return "%dd,%02dh" % (days, hours) if hours > 0: return "%2dh%02dm" % (hours, mins) return "%2dm%02ds" % (mins, seconds) class GuiDrawer: def __init__(self, workdir, stdscr): self.gui_mutex = Lock() self.workdir = workdir self.finished = False self.current_slave_id = 0 self.stdscr = stdscr # Fenster und Hintergrundfarben curses.start_color() curses.init_pair(1, curses.COLOR_WHITE, curses.COLOR_BLACK) curses.init_pair(2, curses.COLOR_GREEN, curses.COLOR_BLACK) curses.init_pair(3, curses.COLOR_YELLOW, curses.COLOR_BLACK) curses.init_pair(4, curses.COLOR_RED, curses.COLOR_BLACK) default_col = curses.color_pair(1) self.stdscr.bkgd(default_col) self.stdscr.nodelay(True) self.gui = Interface(stdscr) self.data = GuiData(workdir) self.watcher = Thread(target=self.watch, args=(workdir,)) self.watcher.daemon = True self.watcher.start() self.cpu_watcher = Thread(target=self.watch_cpu, args=()) self.cpu_watcher.daemon = True self.cpu_watcher.start() def draw(self): d = self.data self.gui.print_title_line("kAFL v0.2") self.gui.print_sep_line() #self.gui.print_info_line([(37, "Target", d.target()), (38, "Config", d.config())]) self.gui.print_info_line([ (16, "Runtime", ptime(d.runtime())), (16, "#Execs", pnum(d.total_execs())), (16, "Exec/s", pnum(d.execs_p_sec_avg())), (16, "Slaves", "%d/%d" % (d.num_slaves(), d.cpu_cores()))]) self.gui.print_info_line([ (12, "Used", pnum(d.cpu_used()) + "%"), (16, "User", pfloat(d.cpu_user()) + "%"), (16, "Guest", pfloat(d.cpu_vm()) + "%"), (16, "Stability", "%3d%%" % d.stability())], prefix="CPU ") self.gui.print_info_line([ (12, "Used", pfloat(d.ram_used()) + "%"), (16, "Avail", pbyte(d.ram_avail())), (16, "Total", pbyte(d.ram_total()) + "%"), (16, "Reset/s", pnum(d.reload_p_sec()))], prefix="Mem ") self.gui.print_thin_line() self.gui.print_info_line([ (16, "Path Info", ""), (16, "Bitmap Stats", ""), (36, "Findings", "")]) self.gui.print_info_line([ (16, " Total", pnum(d.paths_total())), (16, "", ""), (36, " Crash", "%6s (N/A) %10s" % (pnum((d.num_found("crash"))), ptime(d.time_since("crash"))))]) self.gui.print_info_line([ (16, " Seeds", pnum(d.yield_imported())), (16, " Edges", pnum(d.bitmap_used())), (36, " AddSan", "%6s (N/A) %10s" % (pnum((d.num_found("kasan"))), ptime(d.time_since("kasan"))))]) self.gui.print_info_line([ (16, " Favs", pnum(d.fav_total())), (16, " p(col)", pfloat(d.p_coll()) + "%"), (36, " Timeout", "%6s (N/A) %10s" % (pnum((d.num_found("timeout"))), ptime(d.time_since("timeout"))))]) self.gui.print_info_line([ (16, " Norm", pnum(d.normal_total())), (16, " Pending", pfloat(d.pending_fav()) + "%"), (36, " Regular", "%6s (N/A) %10s" % (pnum((d.num_found("regular"))), ptime(d.time_since("regular"))))]) self.gui.print_thin_line() self.gui.print_info_line([ (11, "Init", pnum(d.yield_init())), (11, "Grim", pnum(d.yield_grim())), (11, "Redq", pnum(d.yield_redq()+d.yield_color())), (11, "Det", pnum(d.yield_det())), (11, "Hvc", pnum(d.yield_havoc())) ], prefix="Yld: ") self.gui.print_info_line([ (11, "Init", pnum(d.fav_init())), (11, "Rq/Gr", pnum(d.fav_redq())), (11, "Det", pnum(d.fav_deter())), (11, "Hvc", pnum(d.fav_havoc())), (11, "Fin", pnum(d.fav_fin()))], prefix="Fav: ") self.gui.print_info_line([ (11, "Init", pnum(d.normal_init())), (11, "Rq/Gr", pnum(d.normal_redq())), (11, "Det", pnum(d.normal_deter())), (11, "Hvc", pnum(d.normal_havoc())), (11, "Fin", pnum(d.normal_fin()))], prefix="Nrm: ") #self.gui.print_sep_line() self.gui.print_thin_line() for i in range(0, d.num_slaves()): hl = " " if i == self.current_slave_id: hl = ">" nid = d.slave_input_id(i) if nid not in [None, 0] and d.nodes.get(nid, None): self.gui.print_info_line([(15, "", d.slave_stage(i)), (10, "node", "%5d" % d.slave_input_id(i)), (15, "fav/lvl", "%4d/%3d" % (d.node_fav_bits(nid), d.node_level(nid))), (13, "exec/s", pnum(d.slave_execs_p_sec(i)))], prefix="%c Slave %2d" % (hl, i)) else: self.gui.print_info_line([(15, "", d.slave_stage(i)), (10, "node", " N/A "), (15, "fav/lvl", " N/A "), (13, "exec/s", " N/A ")], prefix="%c Slave %2d" % (hl, i)) i = self.current_slave_id self.gui.print_thin_line() self.gui.print_title_line("Payload Info") self.gui.print_sep_line() nid = d.slave_input_id(i) if nid not in [None, 0] and d.nodes.get(nid, None): self.gui.print_info_line([ (12, "Parent", "%5d" % d.node_parent_id(nid)), (12, "Size", pbyte(d.node_size(nid)) + "B"), (12, "Bytes", pnum(d.node_new_bytes(nid))), (12, "Bits", pnum(d.node_new_bits(nid))), (12, "Exit", d.node_exit_reason(nid))]) self.gui.print_thin_line() self.gui.print_hexdump(d.node_payload(nid), max_rows=12) self.gui.print_thin_line() else: self.gui.print_info_line([ (12, "Parent", " N/A"), (12, "Size", " N/A"), (12, "Bytes", " N/A"), (12, "Bits", " N/A"), (12, "Exit", " ")]) self.gui.print_thin_line() self.gui.print_hexdump(b"importing...", max_rows=12) #self.gui.print_title_line("Log") self.gui.refresh() def loop(self): self.gui.refresh() while True: redraw = False char = self.stdscr.getch() if char == curses.KEY_UP: self.current_slave_id = (self.current_slave_id - 1) % self.data.num_slaves() redraw = True elif char == curses.KEY_DOWN: self.current_slave_id = (self.current_slave_id + 1) % self.data.num_slaves() redraw = True elif char == ord("q") or char == ord("Q"): self.finished = True return if not redraw and not self.data.redraw: time.sleep(0.05) continue self.gui_mutex.acquire() try: self.draw() except: self.gui.clear() min_rows = 42 min_cols = 82 rows, cols = self.stdscr.getmaxyx() if rows < min_rows or cols < min_cols: print("Terminal too small? (found: %dx%d)" % (rows, cols)); self.gui.refresh() else: raise finally: self.data.redraw = False self.gui_mutex.release() def watch(self, workdir): d = self.data mask = (inotify.constants.IN_MOVED_TO) self.inotify = inotify.adapters.Inotify() i = self.inotify i.add_watch(workdir, mask) i.add_watch(workdir + "/metadata/", mask) for event in i.event_gen(yield_nones=False): if self.finished: return self.gui_mutex.acquire() try: (_, type_names, path, filename) = event d.update(path, filename) d.redraw = True finally: self.gui_mutex.release() def watch_cpu(self): while True: if self.finished: return cpu_info = psutil.cpu_times_percent(interval=2, percpu=False) mem_info = psutil.virtual_memory() swap_info = psutil.swap_memory() self.gui_mutex.acquire() try: self.data.mem = mem_info self.data.cpu = cpu_info self.data.swap = swap_info self.data.redraw = True finally: self.gui_mutex.release() class GuiData: def __init__(self, workdir): self.workdir = workdir self.execs_avg = 0 self.slave_stats = list() self.load_initial() self.redraw = True def load_initial(self): print("Waiting for slaves to launch..") self.cpu = psutil.cpu_times_percent(interval=0.01, percpu=False) self.mem = psutil.virtual_memory() self.cores_phys = psutil.cpu_count(logical=False) self.cores_virt = psutil.cpu_count(logical=True) self.stats = self.read_file("stats") if not self.stats: raise FileNotFoundError("$workdir/stats") num_slaves = self.stats.get("num_slaves",0) for slave_id in range(0, num_slaves): self.slave_stats.append(self.read_file("slave_stats_%d" % slave_id)) # TODO frontend is using time.time() when we actually need time.clock(), plus perhaps the startup time/date self.starttime = min([x["start_time"] for x in self.slave_stats]) self.nodes = {} for metadata in glob.glob(self.workdir + "/metadata/node_*"): self.load_node(metadata) self.aggregate() def load_node(self, name): node_id = int(name.split("_")[-1]) self.nodes[node_id] = self.read_file("metadata/node_%05d" % node_id) def aggregate(self): self.aggregated = { "fav_states": {}, "normal_states": {}, "exit_reasons": {"regular": 0, "crash": 0, "kasan": 0, "timeout": 0}, "last_found": {"regular": 0, "crash": 0, "kasan": 0, "timeout": 0} } for nid in self.nodes: node = self.nodes[nid] self.aggregated["exit_reasons"][node["info"]["exit_reason"]] += 1 if node["info"]["exit_reason"] == "regular": states = self.aggregated["normal_states"] if len(node["fav_bits"]) > 0: states = self.aggregated["fav_states"] nodestate = node["state"]["name"] states[nodestate] = states.get(nodestate, 0) + 1 last_found = self.aggregated["last_found"][node["info"]["exit_reason"]] this_found = node["info"]["time"] if last_found < this_found: self.aggregated["last_found"][node["info"]["exit_reason"]] = this_found def target(self): return "foo" def config(self): return "bar" def runtime(self): return max([x["run_time"] for x in self.slave_stats]) def execs_p_sec_avg(self): return self.total_execs()/self.runtime() def slave_execs_p_sec(self, sid): return self.slave_stats[i].get(["execs/sec"],0) def total_execs(self): return self.stats.get("total_execs", 0) def num_slaves(self): return len(self.slave_stats) def num_found(self, reason): return self.aggregated["exit_reasons"][reason] def time_since(self, reason): time_stamp = self.aggregated["last_found"][reason] if not time_stamp: return None return self.starttime + self.runtime() - time_stamp def pending_fav(self): if self.fav_total() > 0: return 100 * (self.fav_total() - self.fav_fin()) / float(self.fav_total()) return 0 def stability(self): # chance p() to survive 100 executions: ((total-crashes)/total)^100 n = self.total_execs() if n == 0: return 0 else: c = self.total_reloads() return 100*((n-c)/n)**100 def total_reloads(self): return self.stats.get("num_reload", 0) def reload_p_sec(self): return self.total_reloads()/self.runtime() def cycles(self): return self.stats.get("cycles", 0) def cpu_total(self): return "%d(%d)" % (self.cores_phys, self.cores_virt) def cpu_cores(self): return self.cores_phys def cpu_used(self): return self.cpu.user + self.cpu.system def cpu_user(self): # ignore occasional negatives.. return max(0, self.cpu.user - self.cpu.guest) def cpu_vm(self): return self.cpu.guest def ram_total(self): return self.mem.total def ram_avail(self): return self.mem.available def ram_used(self): return 100 * float(self.mem.used) / float(self.mem.total) def swap_used(self): return self.swap.used def yield_imported(self): return self.stats["yield"].get("import", 0) def yield_init(self): return (self.stats["yield"].get("trim", 0) + self.stats["yield"].get("trim_funky", 0) + self.stats["yield"].get("center_trim", 0) + self.stats["yield"].get("center_trim_funky", 0) + self.stats["yield"].get("calibrate", 0)) def yield_grim(self): return (self.stats["yield"].get("grim_inference", 0) + self.stats["yield"].get("grim_generalize", 0) + self.stats["yield"].get("grim_recursive", 0) + self.stats["yield"].get("grim_extension", 0) + self.stats["yield"].get("grim_repl_str", 0)) def yield_redq(self): return (self.stats["yield"].get("redq_mutate", 0) + self.stats["yield"].get("redq_dict", 0)) def yield_color(self): return self.stats["yield"].get("redq_coloring", 0) def yield_havoc(self): return (self.stats["yield"].get("afl_havoc", 0) + self.stats["yield"].get("afl_splice", 0) + self.stats["yield"].get("radamsa", 0)) def yield_det(self): return (self.stats["yield"].get("afl_arith_1", 0) + self.stats["yield"].get("afl_arith_2", 0) + self.stats["yield"].get("afl_arith_4", 0) + self.stats["yield"].get("afl_flip_1/1", 0) + self.stats["yield"].get("afl_flip_2/1", 0) + self.stats["yield"].get("afl_flip_4/1", 0) + self.stats["yield"].get("afl_flip_8/1", 0) + self.stats["yield"].get("afl_flip_8/2", 0) + self.stats["yield"].get("afl_flip_8/4", 0) + self.stats["yield"].get("afl_int_1", 0) + self.stats["yield"].get("afl_int_2", 0) + self.stats["yield"].get("afl_int_4", 0)) def normal_total(self): return (self.normal_init() + self.normal_redq() + self.normal_deter() + self.normal_havoc() + self.normal_fin()) def normal_init(self): return self.aggregated["normal_states"].get("initial", 0) def normal_redq(self): return self.aggregated["normal_states"].get("redq/grim", 0) def normal_deter(self): return self.aggregated["normal_states"].get("deterministic", 0) def normal_havoc(self): return self.aggregated["normal_states"].get("havoc", 0) return 0 def normal_fin(self): return self.aggregated["normal_states"].get("final", 0) def fav_total(self): return (self.fav_init() + self.fav_redq() + self.fav_deter() + self.fav_havoc() + self.fav_fin()) def fav_init(self): return self.aggregated["fav_states"].get("initial", 0) def fav_redq(self): return self.aggregated["fav_states"].get("redq/grim", 0) def fav_deter(self): return self.aggregated["fav_states"].get("deterministic", 0) def fav_havoc(self): return self.aggregated["fav_states"].get("havoc", 0) def fav_fin(self): return self.aggregated["fav_states"].get("final", 0) def bitmap_size(self): return 64 * 1024 def bitmap_used(self): return self.stats["bytes_in_bitmap"] def paths_total(self): return self.stats["paths_total"] def p_coll(self): return 100.0 * float(self.bitmap_used()) / float(self.bitmap_size()) def slave_stage(self, i): method = self.slave_stats[i].get("method", None) stage = self.slave_stats[i].get("stage", "[waiting..]") if method: #return "%s/%s" % (stage[0:6],method[0:12]) return "%s" % method[0:14] else: return stage[0:14] def slave_execs_p_sec(self, i): return self.slave_stats[i].get("execs/sec") def slave_total_execs(self, i): return self.slave_stats[i].get("total_execs") def slave_input_id(self, i): return self.slave_stats[i]["node_id"] def node_size(self, nid): return self.nodes[nid]["payload_len"] def node_level(self, nid): return self.nodes[nid].get("level", 0) def node_parent_id(self, nid): return self.nodes[nid]["info"]["parent"] def node_fav_bits(self, nid): if not self.nodes.get(nid, None): return -1 favs = self.nodes[nid].get("fav_bits", None) if favs: return len(favs) else: return 0 def node_new_bytes(self, nid): return len(self.nodes[nid]["new_bytes"]) def node_new_bits(self, nid): return len(self.nodes[nid]["new_bits"]) def node_exit_reason(self, nid): return self.nodes[nid]["info"]["exit_reason"][0] def node_payload(self, nid): exit_reason = self.nodes[nid]["info"]["exit_reason"] filename = self.workdir + "/corpus/%s/payload_%05d" % (exit_reason, nid) return read_binary_file(filename)[0:1024] # TODO remove path traversal vuln def load_slave(self, id): self.slave_stats[id] = self.read_file("slave_stats_%d" % id) def load_global(self): self.stats = self.read_file("stats") def update(self, pathname, filename): if "node_" in filename: self.load_node(pathname + "/" + filename) self.aggregate() elif "slave_stats" in filename: for i in range(0, self.num_slaves()): self.load_slave(i) elif filename == "stats": self.load_global() def read_file(self, name): retry = 4 data = None while retry > 0: try: data = read_binary_file(self.workdir + "/" + name) break except: retry -= 1 if data: return msgpack.unpackb(data, raw=False, strict_map_key=False) else: return None def main(stdscr): gui = GuiDrawer(sys.argv[1], stdscr) gui.loop() import locale locale.setlocale(locale.LC_ALL, '') code = locale.getpreferredencoding() if len(sys.argv) < 2 or not os.path.exists(sys.argv[1]): print("Usage: " + sys.argv[0] + " <kafl-workdir>") sys.exit(1) try: curses.wrapper(main) except FileNotFoundError as e: # Skip exception - typically just a fuzzer restart or wrong argv[1] print("Error reading from workdir. Exit.")
9eeb8154ad72096462bd0ea3277bc31c5aac1128
4ba2947d58c0fcd997be73441224f81263b9d3f7
/2_002_Stack_and_Queues/010_implement_queue_using_stacks.py
4fc1977e0b7d15e00a007cfd69f82dfc151997e3
[]
no_license
codeamt/udacity-dsa-nand
e2c9934cc780d6ad3c2e7d978a5b7046dae12788
0801b74f9be48d2a45eecfe32fca7ae7f109ee39
refs/heads/master
2022-04-23T21:38:49.140675
2020-04-27T18:10:13
2020-04-27T18:10:13
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,160
py
class Stack: def __init__(self): self.items = [] def size(self): return len(self.items) def push(self, item): self.items.append(item) def pop(self): if self.size()==0: return None else: return self.items.pop() class Queue: def __init__(self): self.instorage=Stack() self.outstorage=Stack() def size(self): return self.outstorage.size() + self.instorage.size() def enqueue(self,item): self.instorage.push(item) def dequeue(self): if not self.outstorage.items: while self.instorage.items: self.outstorage.push(self.instorage.pop()) return self.outstorage.pop() # Setup q = Queue() q.enqueue(1) q.enqueue(2) q.enqueue(3) # Test size print ("Pass" if (q.size() == 3) else "Fail") # Test dequeue print ("Pass" if (q.dequeue() == 1) else "Fail") # Test enqueue q.enqueue(4) print ("Pass" if (q.dequeue() == 2) else "Fail") print ("Pass" if (q.dequeue() == 3) else "Fail") print ("Pass" if (q.dequeue() == 4) else "Fail") q.enqueue(5) print ("Pass" if (q.size() == 1) else "Fail")
eac8e55efa2b9ab7f320a562c98fa8c884b5e994
60ce73bf2f86940438e5b7fecaaccad086888dc5
/working_scrapers/Virginia_amherst.py
dd21db5c4557762ea61e5ec1f6730d25b2bd6a00
[]
no_license
matthewgomies/jailcrawl
22baf5f0e6dc66fec1b1b362c26c8cd2469dcb0d
9a9ca7e1328ae549860ebeea9b149a785f152f39
refs/heads/master
2023-02-16T06:39:42.107493
2021-01-15T16:37:57
2021-01-15T16:37:57
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,248
py
#!/usr/bin/python ''' This is an template script ''' from urllib.request import urlopen, Request import pandas as pd import os import time import numpy as np from datetime import datetime import datetime as dt import sys from io import StringIO from joblib import Parallel, delayed import requests from jailscrape.common import save_to_s3, get_browser, get_logger, record_error, save_pages_array from jailscrape import crawlers # jailscrape.common is a file that is part of the project which keeps # most common boilerplate code out of this file from selenium.webdriver.common.keys import Keys import watchtower from bs4 import BeautifulSoup import re import math # NOTE: These are imports. They ideally don't change very often. It's OK # to have a large, maximal set here and to bulk-edit files to add to # these. ROW_INDEX = 1015 # Change this for each scraper. This references the row # of the main jailcrawl spreadsheet. This index will be used to look up # the URL as well as state/county info THIS_STATE = 'virginia' # Change the current state/county information. THIS_COUNTY = 'amherst' def main(roster_row): try: logger = get_logger(roster_row) # Get a standard logger # Here are standard variable values/how to initialize them. # These aren't initialized here since in the save_single_page # case, they can be done in the called function #browser = get_browser() # Get a standard browser #urlAddress = roster_row['Working Link'] # Set the main URL from the spreadsheet #page_index = 0 # Set an initial value of "page_index", which we will use to separate output pages #logger.info('Set working link to _%s_', urlAddress) # Log the chosen URL ########## # Begin core specific scraping code if roster_row['State'].lower() != THIS_STATE or roster_row['County'].lower() != THIS_COUNTY: raise Exception("Expected county definition info from _%s, %s_, but found info: _%s_" % (THIS_COUNTY, THIS_STATE, roster_row)) #crawlers.save_single_page(roster_row) # try to call a known crawler if possible crawlers.basic_multipage(roster_row, next_type='text', next_string='>') # try to call a known crawler if possible ## Code to save a page and log appropriately #save_to_s3(store_source, page_index, roster_row) #logger.info('Saved page _%s_', page_index) # End core specific scraping code ########## #Close the browser logger.info('complete!') except Exception as errorMessage: try: browser.close() record_error(message=str(errorMessage), roster_row=roster_row, browser=browser) except: record_error(message=str(errorMessage), roster_row=roster_row) # Record error in S3 for a general error logger.error('Error: %s', errorMessage) # Log error sys.exit(1) if __name__ == "__main__": #This will load in the current jail roster list #Select the index of the roster this script is for: #Write the name of the county and state roster = pd.read_csv('/opt/jail_roster_final_rmDuplicates.csv',encoding = "utf-8") main(roster[roster['index'] == ROW_INDEX].iloc[0])
21c5e515ecfc7265b137489a1d4bdaae325c9509
e6454f0182bd9ca71bb67f29aeaaf56fbb2323b6
/file3.py
f37c806b089cc612aa5cbf3d81d2039672411d5f
[]
no_license
sdbzcm/blockChain
c63fc203e7ea2748aa5b6a93321bef6070f32709
08bbc1f3e3382c09a659fb7a05677b8514373c2e
refs/heads/master
2020-03-30T05:47:56.570237
2019-03-22T06:42:10
2019-03-22T06:42:10
150,820,164
0
1
null
2019-03-22T06:42:11
2018-09-29T03:22:16
Java
UTF-8
Python
false
false
29
py
def m1(): print("hello");
2b1eb5d84af5a55379d7ebea11b1bc7f0318c0e2
d43a44c3cd030040e784efc490b2c7b3ee1a2533
/provider/views.py
1a1e466804d4a9f436ea0b43a0ca8176e57f841a
[]
no_license
mersysider/mozio
b26401c94949d13eb8bd01538aa8464cf09570ea
88fa22bf6f283fe5f4259e9715d0298329b40a68
refs/heads/master
2021-01-01T04:27:08.164564
2016-05-04T04:49:12
2016-05-04T04:49:12
58,014,003
0
0
null
null
null
null
UTF-8
Python
false
false
91
py
from django.shortcuts import render # Create your views here. from .models import Provider
26571dafb7f2105ef31a78259155c44e4a01ad01
22dcd52b6a07e82e8db9bf8b7ad38711d12f69a8
/venv/Lib/site-packages/sklearn/neighbors/base.py
9be7b1ffc90f2c7d40252bf586916429df32fafb
[]
no_license
MrGreenPepper/music_cluster
9060d44db68ae5e085a4f2c78d36868645432d43
af5383a7b9c68d04c16c1086cac6d2d54c3e580c
refs/heads/main
2023-08-15T09:14:50.630105
2021-10-01T09:45:47
2021-10-01T09:45:47
412,407,002
0
0
null
null
null
null
UTF-8
Python
false
false
489
py
# THIS FILE WAS AUTOMATICALLY GENERATED BY deprecated_modules.py import sys from . import _base from ..externals._pep562 import Pep562 from ..utils.deprecation import _raise_dep_warning_if_not_pytest deprecated_path = 'sklearn.neighbors.base' correct_import_path = 'sklearn.neighbors' _raise_dep_warning_if_not_pytest(deprecated_path, correct_import_path) def __getattr__(name): return getattr(_base, name) if not sys.version_info >= (3, 7): Pep562(__name__)
9df844d7cc10a18d1cc1fdda1ef09ce7251b3861
523f245f39acae912a19adb476b1b1866e9d1c7f
/scoring/scripts/image_generator.py
736c0448827a0fb1b201533819f8c4821eacd1f3
[]
no_license
Sapphirine/YelpRecommendation
dcfa3de67589fec1ff5021e74f95f3d6b2537c98
45338f5e0a34e993e38116b487736f8bbb18be23
refs/heads/master
2021-08-31T11:39:34.963847
2017-12-21T07:17:13
2017-12-21T07:17:13
114,938,125
0
0
null
null
null
null
UTF-8
Python
false
false
10,417
py
#!/usr/bin/env/ python # ECBM E4040 Fall 2017 Assignment 2 # This Python script contains the ImageGenrator class. import numpy as np from matplotlib import pyplot as plt from scipy.ndimage.interpolation import rotate as rt class ImageGenerator(object): def __init__(self, x, y): """ Initialize an ImageGenerator instance. :param x: A Numpy array of input data. It has shape (num_of_samples, height, width, channels). :param y: A Numpy vector of labels. It has shape (num_of_samples, ). """ # TODO: Your ImageGenerator instance has to store the following information: # x, y, num_of_samples, height, width, number of pixels translated, degree of rotation, is_horizontal_flip, # is_vertical_flip, is_add_noise. By default, set boolean values to # False. self.x = x self.y = y self.num_of_samples = x.shape[0] self.height = x.shape[1] self.width = x.shape[2] self.pixeltranslate = 0 self.rotation = 0 self.is_horizontal_flip = False self.is_vertical_flip = False self.is_add_noise = False ####################################################################### # # # # # TODO: YOUR CODE HERE # # # # # ####################################################################### def next_batch_gen(self, batch_size, shuffle=True): """ A python generator function that yields a batch of data indefinitely. :param batch_size: The number of samples to return for each batch. :param shuffle: If True, shuffle the entire dataset after every sample has been returned once. If False, the order or data samples stays the same. :return: A batch of data with size (batch_size, width, height, channels). """ # TODO: Use 'yield' keyword, implement this generator. Pay attention to the following: # 1. The generator should return batches endlessly. # 2. Make sure the shuffle only happens after each sample has been visited once. Otherwise some samples might # not be output. # One possible pseudo code for your reference: ####################################################################### # calculate the total number of batches possible (if the rest is not sufficient to make up a batch, ignore) # while True: # if (batch_count < total number of batches possible): # batch_count = batch_count + 1 # yield(next batch of x and y indicated by batch_count) # else: # shuffle(x) # reset batch_count num = 0 maxnum = int(self.num_of_samples / batch_size) while (True): if num < maxnum: num += 1 yield self.x[num * batch_size : (num + 1) * batch_size : 1], self.y[num * batch_size : (num + 1) * batch_size : 1] else: mask = np.arange(self.num_of_samples) np.random.shuffle(mask) if (shuffle == True): self.x = self.x[mask] self.y = self.y[mask] num = 0 ####################################################################### # # # # # TODO: YOUR CODE HERE # # # # # ####################################################################### def show(self): """ Plot the top 16 images (index 0~15) of self.x for visualization. """ X = self.x[:16] fig, axes1 = plt.subplots(4,4,figsize=(8,8)) for j in range(4): for k in range(4): axes1[j][k].set_axis_off() axes1[j][k].imshow(X[j * 4 + k : j*4+k+1][0]) ####################################################################### # # # # # TODO: YOUR CODE HERE # # # # # ####################################################################### def translate(self, shift_height, shift_width): """ Translate self.x by the values given in shift. :param shift_height: the number of pixels to shift along height direction. Can be negative. :param shift_width: the number of pixels to shift along width direction. Can be negative. :return: """ # TODO: Implement the translate function. Remember to record the value of the number of pixels translated. # Note: You may wonder what values to append to the edge after the translation. Here, use rolling instead. For # example, if you translate 3 pixels to the left, append the left-most 3 columns that are out of boundary to the # right edge of the picture. # Hint: Numpy.roll # (https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.roll.html) self.x = np.roll(self.x, shift_height, axis = 1) self.x = np.roll(self.x, shift_width, axis = 2) self.pixeltranslate = (self.pixeltranslate + shift_height + shift_width) % 32 ####################################################################### # # # # # TODO: YOUR CODE HERE # # # # # ####################################################################### def rotate(self, angle=0.0): """ Rotate self.x by the angles (in degree) given. :param angle: Rotation angle in degrees. - https://docs.scipy.org/doc/scipy-0.16.1/reference/generated/scipy.ndimage.interpolation.rotate.html """ # TODO: Implement the rotate function. Remember to record the value of # rotation degree. self.x = rt(self.x, angle) self.rotation = (self.rotation + angle) % 360 ####################################################################### # # # # # TODO: YOUR CODE HERE # # # # # ####################################################################### def flip(self, mode='h'): """ Flip self.x according to the mode specified :param mode: 'h' or 'v' or 'hv'. 'h' means horizontal and 'v' means vertical. """ # TODO: Implement the flip function. Remember to record the boolean values is_horizontal_flip and # is_vertical_flip. if mode == "hv" : self.x = np.flip(self.x, 1) self.x = np.flip(self.x, 2) self.is_horizontal_flip = True self.is_vertical_flip = True elif mode == 'h': self.x = np.flip(self.x, 2) self.is_horizontal_flip = True elif mode =='v' : self.x = np.flip(self.x, 1) self.is_vertical_flip = True ####################################################################### # # # # # TODO: YOUR CODE HERE # # # # # ####################################################################### def add_noise(self, portion, amplitude): """ Add random integer noise to self.x. :param portion: The portion of self.x samples to inject noise. If x contains 10000 sample and portion = 0.1, then 1000 samples will be noise-injected. :param amplitude: An integer scaling factor of the noise. """ # TODO: Implement the add_noise function. Remember to record the # boolean value is_add_noise. You can try uniform noise or Gaussian # noise or others ones that you think appropriate. port = int(portion * self.num_of_samples) mask = np.random.choice(self.num_of_samples, port, replace=False) self.is_add_noise = True self.x[mask] = self.x[mask] + np.random.normal(loc=0.0, scale=amplitude, size=(port, 32, 32, 3)) ####################################################################### # # # # # TODO: YOUR CODE HERE # # # # # #######################################################################
243a8367cdc66dcf34404bf21fce6717109193c5
8fb600fc1037f059d3e4853aff80098e11a87818
/ethernet_servo/api/__init__.py
72667a3f85de7113ba76b866d5b422f3b0d41324
[]
no_license
telescopio-montemayor/ethernet-encoder-servo
f47fe5f8e89651a9b45f32c5ce5a3600b4dde0e8
1059920060c0e8eba995e84c8a57bf3da3bdbfb5
refs/heads/master
2020-04-08T12:04:12.600999
2019-05-03T02:08:35
2019-05-03T02:08:35
159,332,217
0
0
null
null
null
null
UTF-8
Python
false
false
1,281
py
import logging from flask import current_app as app from flask import Blueprint from flask_restplus import Api, Resource from flask_cors import CORS from ethernet_servo import control log = logging.getLogger(__name__) blueprint = Blueprint('api', __name__, url_prefix='/api') api = Api(blueprint, version='1.0', title='Ethernet Encoder Servo', description='') def register(application): """Register this API endpoints within an application""" application.register_blueprint(blueprint) cors = CORS(application, resources={ r"/api/*": { "origins": "*", "supports_credentials": True, }, r"/socket.io/*": { "origins": "*", "supports_credentials": True, } }) @api.errorhandler def default_error_handler(e): message = 'An unhandled exception occurred.' log.exception(message) if not app.debug: return {'message': message}, 500 class BaseResource(Resource): def get_device(self, name): device = control.devices.get(name) if device is not None: return device else: api.abort(404, "Device '{}' does not exist".format(name)) from . import devices, goto, sync __all__ = ['models', 'devices', 'goto', 'sync']